diff --git a/docs/gotcha.txt b/docs/gotcha.txt index 0a58708b7..8cffc0eee 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -7,7 +7,6 @@ upgrading from one version to the next, or even between multiple versions. Be sure to heed the warnings contained herein as they will save you many hours of grief. -<<<<<<< HEAD 8.0.0 -------------------------------------------------------------------- * WebGUI 8 is not API compatible with WebGUI 7. If you have custom @@ -17,11 +16,10 @@ save you many hours of grief. * WebGUI now requires the following modules - Moose - CHI -======= + 7.9.8 -------------------------------------------------------------------- * Starting in WebGUI 7.9.4, the Net::Twitter module is required. ->>>>>>> master 7.9.7 -------------------------------------------------------------------- diff --git a/docs/migration.txt b/docs/migration.txt index dfbf12e8f..671f3f48c 100644 --- a/docs/migration.txt +++ b/docs/migration.txt @@ -6,7 +6,7 @@ The information contained herein documents the API changes that have occurred in WebGUI::Config -============= +============== WebGUI::Config->new has a new API. Its WebGUI root parameter has been eliminated. It now only accepts a config file as either an absolute path, or a path relative to WebGUI's etc directory. my $config = WebGUI::Config->new($filename); @@ -14,10 +14,19 @@ my $config = WebGUI::Config->new($filename); WebGUI::Session -============= +=============== WebGUI::Session->open has a new API. Its WebGUI root parameter has been eliminated. The config file it is given can be either an absolute path, or a path relative to WebGUI's etc directory. -my $session = WebGUI::Session->open($configFile, $request, $server); +my $session = WebGUI::Session->open($configFile); + +perldoc WebGUI::Session for more details about the arguments. + + +WebGUI::Session::Env +==================== +WebGUI::Session::Env has been moved into WebGUI::Session::Request. A listing of replacements and equivalents follows: + +$session->env->getIp => $session->request->address @@ -174,3 +183,19 @@ Asset API ---------- ->get will still work, but will be slightly slower since inside it calls the direct Moose accessor. Similarly, getId is slightly slower than ->assetId. + +WebGUI::Shop::Vendor +==================== +Object properties are no longer written to the database when an object is created from scratch. The write method needs +to be called. + +WebGUI::Shop::AddressBook +========================= +Since create is now really new, there is no way to create an address book for an arbitrary userId. To work around this, +update the address book with the new userId after it has been created. + +WebGUI::Shop::Address +===================== +Object properties are no longer written to the database when an object is created from scratch. The write method needs +to be called. + diff --git a/docs/previousVersion.sql b/docs/previousVersion.sql deleted file mode 100644 index 4a30afabb..000000000 --- a/docs/previousVersion.sql +++ /dev/null @@ -1,2472 +0,0 @@ -SET @OLD_CHARACTER_SET_CLIENT = @@CHARACTER_SET_CLIENT; -SET @OLD_CHARACTER_SET_RESULTS = @@CHARACTER_SET_RESULTS; -SET @OLD_CHARACTER_SET_CONNECTION = @@CHARACTER_SET_CONNECTION; -SET @OLD_COLLATION_CONNECTION = @@COLLATION_CONNECTION; -SET @OLD_TIME_ZONE = @@TIME_ZONE; -SET @OLD_UNIQUE_CHECKS = @@UNIQUE_CHECKS; -SET @OLD_FOREIGN_KEY_CHECKS = @@FOREIGN_KEY_CHECKS; -SET @OLD_SQL_MODE = @@SQL_MODE; -SET @OLD_SQL_NOTES = @@SQL_NOTES; - -SET CHARACTER_SET_CLIENT = 'utf8'; -SET CHARACTER_SET_RESULTS = 'utf8'; -SET CHARACTER_SET_CONNECTION = 'utf8'; -SET TIME_ZONE = '+00:00'; -SET UNIQUE_CHECKS = 0; -SET FOREIGN_KEY_CHECKS = 0; -SET SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO'; -SET SQL_NOTES = 0; -CREATE TABLE `AdSku` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `purchaseTemplate` char(22) binary NOT NULL, - `manageTemplate` char(22) binary NOT NULL, - `adSpace` char(22) binary NOT NULL, - `priority` int(11) DEFAULT '1', - `pricePerClick` float DEFAULT '0', - `pricePerImpression` float DEFAULT '0', - `clickDiscounts` char(22) DEFAULT NULL, - `impressionDiscounts` char(22) DEFAULT NULL, - `karma` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Article` ( - `linkTitle` char(255) DEFAULT NULL, - `linkURL` text, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - `storageId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Calendar` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `defaultDate` enum('current','first','last') DEFAULT 'current', - `defaultView` enum('month','week','day','list') DEFAULT 'month', - `visitorCacheTimeout` int(11) unsigned DEFAULT NULL, - `templateIdMonth` char(22) binary DEFAULT 'CalendarMonth000000001', - `templateIdWeek` char(22) binary DEFAULT 'CalendarWeek0000000001', - `templateIdDay` char(22) binary DEFAULT 'CalendarDay00000000001', - `templateIdEvent` char(22) binary DEFAULT 'CalendarEvent000000001', - `templateIdEventEdit` char(22) binary DEFAULT 'CalendarEventEdit00001', - `templateIdSearch` char(22) binary DEFAULT 'CalendarSearch00000001', - `templateIdPrintMonth` char(22) binary DEFAULT 'CalendarPrintMonth0001', - `templateIdPrintWeek` char(22) binary DEFAULT 'CalendarPrintWeek00001', - `templateIdPrintDay` char(22) binary DEFAULT 'CalendarPrintDay000001', - `templateIdPrintEvent` char(22) binary DEFAULT 'CalendarPrintEvent0001', - `groupIdEventEdit` char(22) binary DEFAULT '3', - `groupIdSubscribed` char(22) binary DEFAULT NULL, - `subscriberNotifyOffset` int(11) DEFAULT NULL, - `sortEventsBy` enum('time','sequencenumber') DEFAULT 'time', - `listViewPageInterval` bigint(20) DEFAULT NULL, - `templateIdList` char(22) binary DEFAULT NULL, - `templateIdPrintList` char(22) binary DEFAULT NULL, - `icalInterval` bigint(20) DEFAULT NULL, - `workflowIdCommit` char(22) binary DEFAULT NULL, - `icalFeeds` longtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Carousel` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `items` mediumtext, - `templateId` char(22) binary DEFAULT NULL, - `slideWidth` int(11) DEFAULT NULL, - `slideHeight` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Collaboration` ( - `assetId` char(22) binary NOT NULL, - `postGroupId` char(22) binary NOT NULL DEFAULT '2', - `canStartThreadGroupId` char(22) binary NOT NULL DEFAULT '2', - `karmaPerPost` int(11) NOT NULL DEFAULT '0', - `collaborationTemplateId` char(22) binary NOT NULL, - `threadTemplateId` char(22) binary NOT NULL, - `postFormTemplateId` char(22) binary NOT NULL, - `searchTemplateId` char(22) binary NOT NULL, - `notificationTemplateId` char(22) binary NOT NULL, - `sortBy` char(35) NOT NULL DEFAULT 'assetData.revisionDate', - `sortOrder` char(4) NOT NULL DEFAULT 'desc', - `usePreview` int(11) NOT NULL DEFAULT '1', - `addEditStampToPosts` int(11) NOT NULL DEFAULT '0', - `editTimeout` int(11) NOT NULL DEFAULT '3600', - `attachmentsPerPost` int(11) NOT NULL DEFAULT '0', - `filterCode` char(30) NOT NULL DEFAULT 'javascript', - `useContentFilter` int(11) NOT NULL DEFAULT '1', - `threads` int(11) NOT NULL DEFAULT '0', - `views` int(11) NOT NULL DEFAULT '0', - `replies` int(11) NOT NULL DEFAULT '0', - `rating` int(11) NOT NULL DEFAULT '0', - `lastPostId` char(22) binary DEFAULT NULL, - `lastPostDate` bigint(20) DEFAULT NULL, - `archiveAfter` int(11) NOT NULL DEFAULT '31536000', - `postsPerPage` int(11) NOT NULL DEFAULT '10', - `threadsPerPage` int(11) NOT NULL DEFAULT '30', - `subscriptionGroupId` char(22) binary DEFAULT NULL, - `allowReplies` int(11) NOT NULL DEFAULT '0', - `displayLastReply` int(11) NOT NULL DEFAULT '0', - `richEditor` char(22) binary NOT NULL DEFAULT 'PBrichedit000000000002', - `karmaRatingMultiplier` int(11) NOT NULL DEFAULT '0', - `karmaSpentToRate` int(11) NOT NULL DEFAULT '0', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `avatarsEnabled` int(11) NOT NULL DEFAULT '0', - `approvalWorkflow` char(22) binary NOT NULL DEFAULT 'pbworkflow000000000003', - `threadApprovalWorkflow` char(22) binary NOT NULL DEFAULT 'pbworkflow000000000003', - `defaultKarmaScale` int(11) NOT NULL DEFAULT '1', - `mailServer` char(255) DEFAULT NULL, - `mailAccount` char(255) DEFAULT NULL, - `mailPassword` char(255) DEFAULT NULL, - `mailAddress` char(255) DEFAULT NULL, - `mailPrefix` char(255) DEFAULT NULL, - `getMail` int(11) NOT NULL DEFAULT '0', - `getMailInterval` int(11) NOT NULL DEFAULT '300', - `getMailCronId` char(22) binary DEFAULT NULL, - `visitorCacheTimeout` int(11) NOT NULL DEFAULT '3600', - `autoSubscribeToThread` int(11) NOT NULL DEFAULT '1', - `requireSubscriptionForEmailPosting` int(11) NOT NULL DEFAULT '1', - `thumbnailSize` int(11) NOT NULL DEFAULT '0', - `maxImageSize` int(11) NOT NULL DEFAULT '0', - `enablePostMetaData` int(11) NOT NULL DEFAULT '0', - `useCaptcha` int(11) NOT NULL DEFAULT '0', - `groupToEditPost` char(22) binary NOT NULL, - `archiveEnabled` int(1) DEFAULT '1', - `postReceivedTemplateId` char(22) binary DEFAULT 'default_post_received1', - `replyRichEditor` char(22) binary DEFAULT 'PBrichedit000000000002', - `replyFilterCode` char(30) binary DEFAULT 'javascript', - `unsubscribeTemplateId` char(22) NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Dashboard` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `adminsGroupId` char(22) binary NOT NULL DEFAULT '4', - `usersGroupId` char(22) binary NOT NULL DEFAULT '2', - `templateId` char(22) binary NOT NULL DEFAULT 'DashboardViewTmpl00001', - `isInitialized` tinyint(3) unsigned NOT NULL DEFAULT '0', - `assetsToHide` text, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `DataForm` ( - `acknowledgement` text, - `mailData` int(11) NOT NULL DEFAULT '1', - `emailTemplateId` char(22) binary NOT NULL, - `acknowlegementTemplateId` char(22) binary NOT NULL, - `listTemplateId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `defaultView` int(11) NOT NULL DEFAULT '0', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `groupToViewEntries` char(22) binary NOT NULL DEFAULT '7', - `mailAttachments` int(11) DEFAULT '0', - `useCaptcha` int(1) DEFAULT '0', - `storeData` int(1) DEFAULT '1', - `fieldConfiguration` longtext, - `tabConfiguration` longtext, - `workflowIdAddEntry` char(22) binary DEFAULT NULL, - `htmlAreaRichEditor` char(22) binary DEFAULT '**Use_Default_Editor**', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `DataForm_entry` ( - `DataForm_entryId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `username` char(255) DEFAULT NULL, - `ipAddress` char(255) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - `entryData` longtext, - `submissionDate` datetime DEFAULT NULL, - PRIMARY KEY (`DataForm_entryId`), - KEY `assetId` (`assetId`), - KEY `assetId_submissionDate` (`assetId`,`submissionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `DataTable` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `data` longtext, - `templateId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSBadge` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `price` float NOT NULL DEFAULT '0', - `seatsAvailable` int(11) NOT NULL DEFAULT '100', - `relatedBadgeGroups` mediumtext, - `templateId` char(22) binary NOT NULL, - `earlyBirdPrice` float NOT NULL DEFAULT '0', - `earlyBirdPriceEndDate` bigint(20) DEFAULT NULL, - `preRegistrationPrice` float NOT NULL DEFAULT '0', - `preRegistrationPriceEndDate` bigint(20) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSBadgeGroup` ( - `badgeGroupId` char(22) binary NOT NULL, - `emsAssetId` char(22) binary NOT NULL, - `name` char(100) DEFAULT NULL, - PRIMARY KEY (`badgeGroupId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSEventMetaField` ( - `fieldId` char(22) binary NOT NULL, - `assetId` char(22) binary DEFAULT NULL, - `label` char(100) DEFAULT NULL, - `dataType` char(20) DEFAULT NULL, - `visible` tinyint(4) DEFAULT '0', - `required` tinyint(4) DEFAULT '0', - `possibleValues` text, - `defaultValues` text, - `sequenceNumber` int(5) DEFAULT NULL, - `helpText` mediumtext, - PRIMARY KEY (`fieldId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSRegistrant` ( - `badgeId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL, - `badgeNumber` int(11) NOT NULL AUTO_INCREMENT, - `badgeAssetId` char(22) binary NOT NULL, - `emsAssetId` char(22) binary NOT NULL, - `name` char(35) NOT NULL, - `address1` char(35) DEFAULT NULL, - `address2` char(35) DEFAULT NULL, - `address3` char(35) DEFAULT NULL, - `city` char(35) DEFAULT NULL, - `state` char(35) DEFAULT NULL, - `zipcode` char(35) DEFAULT NULL, - `country` char(35) DEFAULT NULL, - `phoneNumber` char(35) DEFAULT NULL, - `organization` char(35) DEFAULT NULL, - `email` char(255) DEFAULT NULL, - `notes` mediumtext, - `purchaseComplete` tinyint(1) DEFAULT NULL, - `hasCheckedIn` tinyint(1) DEFAULT NULL, - `transactionItemId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`badgeId`), - UNIQUE KEY `badgeNumber` (`badgeNumber`), - KEY `badgeAssetId_purchaseComplete` (`badgeAssetId`,`purchaseComplete`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSRegistrantRibbon` ( - `badgeId` char(22) binary NOT NULL, - `ribbonAssetId` char(22) binary NOT NULL, - `transactionItemId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`badgeId`,`ribbonAssetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSRegistrantTicket` ( - `badgeId` char(22) binary NOT NULL, - `ticketAssetId` char(22) binary NOT NULL, - `purchaseComplete` tinyint(1) DEFAULT NULL, - `transactionItemId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`badgeId`,`ticketAssetId`), - KEY `ticketAssetId_purchaseComplete` (`ticketAssetId`,`purchaseComplete`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSRegistrantToken` ( - `badgeId` char(22) binary NOT NULL, - `tokenAssetId` char(22) binary NOT NULL, - `quantity` int(11) DEFAULT NULL, - `transactionItemIds` text, - PRIMARY KEY (`badgeId`,`tokenAssetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSRibbon` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `percentageDiscount` float NOT NULL DEFAULT '10', - `price` float NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSSubmission` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `submissionId` int(11) NOT NULL, - `submissionStatus` char(30) DEFAULT NULL, - `ticketId` char(22) binary DEFAULT NULL, - `description` mediumtext, - `sku` char(35) DEFAULT NULL, - `vendorId` char(22) binary DEFAULT NULL, - `displayTitle` tinyint(1) DEFAULT NULL, - `shipsSeparately` tinyint(1) DEFAULT NULL, - `price` float DEFAULT NULL, - `seatsAvailable` int(11) DEFAULT NULL, - `startDate` datetime DEFAULT NULL, - `duration` float DEFAULT NULL, - `eventNumber` int(11) DEFAULT NULL, - `location` char(100) DEFAULT NULL, - `relatedBadgeGroups` mediumtext, - `relatedRibbons` mediumtext, - `eventMetaData` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSSubmissionForm` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `canSubmitGroupId` char(22) binary DEFAULT NULL, - `daysBeforeCleanup` int(11) DEFAULT NULL, - `deleteCreatedItems` int(1) DEFAULT NULL, - `formDescription` text, - `submissionDeadline` date DEFAULT NULL, - `pastDeadlineMessage` text, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSTicket` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `price` float NOT NULL DEFAULT '0', - `seatsAvailable` int(11) NOT NULL DEFAULT '100', - `startDate` datetime DEFAULT NULL, - `duration` float NOT NULL DEFAULT '1', - `eventNumber` int(11) DEFAULT NULL, - `location` char(100) DEFAULT NULL, - `relatedBadgeGroups` mediumtext, - `relatedRibbons` mediumtext, - `eventMetaData` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EMSToken` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `price` float NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Event` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `feedId` char(22) binary DEFAULT NULL, - `feedUid` char(255) DEFAULT NULL, - `startDate` date DEFAULT NULL, - `endDate` date DEFAULT NULL, - `userDefined1` text, - `userDefined2` text, - `userDefined3` text, - `userDefined4` text, - `userDefined5` text, - `recurId` char(22) binary DEFAULT NULL, - `description` longtext, - `startTime` time DEFAULT NULL, - `endTime` time DEFAULT NULL, - `relatedLinks` longtext, - `location` char(255) DEFAULT NULL, - `storageId` char(22) binary NOT NULL, - `timeZone` char(255) DEFAULT 'America/Chicago', - `sequenceNumber` bigint(20) DEFAULT NULL, - `iCalSequenceNumber` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `EventManagementSystem` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `timezone` char(30) NOT NULL DEFAULT 'America/Chicago', - `templateId` char(22) binary NOT NULL DEFAULT '2rC4ErZ3c77OJzJm7O5s3w', - `badgeBuilderTemplateId` char(22) binary NOT NULL DEFAULT 'BMybD3cEnmXVk2wQ_qEsRQ', - `lookupRegistrantTemplateId` char(22) binary NOT NULL DEFAULT 'OOyMH33plAy6oCj_QWrxtg', - `printBadgeTemplateId` char(22) binary NOT NULL DEFAULT 'PsFn7dJt4wMwBa8hiE3hOA', - `printTicketTemplateId` char(22) binary NOT NULL DEFAULT 'yBwydfooiLvhEFawJb0VTQ', - `printRemainingTicketsTemplateId` char(22) NOT NULL DEFAULT 'hreA_bgxiTX-EzWCSZCZJw', - `badgeInstructions` mediumtext, - `ribbonInstructions` mediumtext, - `ticketInstructions` mediumtext, - `tokenInstructions` mediumtext, - `registrationStaffGroupId` char(22) binary NOT NULL, - `scheduleTemplateId` char(22) binary DEFAULT NULL, - `scheduleColumnsPerPage` int(11) DEFAULT NULL, - `eventSubmissionTemplateId` char(22) binary DEFAULT NULL, - `eventSubmissionQueueTemplateId` char(22) binary DEFAULT NULL, - `eventSubmissionMainTemplateId` char(22) binary DEFAULT NULL, - `eventSubmissionGroups` mediumtext, - `submittedLocationsList` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Event_recur` ( - `recurId` char(22) binary NOT NULL, - `recurType` char(16) DEFAULT NULL, - `pattern` char(255) DEFAULT NULL, - `startDate` date DEFAULT NULL, - `endDate` char(10) DEFAULT NULL, - PRIMARY KEY (`recurId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Event_relatedlink` ( - `eventlinkId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `linkURL` tinytext, - `linktext` char(80) DEFAULT NULL, - `groupIdView` char(22) binary NOT NULL, - `sequenceNumber` bigint(20) DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `FileAsset` ( - `assetId` char(22) binary NOT NULL, - `storageId` char(22) binary NOT NULL, - `filename` char(255) NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `FlatDiscount` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `templateId` char(22) binary NOT NULL DEFAULT '63ix2-hU0FchXGIWkG3tow', - `mustSpend` float NOT NULL DEFAULT '0', - `percentageDiscount` int(3) NOT NULL DEFAULT '0', - `priceDiscount` float NOT NULL DEFAULT '0', - `thankYouMessage` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Folder` ( - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `visitorCacheTimeout` int(11) NOT NULL DEFAULT '3600', - `sortAlphabetically` int(11) NOT NULL DEFAULT '0', - `sortOrder` enum('ASC','DESC') DEFAULT 'ASC', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Gallery` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `groupIdAddComment` char(22) binary DEFAULT NULL, - `groupIdAddFile` char(22) binary DEFAULT NULL, - `imageResolutions` text, - `imageViewSize` int(11) DEFAULT NULL, - `imageThumbnailSize` int(11) DEFAULT NULL, - `maxSpacePerUser` char(20) DEFAULT NULL, - `richEditIdComment` char(22) binary DEFAULT NULL, - `templateIdAddArchive` char(22) binary DEFAULT NULL, - `templateIdDeleteAlbum` char(22) binary DEFAULT NULL, - `templateIdDeleteFile` char(22) binary DEFAULT NULL, - `templateIdEditAlbum` char(22) binary DEFAULT NULL, - `templateIdEditFile` char(22) binary DEFAULT NULL, - `templateIdListAlbums` char(22) binary DEFAULT NULL, - `templateIdListAlbumsRss` char(22) binary DEFAULT NULL, - `templateIdListFilesForUser` char(22) binary DEFAULT NULL, - `templateIdListFilesForUserRss` char(22) binary DEFAULT NULL, - `templateIdMakeShortcut` char(22) binary DEFAULT NULL, - `templateIdSearch` char(22) binary DEFAULT NULL, - `templateIdViewSlideshow` char(22) binary DEFAULT NULL, - `templateIdViewThumbnails` char(22) binary DEFAULT NULL, - `templateIdViewAlbum` char(22) binary DEFAULT NULL, - `templateIdViewAlbumRss` char(22) binary DEFAULT NULL, - `templateIdViewFile` char(22) binary DEFAULT NULL, - `viewAlbumAssetId` char(22) binary DEFAULT NULL, - `viewDefault` enum('album','list') DEFAULT NULL, - `viewListOrderBy` char(40) DEFAULT NULL, - `viewListOrderDirection` enum('ASC','DESC') DEFAULT NULL, - `workflowIdCommit` char(22) binary DEFAULT NULL, - `templateIdEditComment` char(22) binary DEFAULT NULL, - `richEditIdAlbum` char(22) binary DEFAULT NULL, - `richEditIdFile` char(22) binary DEFAULT NULL, - `defaultFilesPerPage` int(11) DEFAULT NULL, - `imageDensity` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `GalleryAlbum` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `allowComments` int(11) DEFAULT NULL, - `assetIdThumbnail` char(22) binary DEFAULT NULL, - `userDefined1` text, - `userDefined2` text, - `userDefined3` text, - `userDefined4` text, - `userDefined5` text, - `othersCanAdd` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `GalleryFile` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `userDefined1` longtext, - `userDefined2` longtext, - `userDefined3` longtext, - `userDefined4` longtext, - `userDefined5` longtext, - `views` bigint(20) DEFAULT '0', - `friendsOnly` int(1) DEFAULT '0', - `rating` int(1) DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `GalleryFile_comment` ( - `assetId` char(22) binary NOT NULL, - `commentId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL, - `visitorIp` char(255) DEFAULT NULL, - `creationDate` datetime DEFAULT NULL, - `bodyText` longtext, - PRIMARY KEY (`assetId`,`commentId`), - KEY `commentId` (`commentId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `HttpProxy` ( - `proxiedUrl` text, - `timeout` int(11) DEFAULT NULL, - `removeStyle` int(11) DEFAULT NULL, - `filterHtml` char(30) DEFAULT NULL, - `followExternal` int(11) DEFAULT NULL, - `followRedirect` int(11) DEFAULT NULL, - `cacheHttp` int(11) DEFAULT '0', - `useCache` int(11) DEFAULT '0', - `debug` int(11) DEFAULT '0', - `rewriteUrls` int(11) DEFAULT NULL, - `searchFor` char(255) DEFAULT NULL, - `stopAt` char(255) DEFAULT NULL, - `cookieJarStorageId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '0', - `useAmpersand` int(11) NOT NULL DEFAULT '0', - `urlPatternFilter` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `ImageAsset` ( - `assetId` char(22) binary NOT NULL, - `thumbnailSize` int(11) NOT NULL DEFAULT '50', - `parameters` text, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `annotations` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `InOutBoard` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `statusList` text, - `reportViewerGroup` char(22) binary NOT NULL DEFAULT '3', - `inOutGroup` char(22) binary NOT NULL DEFAULT '2', - `inOutTemplateId` char(22) binary NOT NULL DEFAULT 'IOB0000000000000000001', - `reportTemplateId` char(22) binary NOT NULL DEFAULT 'IOB0000000000000000002', - `paginateAfter` int(11) NOT NULL DEFAULT '50', - `reportPaginateAfter` int(11) NOT NULL DEFAULT '50', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `InOutBoard_delegates` ( - `userId` char(22) binary NOT NULL, - `delegateUserId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `InOutBoard_status` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `status` char(255) DEFAULT NULL, - `dateStamp` int(11) NOT NULL, - `message` text -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `InOutBoard_statusLog` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `status` char(255) DEFAULT NULL, - `dateStamp` int(11) NOT NULL, - `message` text, - `createdBy` char(22) binary DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Layout` ( - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `contentPositions` text, - `assetsToHide` text, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `assetOrder` char(20) DEFAULT 'asc', - `mobileTemplateId` char(22) binary DEFAULT 'PBtmpl0000000000000054', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Map` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `groupIdAddPoint` char(22) binary DEFAULT NULL, - `mapApiKey` text, - `mapHeight` char(12) DEFAULT NULL, - `mapWidth` char(12) DEFAULT NULL, - `startLatitude` float DEFAULT NULL, - `startLongitude` float DEFAULT NULL, - `startZoom` tinyint(3) unsigned DEFAULT NULL, - `templateIdEditPoint` char(22) binary DEFAULT NULL, - `templateIdView` char(22) binary DEFAULT NULL, - `templateIdViewPoint` char(22) binary DEFAULT NULL, - `workflowIdPoint` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MapPoint` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `latitude` float DEFAULT NULL, - `longitude` float DEFAULT NULL, - `website` char(255) DEFAULT NULL, - `address1` char(35) DEFAULT NULL, - `address2` char(35) DEFAULT NULL, - `city` char(35) DEFAULT NULL, - `region` char(35) DEFAULT NULL, - `zipCode` char(35) DEFAULT NULL, - `country` char(35) DEFAULT NULL, - `phone` char(22) binary DEFAULT NULL, - `fax` char(22) binary DEFAULT NULL, - `email` char(35) DEFAULT NULL, - `storageIdPhoto` char(22) binary DEFAULT NULL, - `userDefined1` text, - `userDefined2` text, - `userDefined3` text, - `userDefined4` text, - `userDefined5` text, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Matrix` ( - `detailTemplateId` char(22) binary DEFAULT NULL, - `compareTemplateId` char(22) binary DEFAULT NULL, - `searchTemplateId` char(22) binary DEFAULT NULL, - `categories` text, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `maxComparisons` int(11) NOT NULL DEFAULT '10', - `maxComparisonsPrivileged` int(11) NOT NULL DEFAULT '10', - `defaultSort` char(22) binary NOT NULL DEFAULT 'score', - `compareColorNo` char(22) binary DEFAULT '#ffaaaa', - `compareColorLimited` char(22) binary NOT NULL DEFAULT '#ffffaa', - `compareColorCostsExtra` char(22) binary NOT NULL DEFAULT '#ffffaa', - `compareColorFreeAddOn` char(22) binary NOT NULL DEFAULT '#ffffaa', - `compareColorYes` char(22) binary NOT NULL DEFAULT '#aaffaa', - `submissionApprovalWorkflowId` char(22) binary NOT NULL, - `ratingsDuration` int(11) NOT NULL DEFAULT '7776000', - `editListingTemplateId` char(22) binary DEFAULT NULL, - `groupToAdd` char(22) binary DEFAULT '2', - `screenshotsConfigTemplateId` char(22) binary DEFAULT NULL, - `screenshotsTemplateId` char(22) binary DEFAULT NULL, - `statisticsCacheTimeout` int(11) NOT NULL DEFAULT '3600', - `maxScreenshotWidth` int(11) DEFAULT NULL, - `maxScreenshotHeight` int(11) DEFAULT NULL, - `listingsCacheTimeout` int(11) NOT NULL DEFAULT '3600', - `maxComparisonsGroup` char(22) binary DEFAULT NULL, - `maxComparisonsGroupInt` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MatrixListing` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `screenshots` char(22) binary DEFAULT NULL, - `description` text, - `version` char(255) DEFAULT NULL, - `views` int(11) DEFAULT NULL, - `compares` int(11) DEFAULT NULL, - `clicks` int(11) DEFAULT NULL, - `viewsLastIp` char(255) DEFAULT NULL, - `comparesLastIp` char(255) DEFAULT NULL, - `clicksLastIp` char(255) DEFAULT NULL, - `lastUpdated` int(11) DEFAULT NULL, - `maintainer` char(22) binary DEFAULT NULL, - `manufacturerName` char(255) DEFAULT NULL, - `manufacturerURL` char(255) DEFAULT NULL, - `productURL` char(255) DEFAULT NULL, - `score` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MatrixListing_attribute` ( - `matrixId` char(22) binary NOT NULL, - `matrixListingId` char(22) binary NOT NULL, - `attributeId` char(22) binary NOT NULL, - `value` char(255) DEFAULT NULL, - PRIMARY KEY (`attributeId`,`matrixListingId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MatrixListing_rating` ( - `timeStamp` int(11) NOT NULL DEFAULT '0', - `category` char(255) DEFAULT NULL, - `rating` int(11) NOT NULL DEFAULT '1', - `listingId` char(22) binary NOT NULL, - `ipAddress` char(15) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MatrixListing_ratingSummary` ( - `listingId` char(22) binary NOT NULL, - `category` char(255) NOT NULL, - `meanValue` decimal(3,2) DEFAULT NULL, - `medianValue` int(11) DEFAULT NULL, - `countValue` int(11) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - PRIMARY KEY (`listingId`,`category`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Matrix_attribute` ( - `attributeId` char(22) binary NOT NULL, - `category` char(255) NOT NULL, - `name` char(255) DEFAULT NULL, - `description` text, - `fieldType` char(255) NOT NULL DEFAULT 'MatrixCompare', - `defaultValue` char(255) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - `options` text, - PRIMARY KEY (`attributeId`), - KEY `categoryIndex` (`category`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MessageBoard` ( - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `visitorCacheTimeout` int(11) NOT NULL DEFAULT '3600', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `MultiSearch` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `templateId` char(22) binary NOT NULL DEFAULT 'MultiSearchTmpl0000001', - `predefinedSearches` text, - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Navigation` ( - `assetId` char(22) binary NOT NULL, - `assetsToInclude` text, - `startType` char(35) DEFAULT NULL, - `startPoint` char(255) DEFAULT NULL, - `descendantEndPoint` int(11) NOT NULL DEFAULT '55', - `showSystemPages` int(11) NOT NULL DEFAULT '0', - `showHiddenPages` int(11) NOT NULL DEFAULT '0', - `showUnprivilegedPages` int(11) NOT NULL DEFAULT '0', - `templateId` char(22) binary NOT NULL, - `ancestorEndPoint` int(11) NOT NULL DEFAULT '55', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `mimeType` char(50) DEFAULT 'text/html', - `reversePageLoop` tinyint(1) DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Newsletter` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `newsletterTemplateId` char(22) binary NOT NULL DEFAULT 'newsletter000000000001', - `mySubscriptionsTemplateId` char(22) binary NOT NULL DEFAULT 'newslettersubscrip0001', - `newsletterHeader` mediumtext, - `newsletterFooter` mediumtext, - `newsletterCategories` text, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Newsletter_subscriptions` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `subscriptions` text, - `lastTimeSent` bigint(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`userId`), - KEY `lastTimeSent_assetId_userId` (`lastTimeSent`,`assetId`,`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `PM_project` ( - `projectId` char(22) binary NOT NULL, - `assetId` char(22) binary DEFAULT NULL, - `name` char(255) NOT NULL, - `description` text, - `startDate` bigint(20) DEFAULT NULL, - `endDate` bigint(20) DEFAULT NULL, - `projectManager` char(22) binary DEFAULT NULL, - `durationUnits` enum('hours','days') DEFAULT 'hours', - `hoursPerDay` float DEFAULT NULL, - `targetBudget` float(15,2) DEFAULT '0.00', - `percentComplete` float NOT NULL DEFAULT '0', - `parentId` char(22) binary DEFAULT NULL, - `creationDate` bigint(20) NOT NULL, - `createdBy` char(22) binary NOT NULL, - `lastUpdatedBy` char(22) binary NOT NULL, - `lastUpdateDate` bigint(20) NOT NULL, - `projectObserver` char(22) binary DEFAULT '7', - PRIMARY KEY (`projectId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `PM_task` ( - `taskId` char(22) binary NOT NULL, - `projectId` char(22) binary NOT NULL, - `taskName` char(255) NOT NULL, - `duration` float DEFAULT NULL, - `startDate` bigint(20) DEFAULT NULL, - `endDate` bigint(20) DEFAULT NULL, - `dependants` char(50) DEFAULT NULL, - `parentId` char(22) binary DEFAULT NULL, - `percentComplete` float DEFAULT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `creationDate` bigint(20) NOT NULL, - `createdBy` char(22) binary NOT NULL, - `lastUpdatedBy` char(22) binary NOT NULL, - `lastUpdateDate` bigint(20) NOT NULL, - `lagTime` bigint(20) DEFAULT '0', - `taskType` enum('timed','progressive','milestone') NOT NULL DEFAULT 'timed', - PRIMARY KEY (`taskId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `PM_taskResource` ( - `taskResourceId` char(22) binary NOT NULL, - `taskId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL, - `resourceKind` enum('user','group') NOT NULL, - `resourceId` char(22) binary NOT NULL, - PRIMARY KEY (`taskResourceId`), - UNIQUE KEY `taskId` (`taskId`,`resourceKind`,`resourceId`), - UNIQUE KEY `taskId_2` (`taskId`,`sequenceNumber`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `PM_wobject` ( - `assetId` char(22) binary NOT NULL, - `projectDashboardTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0001', - `projectDisplayTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0002', - `ganttChartTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0003', - `editTaskTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0004', - `groupToAdd` char(22) binary NOT NULL DEFAULT '3', - `revisionDate` bigint(20) NOT NULL, - `resourcePopupTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0005', - `resourceListTemplateId` char(22) binary NOT NULL DEFAULT 'ProjectManagerTMPL0006', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Photo` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `exifData` longtext, - `location` char(255) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Photo_rating` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL, - `visitorIp` char(255) DEFAULT NULL, - `rating` int(11) DEFAULT NULL, - KEY `assetId` (`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Poll` ( - `active` int(11) NOT NULL DEFAULT '1', - `graphWidth` int(11) NOT NULL DEFAULT '150', - `voteGroup` char(22) binary DEFAULT NULL, - `question` char(255) DEFAULT NULL, - `a1` char(255) DEFAULT NULL, - `a2` char(255) DEFAULT NULL, - `a3` char(255) DEFAULT NULL, - `a4` char(255) DEFAULT NULL, - `a5` char(255) DEFAULT NULL, - `a6` char(255) DEFAULT NULL, - `a7` char(255) DEFAULT NULL, - `a8` char(255) DEFAULT NULL, - `a9` char(255) DEFAULT NULL, - `a10` char(255) DEFAULT NULL, - `a11` char(255) DEFAULT NULL, - `a12` char(255) DEFAULT NULL, - `a13` char(255) DEFAULT NULL, - `a14` char(255) DEFAULT NULL, - `a15` char(255) DEFAULT NULL, - `a16` char(255) DEFAULT NULL, - `a17` char(255) DEFAULT NULL, - `a18` char(255) DEFAULT NULL, - `a19` char(255) DEFAULT NULL, - `a20` char(255) DEFAULT NULL, - `karmaPerVote` int(11) NOT NULL DEFAULT '0', - `randomizeAnswers` int(11) NOT NULL DEFAULT '0', - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `graphConfiguration` blob, - `generateGraph` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Poll_answer` ( - `answer` char(3) DEFAULT NULL, - `userId` char(22) binary NOT NULL, - `ipAddress` char(50) DEFAULT NULL, - `assetId` char(22) binary NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Post` ( - `assetId` char(22) binary NOT NULL, - `threadId` char(22) binary NOT NULL, - `username` char(30) DEFAULT NULL, - `content` mediumtext, - `views` int(11) NOT NULL DEFAULT '0', - `contentType` char(35) NOT NULL DEFAULT 'mixed', - `userDefined1` text, - `userDefined2` text, - `userDefined3` text, - `userDefined4` text, - `userDefined5` text, - `storageId` char(22) binary NOT NULL, - `rating` int(11) NOT NULL DEFAULT '0', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `originalEmail` mediumtext, - PRIMARY KEY (`assetId`,`revisionDate`), - KEY `threadId_rating` (`threadId`,`rating`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Post_rating` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `ipAddress` char(15) NOT NULL, - `dateOfRating` bigint(20) DEFAULT NULL, - `rating` int(11) NOT NULL DEFAULT '0', - KEY `assetId_userId` (`assetId`,`userId`), - KEY `assetId_ipAddress` (`assetId`,`ipAddress`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Product` ( - `image1` char(255) DEFAULT NULL, - `image2` char(255) DEFAULT NULL, - `image3` char(255) DEFAULT NULL, - `brochure` char(255) DEFAULT NULL, - `manual` char(255) DEFAULT NULL, - `warranty` char(255) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - `thankYouMessage` mediumtext, - `accessoryJSON` longtext, - `benefitJSON` longtext, - `featureJSON` longtext, - `relatedJSON` longtext, - `specificationJSON` longtext, - `variantsJSON` longtext, - `isShippingRequired` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `RichEdit` ( - `assetId` char(22) binary NOT NULL, - `askAboutRichEdit` int(11) NOT NULL DEFAULT '0', - `preformatted` int(11) NOT NULL DEFAULT '0', - `editorWidth` int(11) NOT NULL DEFAULT '0', - `editorHeight` int(11) NOT NULL DEFAULT '0', - `sourceEditorWidth` int(11) NOT NULL DEFAULT '0', - `sourceEditorHeight` int(11) NOT NULL DEFAULT '0', - `useBr` int(11) NOT NULL DEFAULT '0', - `nowrap` int(11) NOT NULL DEFAULT '0', - `removeLineBreaks` int(11) NOT NULL DEFAULT '0', - `npwrap` int(11) NOT NULL DEFAULT '0', - `directionality` char(3) NOT NULL DEFAULT 'ltr', - `toolbarLocation` char(6) NOT NULL DEFAULT 'bottom', - `cssFile` char(255) DEFAULT NULL, - `validElements` mediumtext, - `toolbarRow1` text, - `toolbarRow2` text, - `toolbarRow3` text, - `enableContextMenu` int(11) NOT NULL DEFAULT '0', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `disableRichEditor` int(11) DEFAULT '0', - `inlinePopups` int(11) NOT NULL DEFAULT '0', - `allowMedia` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `SQLReport` ( - `dbQuery1` text, - `paginateAfter` int(11) NOT NULL DEFAULT '50', - `preprocessMacros1` int(11) DEFAULT '0', - `debugMode` int(11) NOT NULL DEFAULT '0', - `databaseLinkId1` char(22) binary NOT NULL, - `placeholderParams1` text, - `preprocessMacros2` int(11) DEFAULT '0', - `dbQuery2` text, - `placeholderParams2` text, - `databaseLinkId2` char(22) binary NOT NULL, - `preprocessMacros3` int(11) DEFAULT '0', - `dbQuery3` text, - `placeholderParams3` text, - `databaseLinkId3` char(22) binary NOT NULL, - `preprocessMacros4` int(11) DEFAULT '0', - `dbQuery4` text, - `placeholderParams4` text, - `databaseLinkId4` char(22) binary NOT NULL, - `preprocessMacros5` int(11) DEFAULT '0', - `dbQuery5` text, - `placeholderParams5` text, - `databaseLinkId5` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '0', - `prequeryStatements1` text, - `prequeryStatements2` text, - `prequeryStatements3` text, - `prequeryStatements4` text, - `prequeryStatements5` text, - `downloadType` char(255) DEFAULT NULL, - `downloadFilename` char(255) DEFAULT NULL, - `downloadTemplateId` char(22) binary DEFAULT NULL, - `downloadMimeType` char(255) DEFAULT NULL, - `downloadUserGroup` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Shelf` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `templateId` char(22) binary NOT NULL DEFAULT 'nFen0xjkZn8WkpM93C9ceQ', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Shortcut` ( - `overrideTitle` int(11) NOT NULL DEFAULT '0', - `overrideDescription` int(11) NOT NULL DEFAULT '0', - `overrideTemplate` int(11) NOT NULL DEFAULT '0', - `overrideDisplayTitle` int(11) NOT NULL DEFAULT '0', - `overrideTemplateId` char(22) binary NOT NULL, - `shortcutByCriteria` int(11) NOT NULL DEFAULT '0', - `resolveMultiples` char(30) DEFAULT 'mostRecent', - `shortcutCriteria` text NOT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `shortcutToAssetId` char(22) binary NOT NULL, - `disableContentLock` int(11) NOT NULL DEFAULT '0', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `prefFieldsToShow` text, - `prefFieldsToImport` text, - `showReloadIcon` tinyint(3) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Shortcut_overrides` ( - `assetId` char(22) binary NOT NULL, - `fieldName` char(255) NOT NULL, - `newValue` text, - PRIMARY KEY (`assetId`,`fieldName`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `StockData` ( - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL DEFAULT 'StockListTMPL000000001', - `displayTemplateId` char(22) binary NOT NULL DEFAULT 'StockListTMPL000000002', - `defaultStocks` text, - `source` char(50) DEFAULT 'usa', - `failover` int(11) DEFAULT '1', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Story` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `headline` char(255) DEFAULT NULL, - `subtitle` char(255) DEFAULT NULL, - `byline` char(255) DEFAULT NULL, - `location` char(255) DEFAULT NULL, - `highlights` text, - `story` mediumtext, - `photo` longtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `StoryArchive` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `storiesPerPage` int(11) DEFAULT NULL, - `groupToPost` char(22) binary DEFAULT NULL, - `templateId` char(22) binary DEFAULT NULL, - `storyTemplateId` char(22) binary DEFAULT NULL, - `editStoryTemplateId` char(22) binary DEFAULT NULL, - `keywordListTemplateId` char(22) binary DEFAULT NULL, - `archiveAfter` int(11) DEFAULT NULL, - `richEditorId` char(22) binary DEFAULT NULL, - `approvalWorkflowId` char(22) binary DEFAULT 'pbworkflow000000000003', - `photoWidth` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `StoryTopic` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `storiesPer` int(11) DEFAULT NULL, - `storiesShort` int(11) DEFAULT NULL, - `templateId` char(22) binary DEFAULT NULL, - `storyTemplateId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Subscription` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `templateId` char(22) binary NOT NULL, - `thankYouMessage` mediumtext, - `price` float NOT NULL DEFAULT '0', - `subscriptionGroup` char(22) binary NOT NULL DEFAULT '2', - `duration` char(12) NOT NULL DEFAULT 'Monthly', - `executeOnSubscription` char(255) DEFAULT NULL, - `karma` int(6) DEFAULT '0', - `recurringSubscription` tinyint(1) NOT NULL DEFAULT '1', - `redeemSubscriptionCodeTemplateId` char(22) binary NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Subscription_code` ( - `code` char(64) NOT NULL, - `batchId` char(22) binary NOT NULL, - `status` char(10) NOT NULL DEFAULT 'Unused', - `dateUsed` bigint(20) DEFAULT NULL, - `usedBy` char(22) binary DEFAULT NULL, - PRIMARY KEY (`code`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Subscription_codeBatch` ( - `batchId` char(22) binary NOT NULL, - `name` char(255) DEFAULT NULL, - `description` mediumtext, - `subscriptionId` char(22) binary NOT NULL, - `expirationDate` bigint(20) NOT NULL, - `dateCreated` bigint(20) NOT NULL, - PRIMARY KEY (`batchId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Survey` ( - `groupToTakeSurvey` char(22) binary NOT NULL DEFAULT '2', - `groupToEditSurvey` char(22) binary NOT NULL DEFAULT '3', - `groupToViewReports` char(22) binary NOT NULL DEFAULT '3', - `overviewTemplateId` char(22) binary NOT NULL, - `maxResponsesPerUser` int(11) NOT NULL DEFAULT '1', - `gradebookTemplateId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `surveyEditTemplateId` char(22) binary DEFAULT NULL, - `answerEditTemplateId` char(22) binary DEFAULT NULL, - `questionEditTemplateId` char(22) binary DEFAULT NULL, - `sectionEditTemplateId` char(22) binary DEFAULT NULL, - `surveyTakeTemplateId` char(22) binary DEFAULT NULL, - `surveyQuestionsId` char(22) binary DEFAULT NULL, - `exitURL` text, - `surveyJSON` longtext, - `timeLimit` mediumint(8) unsigned NOT NULL, - `showProgress` tinyint(3) unsigned NOT NULL DEFAULT '0', - `showTimeLimit` tinyint(3) unsigned NOT NULL DEFAULT '0', - `doAfterTimeLimit` char(22) binary DEFAULT NULL, - `onSurveyEndWorkflowId` char(22) binary DEFAULT NULL, - `quizModeSummary` tinyint(3) DEFAULT NULL, - `surveySummaryTemplateId` char(22) binary DEFAULT NULL, - `allowBackBtn` tinyint(3) DEFAULT NULL, - `feedbackTemplateId` char(22) binary DEFAULT NULL, - `testResultsTemplateId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Survey_questionTypes` ( - `questionType` char(56) NOT NULL, - `answers` text NOT NULL, - PRIMARY KEY (`questionType`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Survey_response` ( - `assetId` char(22) binary NOT NULL, - `Survey_responseId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL, - `username` char(255) DEFAULT NULL, - `ipAddress` char(15) DEFAULT NULL, - `startDate` bigint(20) NOT NULL DEFAULT '0', - `endDate` bigint(20) NOT NULL DEFAULT '0', - `isComplete` int(11) NOT NULL DEFAULT '0', - `anonId` char(255) DEFAULT NULL, - `responseJSON` longtext, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`Survey_responseId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Survey_tempReport` ( - `assetId` char(22) binary NOT NULL, - `Survey_responseId` char(22) binary NOT NULL, - `order` smallint(5) unsigned NOT NULL, - `sectionNumber` smallint(5) unsigned NOT NULL, - `sectionName` text, - `questionNumber` smallint(5) unsigned NOT NULL, - `questionName` text, - `questionComment` mediumtext, - `answerNumber` smallint(5) unsigned DEFAULT NULL, - `answerValue` mediumtext, - `answerComment` mediumtext, - `entryDate` bigint(20) unsigned NOT NULL COMMENT 'UTC Unix Time', - `isCorrect` tinyint(3) unsigned DEFAULT NULL, - `value` int(11) DEFAULT NULL, - `fileStoreageId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`Survey_responseId`,`order`), - KEY `assetId` (`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Survey_test` ( - `testId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `dateCreated` datetime DEFAULT NULL, - `lastUpdated` datetime DEFAULT NULL, - `assetId` char(255) DEFAULT NULL, - `name` char(255) DEFAULT NULL, - `test` mediumtext NOT NULL, - PRIMARY KEY (`testId`), - KEY `assetId` (`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `SyndicatedContent` ( - `rssUrl` text, - `maxHeadlines` int(11) NOT NULL DEFAULT '0', - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `hasTerms` char(255) NOT NULL, - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - `processMacroInRssUrl` int(11) DEFAULT '0', - `sortItems` char(255) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_projectList` ( - `projectId` char(22) binary NOT NULL, - `assetId` char(22) binary DEFAULT NULL, - `projectName` char(255) NOT NULL, - `creationDate` bigint(20) NOT NULL, - `createdBy` char(22) binary NOT NULL, - `lastUpdatedBy` char(22) binary NOT NULL, - `lastUpdateDate` bigint(20) NOT NULL, - PRIMARY KEY (`projectId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_projectResourceList` ( - `projectId` char(22) binary NOT NULL, - `resourceId` char(22) binary NOT NULL, - PRIMARY KEY (`projectId`,`resourceId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_projectTasks` ( - `taskId` char(22) binary NOT NULL, - `projectId` char(22) binary NOT NULL, - `taskName` char(255) NOT NULL, - PRIMARY KEY (`taskId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_report` ( - `reportId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `startDate` char(10) NOT NULL, - `endDate` char(10) NOT NULL, - `reportComplete` int(11) NOT NULL DEFAULT '0', - `resourceId` char(22) binary NOT NULL, - `creationDate` bigint(20) NOT NULL, - `createdBy` char(22) binary NOT NULL, - `lastUpdatedBy` char(22) binary NOT NULL, - `lastUpdateDate` bigint(20) NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_timeEntry` ( - `entryId` char(22) binary NOT NULL, - `projectId` char(22) binary NOT NULL, - `taskId` char(22) binary NOT NULL, - `taskDate` char(10) NOT NULL, - `hours` float DEFAULT '0', - `comments` text, - `reportId` char(22) binary NOT NULL, - PRIMARY KEY (`entryId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `TT_wobject` ( - `assetId` char(22) binary NOT NULL, - `userViewTemplateId` char(22) binary NOT NULL DEFAULT 'TimeTrackingTMPL000001', - `managerViewTemplateId` char(22) binary NOT NULL DEFAULT 'TimeTrackingTMPL000002', - `timeRowTemplateId` char(22) binary NOT NULL DEFAULT 'TimeTrackingTMPL000003', - `pmAssetId` char(22) binary DEFAULT NULL, - `groupToManage` char(22) binary NOT NULL DEFAULT '3', - `revisionDate` bigint(20) NOT NULL, - `pmIntegration` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Thingy` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `templateId` char(22) binary NOT NULL, - `defaultThingId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `ThingyRecord` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `templateIdView` char(22) binary DEFAULT NULL, - `thingId` char(22) binary DEFAULT NULL, - `thingFields` longtext, - `thankYouText` longtext, - `price` float DEFAULT NULL, - `duration` bigint(20) DEFAULT NULL, - `fieldPrice` longtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `ThingyRecord_record` ( - `recordId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `dateCreated` datetime DEFAULT NULL, - `lastUpdated` datetime DEFAULT NULL, - `transactionId` char(255) DEFAULT NULL, - `assetId` char(255) DEFAULT NULL, - `expires` bigint(20) NOT NULL DEFAULT '0', - `userId` char(255) DEFAULT NULL, - `fields` longtext, - `isHidden` tinyint(1) NOT NULL DEFAULT '0', - `sentExpiresNotice` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`recordId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Thingy_fields` ( - `assetId` char(22) binary NOT NULL, - `thingId` char(22) binary NOT NULL, - `fieldId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL, - `dateCreated` bigint(20) NOT NULL, - `createdBy` char(22) binary NOT NULL, - `dateUpdated` bigint(20) NOT NULL, - `updatedBy` char(22) binary NOT NULL, - `label` char(255) NOT NULL, - `fieldType` char(255) NOT NULL, - `defaultValue` longtext, - `possibleValues` text, - `subtext` char(255) DEFAULT NULL, - `status` char(255) NOT NULL, - `width` int(11) DEFAULT NULL, - `height` int(11) DEFAULT NULL, - `vertical` smallint(1) DEFAULT NULL, - `extras` char(255) DEFAULT NULL, - `display` int(11) DEFAULT NULL, - `viewScreenTitle` int(11) DEFAULT NULL, - `displayInSearch` int(11) DEFAULT NULL, - `searchIn` int(11) DEFAULT NULL, - `fieldInOtherThingId` char(22) binary DEFAULT NULL, - `size` int(11) DEFAULT NULL, - `pretext` char(255) DEFAULT NULL, - PRIMARY KEY (`fieldId`,`thingId`,`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Thingy_things` ( - `assetId` char(22) binary NOT NULL, - `thingId` char(22) binary NOT NULL, - `label` char(255) NOT NULL, - `editScreenTitle` char(255) NOT NULL, - `editInstructions` text, - `groupIdAdd` char(22) binary NOT NULL, - `groupIdEdit` char(22) binary NOT NULL, - `saveButtonLabel` char(255) NOT NULL, - `afterSave` char(255) NOT NULL, - `editTemplateId` char(22) binary NOT NULL, - `onAddWorkflowId` char(22) binary DEFAULT NULL, - `onEditWorkflowId` char(22) binary DEFAULT NULL, - `onDeleteWorkflowId` char(22) binary DEFAULT NULL, - `groupIdView` char(22) binary NOT NULL, - `viewTemplateId` char(22) binary NOT NULL, - `defaultView` char(255) NOT NULL, - `searchScreenTitle` char(255) NOT NULL, - `searchDescription` text, - `groupIdSearch` char(22) binary NOT NULL, - `groupIdImport` char(22) binary NOT NULL, - `groupIdExport` char(22) binary NOT NULL, - `searchTemplateId` char(22) binary NOT NULL, - `thingsPerPage` int(11) NOT NULL DEFAULT '25', - `sortBy` char(22) binary DEFAULT NULL, - `display` int(11) DEFAULT NULL, - `exportMetaData` int(11) DEFAULT NULL, - `maxEntriesPerUser` int(11) DEFAULT NULL, - PRIMARY KEY (`thingId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Thread` ( - `assetId` char(22) binary NOT NULL, - `replies` int(11) NOT NULL DEFAULT '0', - `lastPostId` char(22) binary NOT NULL, - `lastPostDate` bigint(20) DEFAULT NULL, - `isLocked` int(11) NOT NULL DEFAULT '0', - `isSticky` int(11) NOT NULL DEFAULT '0', - `subscriptionGroupId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `karma` int(11) NOT NULL DEFAULT '0', - `karmaScale` int(11) NOT NULL DEFAULT '1', - `karmaRank` float(11,6) DEFAULT NULL, - `threadRating` int(11) DEFAULT '0', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Thread_read` ( - `threadId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - KEY `threadId_userId` (`threadId`,`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `UserList` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `templateId` char(22) binary DEFAULT NULL, - `showGroupId` char(22) binary DEFAULT NULL, - `hideGroupId` char(22) binary DEFAULT NULL, - `usersPerPage` int(11) DEFAULT NULL, - `alphabet` text, - `alphabetSearchField` char(128) DEFAULT NULL, - `showOnlyVisibleAsNamed` int(11) DEFAULT NULL, - `sortBy` char(128) DEFAULT NULL, - `sortOrder` char(4) DEFAULT NULL, - `overridePublicEmail` int(11) DEFAULT NULL, - `overridePublicProfile` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WeatherData` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) unsigned NOT NULL DEFAULT '0', - `templateId` char(22) binary NOT NULL DEFAULT 'WeatherDataTmpl0000001', - `locations` text, - `partnerId` char(100) DEFAULT NULL, - `licenseKey` char(100) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WikiMaster` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `groupToEditPages` char(22) binary NOT NULL DEFAULT '2', - `groupToAdminister` char(22) binary NOT NULL DEFAULT '3', - `richEditor` char(22) binary NOT NULL DEFAULT 'PBrichedit000000000002', - `frontPageTemplateId` char(22) binary NOT NULL DEFAULT 'WikiFrontTmpl000000001', - `pageTemplateId` char(22) binary NOT NULL DEFAULT 'WikiPageTmpl0000000001', - `pageEditTemplateId` char(22) binary NOT NULL DEFAULT 'WikiPageEditTmpl000001', - `recentChangesTemplateId` char(22) binary NOT NULL DEFAULT 'WikiRCTmpl000000000001', - `mostPopularTemplateId` char(22) binary NOT NULL DEFAULT 'WikiMPTmpl000000000001', - `pageHistoryTemplateId` char(22) binary NOT NULL DEFAULT 'WikiPHTmpl000000000001', - `searchTemplateId` char(22) binary NOT NULL DEFAULT 'WikiSearchTmpl00000001', - `recentChangesCount` int(11) NOT NULL DEFAULT '50', - `recentChangesCountFront` int(11) NOT NULL DEFAULT '10', - `mostPopularCount` int(11) NOT NULL DEFAULT '50', - `mostPopularCountFront` int(11) NOT NULL DEFAULT '10', - `thumbnailSize` int(11) NOT NULL DEFAULT '0', - `maxImageSize` int(11) NOT NULL DEFAULT '0', - `approvalWorkflow` char(22) binary NOT NULL DEFAULT 'pbworkflow000000000003', - `useContentFilter` int(11) DEFAULT '0', - `filterCode` char(30) DEFAULT 'javascript', - `byKeywordTemplateId` char(22) binary NOT NULL DEFAULT 'WikiKeyword00000000001', - `allowAttachments` int(11) NOT NULL DEFAULT '0', - `topLevelKeywords` longtext, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WikiMasterKeywords` ( - `assetId` char(22) binary NOT NULL, - `keyword` char(64) NOT NULL, - `subKeyword` char(64) NOT NULL DEFAULT '', - PRIMARY KEY (`assetId`,`keyword`,`subKeyword`), - KEY `assetId` (`assetId`), - KEY `keyword` (`keyword`), - KEY `subKeyword` (`subKeyword`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WikiPage` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `content` mediumtext, - `views` bigint(20) NOT NULL DEFAULT '0', - `isProtected` int(11) NOT NULL DEFAULT '0', - `actionTaken` char(35) NOT NULL, - `actionTakenBy` char(22) binary NOT NULL, - `isFeatured` int(1) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `Workflow` ( - `workflowId` char(22) binary NOT NULL, - `title` char(255) NOT NULL DEFAULT 'Untitled', - `description` text, - `enabled` int(11) NOT NULL DEFAULT '0', - `type` char(255) NOT NULL DEFAULT 'None', - `mode` char(20) NOT NULL DEFAULT 'parallel', - PRIMARY KEY (`workflowId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WorkflowActivity` ( - `activityId` char(22) binary NOT NULL, - `workflowId` char(22) binary NOT NULL, - `title` char(255) NOT NULL DEFAULT 'Untitled', - `description` text, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `className` char(255) DEFAULT NULL, - PRIMARY KEY (`activityId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WorkflowActivityData` ( - `activityId` char(22) binary NOT NULL, - `name` char(255) NOT NULL, - `value` text, - PRIMARY KEY (`activityId`,`name`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WorkflowInstance` ( - `instanceId` char(22) binary NOT NULL, - `workflowId` char(22) binary NOT NULL, - `currentActivityId` char(22) binary NOT NULL, - `priority` int(11) NOT NULL DEFAULT '2', - `className` char(255) DEFAULT NULL, - `methodName` char(255) DEFAULT NULL, - `parameters` longtext, - `runningSince` bigint(20) DEFAULT NULL, - `lastUpdate` bigint(20) DEFAULT NULL, - `lastStatus` char(15) DEFAULT NULL, - `noSession` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`instanceId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WorkflowInstanceScratch` ( - `instanceId` char(22) binary NOT NULL, - `name` char(255) NOT NULL, - `value` text, - PRIMARY KEY (`instanceId`,`name`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `WorkflowSchedule` ( - `taskId` char(22) binary NOT NULL, - `title` char(255) NOT NULL DEFAULT 'Untitled', - `enabled` int(11) NOT NULL DEFAULT '0', - `runOnce` int(11) NOT NULL DEFAULT '0', - `minuteOfHour` char(255) NOT NULL DEFAULT '0', - `hourOfDay` char(255) NOT NULL DEFAULT '*', - `dayOfMonth` char(255) NOT NULL DEFAULT '*', - `monthOfYear` char(255) NOT NULL DEFAULT '*', - `dayOfWeek` char(255) NOT NULL DEFAULT '*', - `workflowId` char(22) binary NOT NULL, - `className` char(255) DEFAULT NULL, - `methodName` char(255) DEFAULT NULL, - `priority` int(11) NOT NULL DEFAULT '2', - `parameters` longtext, - PRIMARY KEY (`taskId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `ZipArchiveAsset` ( - `assetId` char(22) binary NOT NULL, - `templateId` char(22) binary NOT NULL, - `showPage` char(255) NOT NULL DEFAULT 'index.html', - `revisionDate` bigint(20) NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `adSkuPurchase` ( - `adSkuPurchaseId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `dateCreated` datetime DEFAULT NULL, - `lastUpdated` datetime DEFAULT NULL, - `isDeleted` tinyint(1) NOT NULL DEFAULT '0', - `clicksPurchased` bigint(20) DEFAULT NULL, - `dateOfPurchase` bigint(20) DEFAULT NULL, - `impressionsPurchased` bigint(20) DEFAULT NULL, - `transactionItemId` char(22) binary DEFAULT NULL, - `userId` char(22) binary DEFAULT NULL, - `adId` char(22) binary DEFAULT NULL, - `storedImage` char(22) binary DEFAULT NULL, - PRIMARY KEY (`adSkuPurchaseId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `adSpace` ( - `adSpaceId` char(22) binary NOT NULL, - `name` char(35) NOT NULL, - `title` char(255) NOT NULL, - `description` text, - `minimumImpressions` int(11) NOT NULL DEFAULT '1000', - `minimumClicks` int(11) NOT NULL DEFAULT '1000', - `width` int(11) NOT NULL DEFAULT '468', - `height` int(11) NOT NULL DEFAULT '60', - PRIMARY KEY (`adSpaceId`), - UNIQUE KEY `name` (`name`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `address` ( - `addressId` char(22) binary NOT NULL, - `addressBookId` char(22) binary NOT NULL, - `label` char(35) DEFAULT NULL, - `firstName` char(35) DEFAULT NULL, - `lastName` char(35) DEFAULT NULL, - `address1` char(35) DEFAULT NULL, - `address2` char(35) DEFAULT NULL, - `address3` char(35) DEFAULT NULL, - `city` char(35) DEFAULT NULL, - `state` char(35) DEFAULT NULL, - `country` char(35) DEFAULT NULL, - `code` char(35) DEFAULT NULL, - `phoneNumber` char(35) DEFAULT NULL, - `organization` char(255) DEFAULT NULL, - `email` char(255) DEFAULT NULL, - PRIMARY KEY (`addressId`), - KEY `addressBookId_addressId` (`addressBookId`,`addressId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `addressBook` ( - `addressBookId` char(22) binary NOT NULL, - `userId` char(22) binary DEFAULT NULL, - `defaultAddressId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`addressBookId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `advertisement` ( - `adId` char(22) binary NOT NULL, - `adSpaceId` char(22) binary NOT NULL, - `ownerUserId` char(22) binary NOT NULL, - `isActive` int(11) NOT NULL DEFAULT '0', - `title` char(255) NOT NULL, - `type` char(15) NOT NULL DEFAULT 'text', - `storageId` char(22) binary DEFAULT NULL, - `adText` char(255) DEFAULT NULL, - `url` text, - `richMedia` text, - `borderColor` char(7) NOT NULL DEFAULT '#000000', - `textColor` char(7) NOT NULL DEFAULT '#000000', - `backgroundColor` char(7) NOT NULL DEFAULT '#ffffff', - `clicks` int(11) NOT NULL DEFAULT '0', - `clicksBought` int(11) NOT NULL DEFAULT '0', - `impressions` int(11) NOT NULL DEFAULT '0', - `impressionsBought` int(11) NOT NULL DEFAULT '0', - `priority` int(11) NOT NULL DEFAULT '0', - `nextInPriority` bigint(20) NOT NULL DEFAULT '0', - `renderedAd` text, - PRIMARY KEY (`adId`), - KEY `adSpaceId_isActive` (`adSpaceId`,`isActive`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `analyticRule` ( - `ruleId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `dateCreated` datetime DEFAULT NULL, - `lastUpdated` datetime DEFAULT NULL, - `bucketName` char(255) DEFAULT NULL, - `regexp` char(255) NOT NULL DEFAULT '.+', - PRIMARY KEY (`ruleId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `asset` ( - `assetId` char(22) binary NOT NULL, - `parentId` char(22) binary NOT NULL, - `lineage` char(255) NOT NULL, - `state` char(35) NOT NULL, - `className` char(255) NOT NULL, - `creationDate` bigint(20) NOT NULL DEFAULT '997995720', - `createdBy` char(22) binary NOT NULL DEFAULT '3', - `stateChanged` char(22) binary NOT NULL DEFAULT '997995720', - `stateChangedBy` char(22) binary NOT NULL DEFAULT '3', - `isLockedBy` char(22) binary DEFAULT NULL, - `isSystem` int(11) NOT NULL DEFAULT '0', - `lastExportedAs` char(255) DEFAULT NULL, - PRIMARY KEY (`assetId`), - UNIQUE KEY `lineage` (`lineage`), - KEY `parentId` (`parentId`), - KEY `state_parentId_lineage` (`state`,`parentId`,`lineage`), - KEY `isPrototype_className_assetId` (`className`,`assetId`), - KEY `className_assetId_state` (`className`,`assetId`,`state`), - KEY `state_lineage` (`state`,`lineage`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetAspectComments` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `comments` longtext, - `averageCommentRating` int(11) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetAspectRssFeed` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `itemsPerFeed` int(11) DEFAULT '25', - `feedCopyright` text, - `feedTitle` text, - `feedDescription` mediumtext, - `feedImage` char(22) binary DEFAULT NULL, - `feedImageLink` text, - `feedImageDescription` mediumtext, - `feedHeaderLinks` char(32) DEFAULT 'rss\natom', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetAspect_Subscribable` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `subscriptionGroupId` char(22) binary DEFAULT NULL, - `subscriptionTemplateId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetData` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `revisedBy` char(22) binary NOT NULL, - `tagId` char(22) binary NOT NULL, - `status` char(35) NOT NULL DEFAULT 'pending', - `title` char(255) NOT NULL DEFAULT 'untitled', - `menuTitle` char(255) NOT NULL DEFAULT 'untitled', - `url` char(255) NOT NULL, - `ownerUserId` char(22) binary NOT NULL, - `groupIdView` char(22) binary NOT NULL, - `groupIdEdit` char(22) binary NOT NULL, - `synopsis` text, - `newWindow` int(11) NOT NULL DEFAULT '0', - `isHidden` int(11) NOT NULL DEFAULT '0', - `isPackage` int(11) NOT NULL DEFAULT '0', - `isPrototype` int(11) NOT NULL DEFAULT '0', - `encryptPage` int(11) NOT NULL DEFAULT '0', - `assetSize` int(11) NOT NULL DEFAULT '0', - `extraHeadTags` text, - `skipNotification` int(11) NOT NULL DEFAULT '0', - `isExportable` int(11) NOT NULL DEFAULT '1', - `inheritUrlFromParent` int(11) NOT NULL DEFAULT '0', - `lastModified` bigint(20) DEFAULT NULL, - `extraHeadTagsPacked` longtext, - `usePackedHeadTags` int(1) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`), - KEY `assetId_url` (`assetId`,`url`), - KEY `assetId_revisionDate_status_tagId` (`assetId`,`revisionDate`,`status`,`tagId`), - KEY `url` (`url`), - KEY `assetId_status_tagId_revisionDate` (`assetId`,`status`,`tagId`,`revisionDate`), - KEY `assetId_status` (`assetId`,`status`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetHistory` ( - `assetId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `dateStamp` bigint(20) NOT NULL DEFAULT '0', - `actionTaken` char(255) NOT NULL, - `url` char(255) DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetIndex` ( - `assetId` char(22) binary NOT NULL, - `title` char(255) DEFAULT NULL, - `synopsis` text, - `url` char(255) DEFAULT NULL, - `creationDate` bigint(20) DEFAULT NULL, - `revisionDate` bigint(20) DEFAULT NULL, - `ownerUserId` char(22) binary DEFAULT NULL, - `groupIdView` char(22) binary DEFAULT NULL, - `groupIdEdit` char(22) binary DEFAULT NULL, - `className` char(255) DEFAULT NULL, - `isPublic` int(11) NOT NULL DEFAULT '1', - `keywords` mediumtext, - `lineage` char(255) DEFAULT NULL, - PRIMARY KEY (`assetId`), - FULLTEXT KEY `keywords` (`keywords`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetKeyword` ( - `keyword` char(64) NOT NULL, - `assetId` char(22) binary NOT NULL, - PRIMARY KEY (`keyword`,`assetId`), - KEY `keyword` (`keyword`), - KEY `assetId` (`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `assetVersionTag` ( - `tagId` char(22) binary NOT NULL, - `name` char(255) NOT NULL, - `isCommitted` int(11) NOT NULL DEFAULT '0', - `creationDate` bigint(20) NOT NULL DEFAULT '0', - `createdBy` char(22) binary NOT NULL, - `commitDate` bigint(20) NOT NULL DEFAULT '0', - `committedBy` char(22) binary NOT NULL, - `isLocked` int(11) NOT NULL DEFAULT '0', - `lockedBy` char(22) binary NOT NULL, - `groupToUse` char(22) binary NOT NULL, - `workflowId` char(22) binary NOT NULL, - `workflowInstanceId` char(22) binary DEFAULT NULL, - `comments` text, - `startTime` datetime DEFAULT NULL, - `endTime` datetime DEFAULT NULL, - `isSiteWide` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`tagId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `authentication` ( - `userId` char(22) binary NOT NULL, - `authMethod` char(30) NOT NULL, - `fieldName` char(128) NOT NULL, - `fieldData` text, - PRIMARY KEY (`userId`,`authMethod`,`fieldName`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `bucketLog` ( - `userId` char(22) binary NOT NULL, - `Bucket` char(22) binary NOT NULL, - `duration` int(11) DEFAULT NULL, - `timeStamp` datetime DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `cache` ( - `namespace` char(128) NOT NULL, - `cachekey` char(128) NOT NULL, - `expires` bigint(20) NOT NULL, - `size` int(11) NOT NULL, - `content` mediumblob, - PRIMARY KEY (`namespace`,`cachekey`), - KEY `namespace_cachekey_size` (`namespace`,`cachekey`,`expires`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `cart` ( - `cartId` char(22) binary NOT NULL, - `sessionId` char(22) binary NOT NULL, - `shippingAddressId` char(22) binary DEFAULT NULL, - `shipperId` char(22) binary DEFAULT NULL, - `posUserId` char(22) binary DEFAULT NULL, - `creationDate` int(20) DEFAULT NULL, - `billingAddressId` char(22) DEFAULT NULL, - `gatewayId` char(22) DEFAULT NULL, - PRIMARY KEY (`cartId`), - KEY `sessionId` (`sessionId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `cartItem` ( - `itemId` char(22) binary NOT NULL, - `cartId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `dateAdded` datetime NOT NULL, - `options` longtext, - `configuredTitle` char(255) DEFAULT NULL, - `shippingAddressId` char(22) binary DEFAULT NULL, - `quantity` int(11) NOT NULL DEFAULT '1', - PRIMARY KEY (`itemId`), - KEY `cartId_assetId_dateAdded` (`cartId`,`assetId`,`dateAdded`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `databaseLink` ( - `databaseLinkId` char(22) binary NOT NULL, - `title` char(255) DEFAULT NULL, - `DSN` char(255) DEFAULT NULL, - `username` char(255) DEFAULT NULL, - `identifier` char(255) DEFAULT NULL, - `allowedKeywords` text, - `allowMacroAccess` int(11) NOT NULL DEFAULT '0', - `additionalParameters` char(255) NOT NULL, - PRIMARY KEY (`databaseLinkId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `deltaLog` ( - `userId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `delta` int(11) DEFAULT NULL, - `timeStamp` bigint(20) DEFAULT NULL, - `url` char(255) NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `donation` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `defaultPrice` float NOT NULL DEFAULT '100', - `thankYouMessage` mediumtext, - `templateId` char(22) binary NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `filePumpBundle` ( - `bundleId` char(22) binary NOT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `dateCreated` datetime DEFAULT NULL, - `lastUpdated` datetime DEFAULT NULL, - `bundleName` char(255) NOT NULL DEFAULT 'New bundle', - `lastModified` bigint(20) NOT NULL DEFAULT '0', - `lastBuild` bigint(20) NOT NULL DEFAULT '0', - `jsFiles` longtext NOT NULL, - `cssFiles` longtext NOT NULL, - `otherFiles` longtext NOT NULL, - PRIMARY KEY (`bundleId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `friendInvitations` ( - `inviteId` char(22) binary NOT NULL, - `inviterId` char(22) binary NOT NULL, - `friendId` char(22) binary NOT NULL, - `dateSent` datetime NOT NULL, - `comments` char(255) NOT NULL, - `messageId` char(22) binary NOT NULL, - PRIMARY KEY (`inviteId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `groupGroupings` ( - `groupId` char(22) binary NOT NULL, - `inGroup` char(22) binary NOT NULL, - PRIMARY KEY (`groupId`,`inGroup`), - KEY `inGroup` (`inGroup`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `groupings` ( - `groupId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `expireDate` bigint(20) NOT NULL DEFAULT '2114402400', - `groupAdmin` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`groupId`,`userId`), - KEY `userId` (`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `groups` ( - `groupId` char(22) binary NOT NULL, - `groupName` char(100) DEFAULT NULL, - `description` char(255) DEFAULT NULL, - `expireOffset` int(11) NOT NULL DEFAULT '314496000', - `karmaThreshold` int(11) NOT NULL DEFAULT '1000000000', - `ipFilter` text, - `dateCreated` int(11) NOT NULL DEFAULT '997938000', - `lastUpdated` int(11) NOT NULL DEFAULT '997938000', - `deleteOffset` int(11) NOT NULL DEFAULT '14', - `expireNotifyOffset` int(11) NOT NULL DEFAULT '-14', - `expireNotifyMessage` text, - `expireNotify` int(11) NOT NULL DEFAULT '0', - `scratchFilter` text, - `autoAdd` int(11) NOT NULL DEFAULT '0', - `autoDelete` int(11) NOT NULL DEFAULT '0', - `databaseLinkId` char(22) binary NOT NULL, - `groupCacheTimeout` int(11) NOT NULL DEFAULT '3600', - `dbQuery` text, - `isEditable` int(11) NOT NULL DEFAULT '1', - `showInForms` int(11) NOT NULL DEFAULT '1', - `ldapGroup` char(255) DEFAULT NULL, - `ldapGroupProperty` char(255) DEFAULT NULL, - `ldapRecursiveProperty` char(255) DEFAULT NULL, - `ldapLinkId` char(22) binary DEFAULT NULL, - `ldapRecursiveFilter` mediumtext, - `isAdHocMailGroup` tinyint(4) NOT NULL DEFAULT '0', - PRIMARY KEY (`groupId`), - KEY `groupName` (`groupName`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `imageColor` ( - `colorId` char(22) binary NOT NULL, - `name` char(255) NOT NULL DEFAULT 'untitled', - `fillTriplet` char(7) NOT NULL DEFAULT '#000000', - `fillAlpha` char(2) NOT NULL DEFAULT '00', - `strokeTriplet` char(7) NOT NULL DEFAULT '#000000', - `strokeAlpha` char(2) NOT NULL DEFAULT '00', - PRIMARY KEY (`colorId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `imageFont` ( - `fontId` char(22) binary NOT NULL, - `name` char(255) DEFAULT NULL, - `storageId` char(22) binary DEFAULT NULL, - `filename` char(255) DEFAULT NULL, - PRIMARY KEY (`fontId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `imagePalette` ( - `paletteId` char(22) binary NOT NULL, - `name` char(255) NOT NULL DEFAULT 'untitled', - PRIMARY KEY (`paletteId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `imagePaletteColors` ( - `paletteId` char(22) binary NOT NULL, - `colorId` char(22) binary NOT NULL, - `paletteOrder` int(11) NOT NULL, - PRIMARY KEY (`paletteId`,`paletteOrder`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `inbox` ( - `messageId` char(22) binary NOT NULL, - `status` char(15) NOT NULL DEFAULT 'pending', - `dateStamp` bigint(20) NOT NULL, - `completedOn` bigint(20) DEFAULT NULL, - `completedBy` char(22) binary DEFAULT NULL, - `userId` char(22) binary DEFAULT NULL, - `groupId` char(22) binary DEFAULT NULL, - `subject` char(255) NOT NULL DEFAULT 'No Subject', - `message` mediumtext, - `sentBy` char(22) binary NOT NULL DEFAULT '3', - PRIMARY KEY (`messageId`), - KEY `completedOn_dateStamp` (`completedOn`,`dateStamp`), - KEY `pb_userId` (`userId`), - KEY `pb_groupId` (`groupId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `inbox_messageState` ( - `messageId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `isRead` tinyint(4) NOT NULL DEFAULT '0', - `repliedTo` tinyint(4) NOT NULL DEFAULT '0', - `deleted` tinyint(4) NOT NULL DEFAULT '0', - PRIMARY KEY (`messageId`,`userId`), - KEY `userId_deleted_isRead` (`userId`,`deleted`,`isRead`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `incrementer` ( - `incrementerId` char(50) NOT NULL, - `nextValue` int(11) NOT NULL DEFAULT '1', - PRIMARY KEY (`incrementerId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `karmaLog` ( - `userId` char(22) binary NOT NULL, - `amount` int(11) NOT NULL DEFAULT '1', - `source` char(255) DEFAULT NULL, - `description` text, - `dateModified` bigint(20) NOT NULL DEFAULT '0' -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `ldapLink` ( - `ldapLinkId` char(22) binary NOT NULL, - `ldapLinkName` char(255) NOT NULL, - `ldapUrl` char(255) NOT NULL, - `connectDn` char(255) NOT NULL, - `identifier` char(255) NOT NULL, - `ldapUserRDN` char(255) DEFAULT NULL, - `ldapIdentity` char(255) DEFAULT NULL, - `ldapIdentityName` char(255) DEFAULT NULL, - `ldapPasswordName` char(255) DEFAULT NULL, - `ldapSendWelcomeMessage` char(2) DEFAULT NULL, - `ldapWelcomeMessage` text, - `ldapAccountTemplate` char(22) binary NOT NULL, - `ldapCreateAccountTemplate` char(22) binary NOT NULL, - `ldapLoginTemplate` char(22) binary NOT NULL, - `ldapGlobalRecursiveFilter` mediumtext, - `ldapDeactivateAccountTemplate` char(22) NOT NULL, - PRIMARY KEY (`ldapLinkId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `mailQueue` ( - `messageId` char(22) binary NOT NULL, - `message` mediumtext, - `toGroup` char(22) binary DEFAULT NULL, - `isInbox` tinyint(4) DEFAULT '0', - PRIMARY KEY (`messageId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `metaData_properties` ( - `fieldId` char(22) binary NOT NULL, - `fieldName` char(100) NOT NULL, - `description` mediumtext NOT NULL, - `fieldType` char(30) DEFAULT NULL, - `possibleValues` text, - `defaultValue` char(255) DEFAULT NULL, - PRIMARY KEY (`fieldId`), - UNIQUE KEY `field_unique` (`fieldName`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `metaData_values` ( - `fieldId` char(22) binary NOT NULL, - `value` char(255) DEFAULT NULL, - `assetId` char(22) binary NOT NULL, - PRIMARY KEY (`fieldId`,`assetId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `passiveAnalyticsStatus` ( - `startDate` datetime DEFAULT NULL, - `endDate` datetime DEFAULT NULL, - `running` int(2) DEFAULT '0', - `userId` char(255) NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `passiveLog` ( - `userId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `sessionId` char(22) binary NOT NULL, - `timeStamp` bigint(20) DEFAULT NULL, - `url` char(255) NOT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `passiveProfileAOI` ( - `userId` char(22) binary NOT NULL, - `fieldId` char(22) binary NOT NULL, - `value` char(100) NOT NULL, - `count` int(11) DEFAULT NULL, - PRIMARY KEY (`userId`,`fieldId`,`value`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `passiveProfileLog` ( - `passiveProfileLogId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `sessionId` char(22) binary NOT NULL, - `assetId` char(22) binary NOT NULL, - `dateOfEntry` bigint(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`passiveProfileLogId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `paymentGateway` ( - `paymentGatewayId` char(22) binary NOT NULL, - `className` char(255) DEFAULT NULL, - `options` longtext, - PRIMARY KEY (`paymentGatewayId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `redirect` ( - `assetId` char(22) binary NOT NULL, - `redirectUrl` text, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `redirectType` int(11) NOT NULL DEFAULT '302', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `replacements` ( - `replacementId` char(22) binary NOT NULL, - `searchFor` char(255) DEFAULT NULL, - `replaceWith` text, - PRIMARY KEY (`replacementId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `search` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `classLimiter` text, - `searchRoot` char(22) binary NOT NULL DEFAULT 'PBasset000000000000001', - `templateId` char(22) binary NOT NULL DEFAULT 'PBtmpl0000000000000200', - `useContainers` int(11) NOT NULL DEFAULT '0', - `paginateAfter` int(11) NOT NULL DEFAULT '25', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `settings` ( - `name` char(255) NOT NULL, - `value` text, - PRIMARY KEY (`name`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `shipper` ( - `shipperId` char(22) binary NOT NULL, - `className` char(255) DEFAULT NULL, - `options` longtext, - PRIMARY KEY (`shipperId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `shopCredit` ( - `creditId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `amount` float NOT NULL DEFAULT '0', - `comment` text, - `dateOfAdjustment` datetime DEFAULT NULL, - PRIMARY KEY (`creditId`), - KEY `userId` (`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `sku` ( - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL, - `description` mediumtext, - `sku` char(35) NOT NULL, - `vendorId` char(22) binary NOT NULL DEFAULT 'defaultvendor000000000', - `displayTitle` tinyint(1) NOT NULL DEFAULT '1', - `overrideTaxRate` tinyint(1) NOT NULL DEFAULT '0', - `taxRateOverride` float NOT NULL DEFAULT '0', - `taxConfiguration` longtext, - `shipsSeparately` tinyint(1) NOT NULL, - PRIMARY KEY (`assetId`,`revisionDate`), - KEY `sku` (`sku`), - KEY `vendorId` (`vendorId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `snippet` ( - `assetId` char(22) binary NOT NULL, - `snippet` mediumtext, - `processAsTemplate` int(11) NOT NULL DEFAULT '0', - `mimeType` char(50) NOT NULL DEFAULT 'text/html', - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `cacheTimeout` int(11) NOT NULL DEFAULT '3600', - `snippetPacked` longtext, - `usePacked` int(1) DEFAULT NULL, - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `taxDriver` ( - `className` char(255) NOT NULL, - `options` longtext, - PRIMARY KEY (`className`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `tax_eu_vatNumbers` ( - `userId` char(22) binary NOT NULL, - `countryCode` char(3) NOT NULL, - `vatNumber` char(20) NOT NULL, - `viesValidated` tinyint(1) DEFAULT NULL, - `viesErrorCode` int(3) DEFAULT NULL, - `approved` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`userId`,`vatNumber`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `tax_generic_rates` ( - `taxId` char(22) binary NOT NULL, - `country` char(100) NOT NULL, - `state` char(100) DEFAULT NULL, - `city` char(100) DEFAULT NULL, - `code` char(100) DEFAULT NULL, - `taxRate` float NOT NULL DEFAULT '0', - PRIMARY KEY (`taxId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `template` ( - `template` mediumtext, - `namespace` char(35) NOT NULL DEFAULT 'Page', - `isEditable` int(11) NOT NULL DEFAULT '1', - `showInForms` int(11) NOT NULL DEFAULT '1', - `assetId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `parser` char(255) NOT NULL DEFAULT 'WebGUI::Asset::Template::HTMLTemplate', - `isDefault` int(1) DEFAULT '0', - `templatePacked` longtext, - `usePacked` int(1) DEFAULT NULL, - `storageIdExample` char(22) DEFAULT NULL, - `attachmentsJson` longtext, - PRIMARY KEY (`assetId`,`revisionDate`), - KEY `namespace_showInForms` (`namespace`,`showInForms`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `transaction` ( - `transactionId` char(22) binary NOT NULL, - `originatingTransactionId` char(22) binary DEFAULT NULL, - `isSuccessful` tinyint(1) NOT NULL DEFAULT '0', - `orderNumber` int(11) NOT NULL AUTO_INCREMENT, - `transactionCode` char(100) DEFAULT NULL, - `statusCode` char(35) DEFAULT NULL, - `statusMessage` char(255) DEFAULT NULL, - `userId` char(22) binary NOT NULL, - `username` char(35) NOT NULL, - `amount` float DEFAULT NULL, - `shopCreditDeduction` float DEFAULT NULL, - `shippingAddressId` char(22) binary DEFAULT NULL, - `shippingAddressName` char(35) DEFAULT NULL, - `shippingAddress1` char(35) DEFAULT NULL, - `shippingAddress2` char(35) DEFAULT NULL, - `shippingAddress3` char(35) DEFAULT NULL, - `shippingCity` char(35) DEFAULT NULL, - `shippingState` char(35) DEFAULT NULL, - `shippingCountry` char(35) DEFAULT NULL, - `shippingCode` char(35) DEFAULT NULL, - `shippingPhoneNumber` char(35) DEFAULT NULL, - `shippingDriverId` char(22) binary DEFAULT NULL, - `shippingDriverLabel` char(35) DEFAULT NULL, - `shippingPrice` float DEFAULT NULL, - `paymentAddressId` char(22) binary DEFAULT NULL, - `paymentAddressName` char(35) DEFAULT NULL, - `paymentAddress1` char(35) DEFAULT NULL, - `paymentAddress2` char(35) DEFAULT NULL, - `paymentAddress3` char(35) DEFAULT NULL, - `paymentCity` char(35) DEFAULT NULL, - `paymentState` char(35) DEFAULT NULL, - `paymentCountry` char(35) DEFAULT NULL, - `paymentCode` char(35) DEFAULT NULL, - `paymentPhoneNumber` char(35) DEFAULT NULL, - `paymentDriverId` char(22) binary DEFAULT NULL, - `paymentDriverLabel` char(35) DEFAULT NULL, - `taxes` float DEFAULT NULL, - `dateOfPurchase` datetime DEFAULT NULL, - `isRecurring` tinyint(1) DEFAULT NULL, - `notes` mediumtext, - `cashierUserId` char(22) binary DEFAULT NULL, - PRIMARY KEY (`transactionId`), - UNIQUE KEY `orderNumber` (`orderNumber`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `transactionItem` ( - `itemId` char(22) binary NOT NULL, - `transactionId` char(22) binary NOT NULL, - `assetId` char(22) binary DEFAULT NULL, - `configuredTitle` char(255) DEFAULT NULL, - `options` longtext, - `shippingAddressId` char(22) binary DEFAULT NULL, - `shippingName` char(35) DEFAULT NULL, - `shippingAddress1` char(35) DEFAULT NULL, - `shippingAddress2` char(35) DEFAULT NULL, - `shippingAddress3` char(35) DEFAULT NULL, - `shippingCity` char(35) DEFAULT NULL, - `shippingState` char(35) DEFAULT NULL, - `shippingCountry` char(35) DEFAULT NULL, - `shippingCode` char(35) DEFAULT NULL, - `shippingPhoneNumber` char(35) DEFAULT NULL, - `shippingTrackingNumber` char(255) DEFAULT NULL, - `orderStatus` char(35) NOT NULL DEFAULT 'NotShipped', - `lastUpdated` datetime DEFAULT NULL, - `quantity` int(11) NOT NULL DEFAULT '1', - `price` float DEFAULT NULL, - `vendorId` char(22) binary NOT NULL DEFAULT 'defaultvendor000000000', - `vendorPayoutStatus` char(10) DEFAULT 'NotPaid', - `vendorPayoutAmount` decimal(8,2) DEFAULT '0.00', - `taxRate` decimal(6,3) DEFAULT NULL, - `taxConfiguration` longtext, - PRIMARY KEY (`itemId`), - KEY `transactionId` (`transactionId`), - KEY `vendorId` (`vendorId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userInvitations` ( - `inviteId` char(22) binary NOT NULL, - `userId` char(22) binary NOT NULL, - `dateSent` date DEFAULT NULL, - `email` char(255) NOT NULL, - `newUserId` char(22) binary DEFAULT NULL, - `dateCreated` date DEFAULT NULL, - PRIMARY KEY (`inviteId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userLoginLog` ( - `userId` char(22) binary NOT NULL, - `status` char(30) DEFAULT NULL, - `timeStamp` int(11) DEFAULT NULL, - `ipAddress` char(128) DEFAULT NULL, - `userAgent` text, - `sessionId` char(22) binary DEFAULT NULL, - `lastPageViewed` int(11) DEFAULT NULL, - KEY `sessionId` (`sessionId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userProfileCategory` ( - `profileCategoryId` char(22) binary NOT NULL, - `label` char(255) NOT NULL DEFAULT 'Undefined', - `shortLabel` char(255) DEFAULT NULL, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `visible` int(11) NOT NULL DEFAULT '1', - `editable` int(11) NOT NULL DEFAULT '1', - `protected` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`profileCategoryId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userProfileData` ( - `userId` char(22) binary NOT NULL, - `email` char(255) DEFAULT NULL, - `firstName` char(255) DEFAULT NULL, - `middleName` char(255) DEFAULT NULL, - `lastName` char(255) DEFAULT NULL, - `icq` char(255) DEFAULT NULL, - `aim` char(255) DEFAULT NULL, - `msnIM` char(255) DEFAULT NULL, - `yahooIM` char(255) DEFAULT NULL, - `cellPhone` char(255) DEFAULT NULL, - `pager` char(255) DEFAULT NULL, - `emailToPager` char(255) DEFAULT NULL, - `language` char(255) DEFAULT NULL, - `homeAddress` char(255) DEFAULT NULL, - `homeCity` char(255) DEFAULT NULL, - `homeState` char(255) DEFAULT NULL, - `homeZip` char(255) DEFAULT NULL, - `homeCountry` char(255) DEFAULT NULL, - `homePhone` char(255) DEFAULT NULL, - `workAddress` char(255) DEFAULT NULL, - `workCity` char(255) DEFAULT NULL, - `workState` char(255) DEFAULT NULL, - `workZip` char(255) DEFAULT NULL, - `workCountry` char(255) DEFAULT NULL, - `workPhone` char(255) DEFAULT NULL, - `gender` char(255) DEFAULT NULL, - `birthdate` bigint(20) DEFAULT NULL, - `homeURL` char(255) DEFAULT NULL, - `workURL` char(255) DEFAULT NULL, - `workName` char(255) DEFAULT NULL, - `timeZone` char(255) DEFAULT NULL, - `dateFormat` char(255) DEFAULT NULL, - `timeFormat` char(255) DEFAULT NULL, - `discussionLayout` char(255) DEFAULT NULL, - `firstDayOfWeek` char(255) DEFAULT NULL, - `uiLevel` char(255) DEFAULT NULL, - `alias` char(255) DEFAULT NULL, - `signature` longtext, - `publicProfile` longtext, - `toolbar` char(255) DEFAULT NULL, - `photo` char(22) binary DEFAULT NULL, - `avatar` char(22) binary DEFAULT NULL, - `department` char(255) DEFAULT NULL, - `allowPrivateMessages` longtext, - `ableToBeFriend` tinyint(4) DEFAULT NULL, - `showMessageOnLoginSeen` bigint(20) DEFAULT NULL, - `showOnline` tinyint(1) DEFAULT NULL, - `versionTagMode` char(255) DEFAULT NULL, - `wg_privacySettings` longtext, - `receiveInboxEmailNotifications` tinyint(1) DEFAULT NULL, - `receiveInboxSmsNotifications` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userProfileField` ( - `fieldName` char(128) NOT NULL, - `label` char(255) NOT NULL DEFAULT 'Undefined', - `visible` int(11) NOT NULL DEFAULT '0', - `required` int(11) NOT NULL DEFAULT '0', - `fieldType` char(128) NOT NULL DEFAULT 'text', - `possibleValues` text, - `dataDefault` text, - `sequenceNumber` int(11) NOT NULL DEFAULT '1', - `profileCategoryId` char(22) binary NOT NULL, - `protected` int(11) NOT NULL DEFAULT '0', - `editable` int(11) NOT NULL DEFAULT '1', - `forceImageOnly` int(11) DEFAULT '1', - `showAtRegistration` int(11) NOT NULL DEFAULT '0', - `requiredForPasswordRecovery` int(11) NOT NULL DEFAULT '0', - `extras` text, - `defaultPrivacySetting` char(128) DEFAULT NULL, - PRIMARY KEY (`fieldName`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userSession` ( - `sessionId` char(22) binary NOT NULL, - `expires` int(11) DEFAULT NULL, - `lastPageView` int(11) DEFAULT NULL, - `adminOn` int(11) NOT NULL DEFAULT '0', - `lastIP` char(50) DEFAULT NULL, - `userId` char(22) binary NOT NULL, - PRIMARY KEY (`sessionId`), - KEY `expires` (`expires`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `userSessionScratch` ( - `sessionId` char(22) binary NOT NULL, - `name` char(255) NOT NULL, - `value` text, - PRIMARY KEY (`sessionId`,`name`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `users` ( - `userId` char(22) binary NOT NULL, - `username` char(100) DEFAULT NULL, - `authMethod` char(30) NOT NULL DEFAULT 'WebGUI', - `dateCreated` int(11) NOT NULL DEFAULT '1019867418', - `lastUpdated` int(11) NOT NULL DEFAULT '1019867418', - `karma` int(11) NOT NULL DEFAULT '0', - `status` char(35) NOT NULL DEFAULT 'Active', - `referringAffiliate` char(22) binary NOT NULL, - `friendsGroup` char(22) binary NOT NULL, - PRIMARY KEY (`userId`), - UNIQUE KEY `username_unique` (`username`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `vendor` ( - `vendorId` char(22) binary NOT NULL, - `dateCreated` datetime DEFAULT NULL, - `name` char(255) DEFAULT NULL, - `userId` char(22) binary NOT NULL DEFAULT '3', - `preferredPaymentType` char(255) DEFAULT NULL, - `paymentInformation` text, - `paymentAddressId` char(22) binary DEFAULT NULL, - `url` text, - PRIMARY KEY (`vendorId`), - KEY `userId` (`userId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `vendorPayoutLog` ( - `payoutId` char(22) binary NOT NULL, - `isSuccessful` tinyint(1) NOT NULL, - `errorCode` char(10) DEFAULT NULL, - `errorMessage` char(255) DEFAULT NULL, - `paypalTimestamp` char(20) NOT NULL, - `amount` decimal(7,2) NOT NULL, - `currency` char(3) NOT NULL, - `correlationId` char(13) NOT NULL, - `paymentInformation` char(255) NOT NULL, - PRIMARY KEY (`payoutId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `vendorPayoutLog_items` ( - `payoutId` char(22) binary NOT NULL, - `transactionItemId` char(22) binary NOT NULL, - `amount` decimal(7,2) NOT NULL, - PRIMARY KEY (`payoutId`,`transactionItemId`) -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `webguiVersion` ( - `webguiVersion` char(10) DEFAULT NULL, - `versionType` char(30) DEFAULT NULL, - `dateApplied` int(11) DEFAULT NULL -) TYPE=MyISAM CHARSET=utf8; -CREATE TABLE `wobject` ( - `displayTitle` int(11) NOT NULL DEFAULT '1', - `description` mediumtext, - `assetId` char(22) binary NOT NULL, - `styleTemplateId` char(22) binary NOT NULL, - `printableStyleTemplateId` char(22) binary NOT NULL, - `revisionDate` bigint(20) NOT NULL DEFAULT '0', - `mobileStyleTemplateId` char(22) binary DEFAULT 'PBtmpl0000000000000060', - PRIMARY KEY (`assetId`,`revisionDate`) -) TYPE=MyISAM CHARSET=utf8; -ALTER TABLE `Article` DISABLE KEYS; -INSERT INTO `Article` VALUES (NULL,NULL,'NK8bqlwVRILJknqeCDPBHg','PBtmpl0000000000000002',1147642515,3600,'0jTuDoyTcQK6ju8cs8a4ew'),(NULL,NULL,'bX5rYxb6tZ9docY6sUhBlw','PBtmpl0000000000000002',1147642514,3600,'r3QdZwvuVK9o9kLb7mpHGQ'),(NULL,NULL,'OhdaFLE7sXOzo_SIP2ZUgA','PBtmpl0000000000000002',1147642513,3600,'GY5wyiuNmZZyLdgFt3zluQ'),(NULL,NULL,'IWFxZDyGhQ3-SLZhELa3qw','PBtmpl0000000000000002',1147642514,3600,'BS9OtDY_8oUnmzStD-wPmg'),(NULL,NULL,'6QuS-0rosuZTdTv11fobig','PBtmpl0000000000000002',1147642515,3600,'qDIYM6Jcmkk_LmWZIqqJ7w'),(NULL,NULL,'ix1p0AbwKAz8QWB-T-HHfg','PBtmpl0000000000000002',1147642516,3600,'gU8kZk0nV6SqcwKqSiojQQ'),(NULL,NULL,'4Yfz9hqBqM8OYMGuQK8oLw','PBtmpl0000000000000002',1147642516,3600,'x4_4U_yb-MAGELG0jxAqpQ'),(NULL,NULL,'LBuiKzg2mWwmOPS9AgV3bg','PBtmpl0000000000000002',1147642517,3600,'UYaT3bhIk9HXmX1io5MdlQ'),(NULL,NULL,'jTNggl7AoVSUc_ZzrvuCmw','PBtmpl0000000000000002',1147642517,3600,'NWhmkoojuu9dA4_zv3a4pg'),(NULL,'http://','j_1qEqM6iLfQLiR6VKy0aA','PBtmpl0000000000000002',1215718151,3600,'2k_h890E0bVoT1Jq6s-Edg'),(NULL,'http://','diZvW4bSgZWwyyGP3qXi1g','PBtmpl0000000000000002',1215717972,3600,'kjLi5s-xRSCL63HfE8ArtA'),(NULL,NULL,'FOvmwGC0GtZo5VTxJIL3OA','PBtmpl0000000000000103',1247779862,3600,'EBxIv4lhFPtYw-pPtiBqmg'),(NULL,NULL,'Wl8WZ43g2rK5AYr9o4zY7w','PBtmpl0000000000000103',1247779880,3600,'x1ypCI9yBd2SYyeWNWGiag'),(NULL,NULL,'iCYOjohB9SKvAPr6bXElKA','PBtmpl0000000000000103',1247779898,3600,'TlE3LEEoLsOLiuTpAnxxUw'); -ALTER TABLE `Article` ENABLE KEYS; -ALTER TABLE `Collaboration` DISABLE KEYS; -INSERT INTO `Collaboration` VALUES ('pbproto000000000000002','2','2',0,'PBtmpl0000000000000208','PBtmpl0000000000000209','PBtmpl0000000000000210','','','assetData.revisionDate','desc',0,0,3600,10,'javascript',1,0,0,0,0,NULL,NULL,2592000,10,30,NULL,1,0,'PBrichedit000000000002',0,0,1163019036,0,'pbworkflow000000000003','pbworkflow000000000003',100,NULL,NULL,NULL,NULL,NULL,0,300,'NpRVTSR-NX2sD52LUc520A',3600,1,1,0,0,0,0,'12',1,'default_post_received1','PBrichedit000000000002','javascript','default_CS_unsubscribe'); -ALTER TABLE `Collaboration` ENABLE KEYS; -ALTER TABLE `DataForm` DISABLE KEYS; -INSERT INTO `DataForm` VALUES ('Thank you for telling your friends about WebGUI!',1,'PBtmpl0000000000000085','PBtmpl0000000000000104','PBtmpl0000000000000021','Szs5eev3OMssmnsyLRZmWA','PBtmpl0000000000000020',0,1213317790,'7',0,0,1,'[{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"from\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"to\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Your Friends Email Address\",\"type\":\"Email\",\"defaultValue\":\"\"},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"cc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Cc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":null,\"status\":\"hidden\",\"tabId\":null,\"name\":\"bcc\",\"rows\":null,\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":null,\"label\":\"Bcc\",\"type\":\"Email\",\"defaultValue\":null},{\"width\":\"0\",\"options\":\"\",\"status\":\"hidden\",\"tabId\":null,\"name\":\"subject\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"Subject\",\"type\":\"Text\",\"defaultValue\":\"Cool CMS\"},{\"width\":\"0\",\"options\":\"\",\"status\":\"visible\",\"tabId\":null,\"name\":\"url\",\"rows\":\"0\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"1\",\"subtext\":\"\",\"label\":\"URL\",\"type\":\"Url\",\"defaultValue\":\"http://www.webgui.org\"},{\"width\":\"300\",\"options\":\"\",\"status\":\"required\",\"tabId\":null,\"name\":\"message\",\"rows\":\"100\",\"extras\":null,\"vertical\":\"1\",\"isMailField\":\"0\",\"subtext\":\"\",\"label\":\"Message\",\"type\":\"Textarea\",\"defaultValue\":\"Hey I just wanted to tell you about this great program called WebGUI that I found: http://www.webgui.org\\r\\n\\r\\nYou should really check it out.\"}]','[]',NULL,'**Use_Default_Editor**'); -ALTER TABLE `DataForm` ENABLE KEYS; -ALTER TABLE `FileAsset` DISABLE KEYS; -INSERT INTO `FileAsset` VALUES ('7-0-style0000000000002','_Vo1Pvl3sPPANyxz-IcCtA','body_bg.jpg','PBtmpl0000000000000088',1147642492,3600),('7-0-style0000000000004','Gemp7cEVjh2_M2IicUYs-g','gui_bottom.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000005','ry-yzLVH-vxn71H9byjGXA','header.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000006','VEPa65fhY3dok6vj-beFCA','main_bg.gif','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000007','Cfay1MNkC-73WKJ7fX_pVw','main_bg.jpg','PBtmpl0000000000000088',1147642493,3600),('7-0-style0000000000008','iEBE--vQb_lxuZd5AP8tuw','nav1_center_on.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000009','XR1Yjf3MkYA53TJlcpRBsw','nav1_off.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000010','sxvAS8na-QAdY_eycd2gKw','nav1_off_center.jpg','PBtmpl0000000000000088',1147642494,3600),('7-0-style0000000000011','2lhmrXW46ZMLvpbaaX2g7Q','nav1_off_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000012','sEoRwhmonl877RBgx2nE1w','nav1_off_right.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000013','AoSfRkPI3fl7vAooT4Fj_A','nav1_on.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000014','MgNDJRsghd_zQZ292hqVMQ','nav1_on_left.jpg','PBtmpl0000000000000088',1147642495,3600),('7-0-style0000000000015','aUG1FZaIqHaQHlieZ4_Mkg','nav1_on_right.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000016','HyhLnkaJMfr8eJsLIX8XeA','nav2_center_on.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000017','aledEnWoD-JVNURWSklfdg','nav2_off_center.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000018','Ffd33PToWon9X7mcKZqUAQ','nav2_off_left.jpg','PBtmpl0000000000000088',1147642496,3600),('7-0-style0000000000019','B3TTkcOlr-VzcxRwQXZmyg','nav2_off_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000020','RxGSyn-8W4p64SQ-NYzNOg','nav2_on_left.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000021','NciEByP8ssN6qDYyKcoGWw','nav2_on_right.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000022','9OVg_Nxo0gha5pWZsS_dmw','nav_bg.jpg','PBtmpl0000000000000088',1147642497,3600),('7-0-style0000000000023','VKtJGCmBtsMj8ZeAJ6ePNw','nav_on.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000024','ryQb0A4YeEwYZo9hdgrCcw','orange_left01.jpg','PBtmpl0000000000000088',1147642498,3600),('7-0-style0000000000030','coew3C1i9AORof9ezjWLDg','webgui_btn.jpg','PBtmpl0000000000000088',1147642499,3600),('7-0-style0000000000032','HEySmh0CRxpkI-tjzgkDDw','context_bg.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000034','HPn3mVDaMkn8Iu0GAq7cAw','leftCol_header.jpg','PBtmpl0000000000000088',1147642500,3600),('7-0-style0000000000035','IqaSdxJqqN_8C-7OWeyE2g','leftCol_header02.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000036','M0cIcS1GDFIV8lwAw3U2hA','main_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000037','77rakTqCXGBihEOXoh4ZXQ','nav_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000038','5najYvfJiZBBaiCVxaNkcQ','navbar_bg.jpg','PBtmpl0000000000000088',1147642501,3600),('7-0-style0000000000039','27XAOBKNfJ2euexImD73Aw','navbar_left.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000040','sgd1YdmVKj-n6IyIWJicXg','navbar_right.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000041','i1oJph6lb3hxEsTNu_3Y7g','page_title.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000042','qMwO_tp9KOya_N-kyIHDJQ','page_title_bg.jpg','PBtmpl0000000000000088',1147642502,3600),('7-0-style0000000000043','l5hF84u5R9MoqMvS9gpp6g','pb.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000044','Eh4IRmClOEzDAU1IVn5vHQ','pb_wg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000045','e8yirsGt9FZEgzfeHLgRiw','pb_wg_bg.jpg','PBtmpl0000000000000088',1147642503,3600),('7-0-style0000000000046','hDmN6gu1w_jtrcxgTRN5OQ','rightCol_bg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000048','_QhSdbnBeA1zio6iAuGIag','wg.jpg','PBtmpl0000000000000088',1147642504,3600),('7-0-style0000000000052','VRqMCZ_-GgaJiDeOrnwlQg','footer_bg.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000053','baxoDEB4C8eLjZbnENMs9w','footer_right.jpg','PBtmpl0000000000000088',1147642505,3600),('7-0-style0000000000054','FlivcrAW0pKW4q_2fvlVpw','header_bg.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000055','5hgdAMRWeSmHDrRFM_qbBw','header_left.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000056','lV6l3Sctxx8J1JmYlXwSDA','header_right.jpg','PBtmpl0000000000000088',1147642506,3600),('7-0-style0000000000057','FKGH2yiNQoC2E_FqbMYebw','main_bg.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000058','UGtgwjDaqCtCPnEkuLPtIw','main_bottom.jpg','PBtmpl0000000000000088',1147642507,3600),('7-0-style0000000000060','XsuCCMz5vyyfC8Xr89pb1Q','main_top_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000061','is_6p2ROuy6AhCR1eJ8SdQ','nav_bg.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000062','3rpFbJWSV14AWeDZqqPSSw','nav_bg1.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000063','NcTFm_t9rn63ejwtBQnDQw','nav_bg1_on.jpg','PBtmpl0000000000000088',1147642508,3600),('7-0-style0000000000064','XLKBWi6Asbz5CtZdnwzZmg','nav_bg2.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000065','02cdKPH5-SyFEb_Zo_WL8A','nav_bg2_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000066','0QQpTB8bi6JZvFrW74SOWg','nav_bg_on.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000067','DdhQHfqGq-yC1ukTdlqoEg','pb.jpg','PBtmpl0000000000000088',1147642509,3600),('7-0-style0000000000068','Y4AWquISZVLcwVQLzd_u7w','spacer.gif','PBtmpl0000000000000088',1147642510,3600),('7-0-style0000000000071','mJOrQFemh2R3xn2HYviQlQ','wg.jpg','PBtmpl0000000000000088',1147642511,3600),('m4YJFaqzultnB_sj1Uq0aw','JX9y6tHiSaAv3-Jq6QXHGw','advert01.swf','pbtmpl0000000000000220',1147642514,3600),('Vzv1pWpg_w6R_o-b0rM2qQ','PMKX5QYkNFvrCD15QVo8Tg','Tutorial.swf','pbtmpl0000000000000221',1147642515,3600),('_bZJ9LA_KNekZiFPaP2SeQ','RwcPC6VO-WH3HPaMNxQdxQ','shelf-titles.jpg','PBtmpl0000000000000088',1210777868,0),('hQ7z33_jOYkQ8WNX5xy9Sw','HCc0_yDJrhZIoKV__wiUDw','style-button.gif','PBtmpl0000000000000088',1209509455,0),('vWW_DcHiYSrKZOkkIfEfcQ','t_FrH8_ktSJtHQGQLDeudA','row-2.jpg','PBtmpl0000000000000088',1209509433,0),('_bPYzRA87NTAUIKlfrJMHg','EgZoQgSAhCrNP3sXjRDPkw','row-1.jpg','PBtmpl0000000000000088',1209509433,0),('nJjZHRwdDs5MAZYsAyioHw','edb4FERsJ0pU0mmnfsiCig','title-bg.jpg','PBtmpl0000000000000088',1209509433,0),('8hxfkrJPeFVRWF5piCNJ1A','hRM4w6S2cqFdDRPcUP6FIg','field-bg.jpg','PBtmpl0000000000000088',1209509433,0),('Osx7WN52iIKHZFT4vqUBHQ','Wa42mXdBWCT9B9kgqzh9CQ','search-btn.gif','PBtmpl0000000000000088',1209509433,0),('oWff8fGzRdHPyq5VNREe9Q','j-AYUZHpCRd0yYH2Youp4A','top-bg.jpg','PBtmpl0000000000000088',1209509433,0),('uqbkvb1b9443VvfkyRz95w','JXBzB0XDxTHC_KRk0jROGQ','save-button.gif','PBtmpl0000000000000088',1209509433,0),('8YiMkcz32xalkAn3WBLpag','3lttrXIB4qCFnsKxFTJoKw','go-btn.gif','PBtmpl0000000000000088',1210181860,0),('7-0-style0000000000059','QOhEl8bdecbSrml06V84iw','main_top.jpg','PBtmpl0000000000000088',1213386091,0),('o_pq_e4vRyhMOKFzs61eag','zTRhj1ZmjPc6b4ytLNIdLg','book-covers.jpg','PBtmpl0000000000000088',1215714957,0),('hBpisL-_URyZnh9clR5ohA','IYUoN4EWQWHZHQj-f5ex0g','no_photo.gif','PBtmpl0000000000000088',1227634417,0),('FOBV6KkifreXa4GmEAUU4A','69Zh__B-EI01IWjf9KBDrw','no_photo_sm.gif','PBtmpl0000000000000088',1227634447,0),('2q5fxatSFLgIhXaUX-oSvg','3nX9gt95hqCuoqRkVplmnA','bottom-left.jpg','PBtmpl0000000000000088',1273032714,0),('_d5WTkKjnwct-_Dk7gZHvQ','mVvK6JciGgXcWFfsapp3kA','bottom-right.jpg','PBtmpl0000000000000088',1273032714,0),('Iz2mUR3jCPKyemwAea4b2g','8BsPHk51XtVHSKZuVJSImA','input_bg.jpg','PBtmpl0000000000000088',1273032714,0),('JU9bjsLRoWj7GVHs__prig','VmCoI19xMRxJ7tvy5xByyQ','top-left.jpg','PBtmpl0000000000000088',1273032714,0),('noOlnjQGexHg8c4bGVUo9g','a8vGB8tP0tBUGY0gyxsrXw','top-right.jpg','PBtmpl0000000000000088',1273032714,0),('-0sK2rX1cwQt1ipUSqsiQQ','CamwRtlyRX-5BNkSNzDPIw','bg.gif','PBtmpl0000000000000088',1273032716,0),('hS_eOaVz9Qb5ixndK9EXAw','o7fDCt5nLymcuiTf2YCFSw','header.jpg','PBtmpl0000000000000088',1273032716,0),('k2p-Be8C98pf2cRq7E-JHg','67nNZ2B0A4lRzoqadwMgLQ','tab_link.gif','PBtmpl0000000000000088',1273032716,0),('aYG4fjbMPbC4LCuuMp4gGA','6spEu4jqWCkdMdyhArfS9A','tab_hover.gif','PBtmpl0000000000000088',1273032716,0),('F122Ey0NtVAw6Lfv1M6G_Q','jUsYsBXtuLJa8Onpi5HU3g','ico_archive.gif','PBtmpl0000000000000088',1273032716,0),('qmXHKrQ6EDLSOGkrEKRUDA','75kfvWZUedWHNdLfM-AtkQ','bg_page_in.jpg','PBtmpl0000000000000088',1273032716,0),('4qZgXjPPO4fwV879yu5XUg','ih2o91dTNCVJlenr9stdbw','bg_page.JPG','PBtmpl0000000000000088',1273032716,0),('mb-xeAugm5GJdvu-Wh0MtQ','8VCgTKlQwVGFKufySjaHNA','search_submit.gif','PBtmpl0000000000000088',1273032717,0),('84Y9CwgzP6eNU7wZnk019Q','QxrDfsAi4k7N-dH6_6Ha9A','ico_date.gif','PBtmpl0000000000000088',1273032717,0),('ikXTtJKZfHVxqw-47E4AQA','83muqXYuxwND5hFjjp-w6Q','ico_user.gif','PBtmpl0000000000000088',1273032717,0),('DhRWPTgzhvju_-TbMN3CwA','BxVwfcPeSjMPqBNal_E2QA','ico_comments.gif','PBtmpl0000000000000088',1273032717,0),('6njI-pZz2bwsjWh-Q1_11g','OFFn_bjzx1DJfXFo1OF1vw','ico_list.gif','PBtmpl0000000000000088',1273032717,0),('_Hz1Gnd3yEnJzVS7l7nJMQ','OYL4yTE8m7-C4dpnmcPtzw','content_all_bg.PNG','PBtmpl0000000000000088',1273032717,0),('VOOrXK5dFnkGih7aTkuDWA','Oung_80DQKn8roLpf_gczQ','search.PNG','PBtmpl0000000000000088',1273032717,0),('ruf-QejOkUHDRtfgakHlbA','k4TQ8lQX80BRB6DByAeOqw','col_title_bg_long.GIF','PBtmpl0000000000000088',1273032717,0),('FSHy5KjQjkt599PHS41seA','ttpOQyYPTtrc40m_3XD3qA','footer.jpg','PBtmpl0000000000000088',1273032717,0),('nuYYXAz4KNNxgfumfnpo_g','JQ6tIpLMOEeT-B3qgIO1tA','ico_top.gif','PBtmpl0000000000000088',1273032718,0),('Mr7ljjoy6n4fZojpQWajKQ','VtEeuhaJ9WqtHzKKiSapNQ','ico_links.gif','PBtmpl0000000000000088',1273032718,0),('ApkqpDOrJDxK3QrWBGSRIg','-pr99yzoIq1OWGE4nEc2AQ','ico_archive2.gif','PBtmpl0000000000000088',1273032718,0),('AzzTY0Lay1f_YGeQJFnQCA','YRAPgXl7Y0gbSKCiLnHetA','ico_list.gif','PBtmpl0000000000000088',1273032718,0),('A_5LVQQWR73QZR8FFbny_w','EhTwB4FAnLZPn-ftde39aA','bg.gif','PBtmpl0000000000000088',1273032719,0),('wywIfa_VuTsq0c5Ed-W-MA','vRNJdIZnq7p-HiE0L0xtng','bullet.gif','PBtmpl0000000000000088',1273032719,0),('xmykMFjri1O2NrYHbeToVQ','hDLGlqQr30t4eSzkVsZ70Q','footerbg.gif','PBtmpl0000000000000088',1273032719,0),('0IIGNBs_-INzqBC5VLeJgw','sw1Dzrtgwh_J65h1JjKFxg','headerbg.gif','PBtmpl0000000000000088',1273032719,0),('FXmePdyS0YKuZ1VCGGpK9w','sEZViIdlwRyLYlYYJBl1zg','quote.gif','PBtmpl0000000000000088',1273032719,0),('66qCywiE_fiL9u5YIaJhgw','3f4UAvd-KAnsR7w3BzXrRA','tableft.gif','PBtmpl0000000000000088',1273032719,0),('n5VpG4lFsOG1elaWDQbilw','h3rSYSpA57LA3YOGXyoXxg','tabright.gif','PBtmpl0000000000000088',1273032719,0),('pAXR7Kby4O-dSxOwLp1GaA','XEJSXwP-3ewf3RWNpYplUQ','top_mod.png','PBtmpl0000000000000088',1273032721,0),('TthzMLO4n3qxy59QZ5YBHg','pnAHCnmSYdV5oNTM0M9Dcw','menu_bg_dark.png','PBtmpl0000000000000088',1273032721,0),('3n31SQjYa150TBrRBgMPhA','Zh3MnwG0dPeCCjdj4DI2-g','menu_bg_light.png','PBtmpl0000000000000088',1273032721,0),('R4RxDufGbbIzEmpcoEcLrw','pxzCDlZfytwlzey0dPM1yg','logo_full.jpg','PBtmpl0000000000000088',1273032721,0),('bANo8aiAPA7aY_oQZKxIWw','K1k1jOghj7mC8yGxfLmdNg','rss.gif','PBtmpl0000000000000088',1277868924,0),('2ci_v2d4x4uvyjTRlC49OA','VRvq3d8vwOD9wkSSrR0m4w','moveDown.gif','PBtmpl0000000000000088',1277868924,0),('O-EsSzKgAk1KolFT-x_KsA','Lozrw1fcpZroPJniVv3ULQ','moveUp.gif','PBtmpl0000000000000088',1277868924,0),('fdd8tGExyVwHyrB8RBbKXg','w6_hxfQ5A2PDxfWwFpOgXA','next.gif','PBtmpl0000000000000088',1277868924,0),('BpisgHl4ZDcSECJp6oib1w','LMDdjFUuxiFzfWpFUQhDXw','play.gif','PBtmpl0000000000000088',1277868924,0),('zshreRgPAXtnF0DtVbQ1Yg','2l2kjT4E59RD0GzOns4KoQ','previous.gif','PBtmpl0000000000000088',1277868924,0),('POVcY79vIqAHR8OfGt36aw','BR4EvQlIQ7D4Dy0lvOGkvg','pagination_button.jpg','PBtmpl0000000000000088',1277868924,0),('hIB-z34r8Xl-vYVYCkKr-w','hm_JjFaE-aIxgoQSAu7WAg','bar-btn-r.jpg','PBtmpl0000000000000088',1277868924,0),('-mPUoFlYcjqjPUPRLAlxNQ','Cto89w4CnsbFUMmaqsuwiw','search-field-r.jpg','PBtmpl0000000000000088',1277868924,0),('MDpUOR-N8KMyt1J7Hh_h4w','WMTeg4mulHLMhaeJqX65rQ','bar-btn.jpg','PBtmpl0000000000000088',1277868925,0),('YfXKByTwDZVituMc4h13Dg','Nc6a164h5vuFJtNll4qbdQ','pagination_bg.jpg','PBtmpl0000000000000088',1277868925,0),('esko_HSU0Gh-uJZ1h3xRmQ','15zUVhJuV0LJOisJp_kcFQ','search-field-l.jpg','PBtmpl0000000000000088',1277868925,0),('oSqpGswzpBG_ErdfYwIO8A','2yAlHC7OOQo4EfgptLku5Q','top_bg.jpg','PBtmpl0000000000000088',1277868925,0),('MXJklShZvLLB_DSnZQmXrQ','-CJib7Ukd7NukJIjHoBmrw','title_bg.jpg','PBtmpl0000000000000088',1277868925,0),('BthxD5oJ0idmsyI3ioA2FA','ZVuDsf6_nLCFEmXEbJ5V1g','bar-btn-l.jpg','PBtmpl0000000000000088',1277868925,0),('aZ-1HYQamkRHYXvzAra8WQ','BC-p2BPTiNvC0RiBdP__Bg','search-field.jpg','PBtmpl0000000000000088',1277868925,0),('eRkb94OYcS5AdcrrerOP5Q','l8RkDE5polGsIUPeYvaBOw','rss.gif','PBtmpl0000000000000088',1277868925,0),('TbnkjAJQEASORXIpYqDkcA','qbZEzDnuR_7NYQbUDpWTXw','blank-image.jpg','PBtmpl0000000000000088',1277868925,0),('er-3faBjY-hhlDcc5aKqdQ','k_KzdoDNYan2LFZwKftc4A','top_bg.jpg','PBtmpl0000000000000088',1277868925,0),('8bFsu2FJUqHRUiHcozcVFw','hWtmOfBz54M-zDk4gZSPXg','sub-btn-l.jpg','PBtmpl0000000000000088',1277868925,0),('34Aayx5eA320D8VfhdfDBw','fHB8SoGEvuEx2pFmDBpdIA','sub-btn-r.jpg','PBtmpl0000000000000088',1277868925,0),('TlhKOVmWblZOsAdqmhEpeg','ObhrlxFhONlMAloKxIBrTw','sub-btn.jpg','PBtmpl0000000000000088',1277868925,0),('Nx0ypjO3cN6QdZUBUEE0lA','DB2Lwoo-2zTdgMvrTcoBng','pic-title-bg.jpg','PBtmpl0000000000000088',1277868926,0),('CmFZLN7iPS7XXvUEsxKPKA','Zf8rJT-Pc26yhdFOL9udaw','row-2.jpg','PBtmpl0000000000000088',1277868926,0),('v_XBgwwZqgW1D5s4y05qfg','F3iHVwJJDJt5yawhA8d8mw','addtl-info.gif','PBtmpl0000000000000088',1277868926,0),('4TdAkKoQbSCvI7QWcW889A','dj48Qgl8NtuoA3cUmtzcbw','row-1.jpg','PBtmpl0000000000000088',1277868926,0),('SAgK6eDPCG1cgkJ59WapHQ','skttMvs1YcfTHLZNylDXPw','prev-btn.gif','PBtmpl0000000000000088',1277868926,0),('XJYLuvGy9ubF7JNKyINtpA','hkJU_bOHA2o-jp-D81XJIg','play-btn.gif','PBtmpl0000000000000088',1277868926,0),('RWj7hyv2SpZuXxwj1Wocug','B8lHFZgIUwsr7Bxy1ugC1A','next-btn.gif','PBtmpl0000000000000088',1277868926,0),('aq8QElnlm3YufAoxRz9Pcg','l3UBAqWkleZsXjDN-1HwyA','data-bg.jpg','PBtmpl0000000000000088',1277868926,0),('i6-BofrJJYozovlzFBByXg','_D0UQJ5etHf_uEKE_nkD6w','first-photo-button.png','PBtmpl0000000000000088',1277868926,0),('fU_OZCmtdFNJ8a6bMve8ng','E9FOQ4Fo1lNWmyynYLpW3A','previous-photo-button.png','PBtmpl0000000000000088',1277868926,0),('YXCtusAxb4vzZ5sTnUA5DA','-hyksQPJtngtNsAQ-3xAzQ','next-photo-button.png','PBtmpl0000000000000088',1277868926,0),('k_xuE82wwp8gFVl9aaaG8g','WmvXXt2LPLXL4R2SnQ60Rg','last-photo-button.png','PBtmpl0000000000000088',1277868926,0),('NPM_WItpM5IzLWBhWjYfCA','YrXiuMKBj-IrzkqnEIbG5w','photo-navigation-spacer.png','PBtmpl0000000000000088',1277868926,0); -ALTER TABLE `FileAsset` ENABLE KEYS; -ALTER TABLE `Folder` DISABLE KEYS; -INSERT INTO `Folder` VALUES ('PBasset000000000000002','PBtmpl0000000000000078',1124395696,3600,0,'ASC'),('7-0-style0000000000001','PBtmpl0000000000000078',1147642492,3600,0,'ASC'),('7-0-style0000000000031','PBtmpl0000000000000078',1147642500,3600,0,'ASC'),('PBasset000000000000003','PBtmpl0000000000000078',1147642437,3600,0,'ASC'),('nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000078',1147642465,3600,0,'ASC'),('S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000078',1147642468,3600,0,'ASC'),('N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000078',1222803056,3600,0,'ASC'),('3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000078',1147642470,3600,0,'ASC'),('2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000078',1222803070,3600,0,'ASC'),('cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000078',1147642475,3600,0,'ASC'),('Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000078',1147642479,3600,0,'ASC'),('bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000078',1147642480,3600,0,'ASC'),('9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000078',1147642483,3600,0,'ASC'),('CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000078',1147642484,3600,0,'ASC'),('tempspace0000000000000','PBtmpl0000000000000078',1185754574,3600,0,'ASC'),('Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000078',1213244777,3600,0,'ASC'),('TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000078',1211664878,3600,0,'ASC'),('6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000078',1210777115,3600,0,'ASC'),('gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000078',1212086102,3600,0,'ASC'),('6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000078',1209509389,3600,0,'ASC'),('C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000078',1212160830,3600,0,'ASC'),('jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000078',1216250666,3600,0,'ASC'),('zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000078',1222803114,3600,0,'ASC'),('tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000078',1222803200,3600,0,'ASC'),('GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000078',1222803205,3600,0,'ASC'),('tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000078',1222803213,3600,0,'ASC'),('vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000078',1222803217,3600,0,'ASC'),('hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000078',1222803234,3600,0,'ASC'),('eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000078',1222803238,3600,0,'ASC'),('5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000078',1222803244,3600,0,'ASC'),('rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000078',1222803249,3600,0,'ASC'),('V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000078',1222803253,3600,0,'ASC'),('nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000078',1222803258,3600,0,'ASC'),('y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000078',1222803264,3600,0,'ASC'),('vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000078',1222803302,3600,0,'ASC'),('lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000078',1222803309,3600,0,'ASC'),('huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000078',1222803313,3600,0,'ASC'),('9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000078',1222803338,3600,0,'ASC'),('yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000078',1222803342,3600,0,'ASC'),('pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000078',1222803347,3600,0,'ASC'),('71e17KeduiXgODLMlUxiow','PBtmpl0000000000000078',1222803352,3600,0,'ASC'),('Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000078',1222803478,3600,0,'ASC'),('NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000078',1222803638,3600,0,'ASC'),('AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000078',1222803665,3600,0,'ASC'),('F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000078',1222803673,3600,0,'ASC'),('BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000078',1222803871,3600,0,'ASC'),('X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000078',1222804045,3600,0,'ASC'),('UL-ItI4L1Z6-WSuhuXVvsQ','PBtmpl0000000000000078',1225139673,3600,0,'ASC'),('7-0-style0000000000049','PBtmpl0000000000000078',1224117144,3600,0,'ASC'),('QpmlAiYZz6VsKBM-_0wXaw','PBtmpl0000000000000078',1224616691,3600,0,'ASC'),('HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000078',1225404573,3600,0,'ASC'),('IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000078',1226011853,3600,0,'ASC'),('K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000078',1227074310,3600,0,'ASC'),('_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000078',1226643205,3600,0,'ASC'),('qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000078',1227074362,3600,0,'ASC'),('LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000078',1232673968,3600,0,'ASC'),('QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000078',1233173545,3600,0,'ASC'),('HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000078',1227634350,3600,0,'ASC'),('AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000078',1236960881,3600,0,'ASC'),('jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000078',1238106173,3600,0,'ASC'),('6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000078',1239213092,3600,0,'ASC'),('GaBAW-2iVhLMJaZQzVLE5A','PBtmpl0000000000000078',1240103565,3600,0,'ASC'),('lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000078',1238625621,3600,0,'ASC'),('aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000078',1246969327,3600,0,'ASC'),('BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000078',1247046273,3600,0,'ASC'),('f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000078',1247053009,3600,0,'ASC'),('oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000078',1247053097,3600,0,'ASC'),('tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000078',1246966459,3600,0,'ASC'),('GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000078',1246965871,3600,0,'ASC'),('VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000078',1247046242,3600,0,'ASC'),('tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000078',1246965607,3600,0,'ASC'),('5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000078',1250243000,3600,0,'ASC'),('fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000078',1252595993,3600,0,'ASC'),('TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000078',1256092368,3600,0,'ASC'),('brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000078',1256092368,3600,0,'ASC'),('4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000078',1257311886,3600,0,'ASC'),('-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000078',1257311887,3600,0,'ASC'),('RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000078',1258524916,3600,0,'ASC'),('P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000078',1258524916,3600,0,'ASC'),('1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000078',1269401468,3600,0,'ASC'),('9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000078',1269401469,3600,0,'ASC'),('_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000078',1269401469,3600,0,'ASC'),('0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000078',1269401469,3600,0,'ASC'),('6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000078',1269401469,3600,0,'ASC'),('aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000078',1273032714,3600,0,'ASC'),('jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000078',1273032715,3600,0,'ASC'),('t87D1138NhPHhA23-hozBA','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000078',1273032716,3600,0,'ASC'),('CQp-RFA2pMh5lFSggPPPYg','PBtmpl0000000000000078',1273032719,3600,0,'ASC'),('_Mi_NTd3x8UB96LWezWHnw','PBtmpl0000000000000078',1273032719,3600,0,'ASC'),('g3JH1PRq6m6Bj_PnGpcrSQ','PBtmpl0000000000000078',1273032719,3600,0,'ASC'),('G0hl4VilbFKipToyxKqFrg','PBtmpl0000000000000078',1273032719,3600,0,'ASC'),('GWU2qZqe6yEuAKG-5HtBdg','PBtmpl0000000000000078',1273032719,3600,0,'ASC'),('AsfpsOpsGzZCb9m7MyxPuw','PBtmpl0000000000000078',1273032720,3600,0,'ASC'),('Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000078',1273032720,3600,0,'ASC'),('1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000078',1273032721,3600,0,'ASC'),('xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000078',1273032721,3600,0,'ASC'),('G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000078',1273032722,3600,0,'ASC'),('GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000078',1277868921,3600,0,'ASC'),('gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000078',1277868923,3600,0,'ASC'),('kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000078',1277868924,3600,0,'ASC'); -ALTER TABLE `Folder` ENABLE KEYS; -ALTER TABLE `ImageAsset` DISABLE KEYS; -INSERT INTO `ImageAsset` VALUES ('7-0-style0000000000002',50,NULL,1147642492,NULL),('7-0-style0000000000004',50,NULL,1147642493,NULL),('7-0-style0000000000005',50,NULL,1147642493,NULL),('7-0-style0000000000006',50,NULL,1147642493,NULL),('7-0-style0000000000007',50,NULL,1147642493,NULL),('7-0-style0000000000008',50,NULL,1147642494,NULL),('7-0-style0000000000009',50,NULL,1147642494,NULL),('7-0-style0000000000010',50,NULL,1147642494,NULL),('7-0-style0000000000011',50,NULL,1147642495,NULL),('7-0-style0000000000012',50,NULL,1147642495,NULL),('7-0-style0000000000013',50,NULL,1147642495,NULL),('7-0-style0000000000014',50,NULL,1147642495,NULL),('7-0-style0000000000015',50,NULL,1147642496,NULL),('7-0-style0000000000016',50,NULL,1147642496,NULL),('7-0-style0000000000017',50,NULL,1147642496,NULL),('7-0-style0000000000018',50,NULL,1147642496,NULL),('7-0-style0000000000019',50,NULL,1147642497,NULL),('7-0-style0000000000020',50,NULL,1147642497,NULL),('7-0-style0000000000021',50,NULL,1147642497,NULL),('7-0-style0000000000022',50,NULL,1147642497,NULL),('7-0-style0000000000023',50,NULL,1147642498,NULL),('7-0-style0000000000024',50,NULL,1147642498,NULL),('7-0-style0000000000030',50,NULL,1147642499,NULL),('7-0-style0000000000032',50,NULL,1147642500,NULL),('7-0-style0000000000034',50,NULL,1147642500,NULL),('7-0-style0000000000035',50,NULL,1147642501,NULL),('7-0-style0000000000036',50,NULL,1147642501,NULL),('7-0-style0000000000037',50,NULL,1147642501,NULL),('7-0-style0000000000038',50,NULL,1147642501,NULL),('7-0-style0000000000039',50,NULL,1147642502,NULL),('7-0-style0000000000040',50,NULL,1147642502,NULL),('7-0-style0000000000041',50,NULL,1147642502,NULL),('7-0-style0000000000042',50,NULL,1147642502,NULL),('7-0-style0000000000043',50,NULL,1147642503,NULL),('7-0-style0000000000044',50,NULL,1147642503,NULL),('7-0-style0000000000045',50,NULL,1147642503,NULL),('7-0-style0000000000046',50,NULL,1147642504,NULL),('7-0-style0000000000048',50,NULL,1147642504,NULL),('7-0-style0000000000052',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000053',50,'style=\"border-style:none;\"',1147642505,NULL),('7-0-style0000000000054',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000055',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000056',50,'style=\"border-style:none;\"',1147642506,NULL),('7-0-style0000000000057',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000058',50,'style=\"border-style:none;\"',1147642507,NULL),('7-0-style0000000000060',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000061',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000062',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000063',50,'style=\"border-style:none;\"',1147642508,NULL),('7-0-style0000000000064',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000065',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000066',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000067',50,'style=\"border-style:none;\"',1147642509,NULL),('7-0-style0000000000068',50,'style=\"border-style:none;\"',1147642510,NULL),('7-0-style0000000000071',50,'style=\"border-style:none;\"',1147642511,NULL),('_bZJ9LA_KNekZiFPaP2SeQ',50,'style=\"border-style:none;\" alt=\"shelf-titles.jpg\"',1210777868,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw',50,'style=\"border-style:none;\" alt=\"style-button.gif\"',1209509455,NULL),('vWW_DcHiYSrKZOkkIfEfcQ',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1209509433,NULL),('_bPYzRA87NTAUIKlfrJMHg',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1209509433,NULL),('nJjZHRwdDs5MAZYsAyioHw',50,'style=\"border-style:none;\" alt=\"title-bg.jpg\"',1209509433,NULL),('8hxfkrJPeFVRWF5piCNJ1A',50,'style=\"border-style:none;\" alt=\"field-bg.jpg\"',1209509433,NULL),('Osx7WN52iIKHZFT4vqUBHQ',50,'style=\"border-style:none;\" alt=\"search-btn.gif\"',1209509433,NULL),('oWff8fGzRdHPyq5VNREe9Q',50,'style=\"border-style:none;\" alt=\"top-bg.jpg\"',1209509433,NULL),('uqbkvb1b9443VvfkyRz95w',50,'style=\"border-style:none;\" alt=\"save-button.gif\"',1209509433,NULL),('8YiMkcz32xalkAn3WBLpag',50,'style=\"border-style:none;\" alt=\"go-btn.gif\"',1210181860,NULL),('7-0-style0000000000059',50,'alt=\"main_top.jpg\"',1213386091,NULL),('o_pq_e4vRyhMOKFzs61eag',50,'style=\"border-style:none;\" alt=\"book-covers.jpg\"',1215714957,NULL),('hBpisL-_URyZnh9clR5ohA',50,'style=\"border-style:none;\" alt=\"no_photo.gif\"',1227634417,''),('FOBV6KkifreXa4GmEAUU4A',50,'style=\"border-style:none;\" alt=\"no_photo_sm.gif\"',1227634447,''),('2q5fxatSFLgIhXaUX-oSvg',50,'style=\"border-style:none;\" alt=\"bottom-left.jpg\"',1273032714,''),('_d5WTkKjnwct-_Dk7gZHvQ',50,'style=\"border-style:none;\" alt=\"bottom-right.jpg\"',1273032714,''),('Iz2mUR3jCPKyemwAea4b2g',50,'style=\"border-style:none;\" alt=\"input_bg.jpg\"',1273032714,''),('JU9bjsLRoWj7GVHs__prig',50,'style=\"border-style:none;\" alt=\"top-left.jpg\"',1273032714,''),('noOlnjQGexHg8c4bGVUo9g',50,'style=\"border-style:none;\" alt=\"top-right.jpg\"',1273032714,''),('-0sK2rX1cwQt1ipUSqsiQQ',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1273032716,''),('hS_eOaVz9Qb5ixndK9EXAw',50,'style=\"border-style:none;\" alt=\"header.jpg\"',1273032716,''),('k2p-Be8C98pf2cRq7E-JHg',50,'style=\"border-style:none;\" alt=\"tab_link.gif\"',1273032716,''),('aYG4fjbMPbC4LCuuMp4gGA',50,'style=\"border-style:none;\" alt=\"tab_hover.gif\"',1273032716,''),('F122Ey0NtVAw6Lfv1M6G_Q',50,'style=\"border-style:none;\" alt=\"ico_archive.gif\"',1273032716,''),('qmXHKrQ6EDLSOGkrEKRUDA',50,'style=\"border-style:none;\" alt=\"bg_page_in.jpg\"',1273032716,''),('4qZgXjPPO4fwV879yu5XUg',50,'style=\"border-style:none;\" alt=\"bg_page.JPG\"',1273032716,''),('mb-xeAugm5GJdvu-Wh0MtQ',50,'style=\"border-style:none;\" alt=\"search_submit.gif\"',1273032717,''),('84Y9CwgzP6eNU7wZnk019Q',50,'style=\"border-style:none;\" alt=\"ico_date.gif\"',1273032717,''),('ikXTtJKZfHVxqw-47E4AQA',50,'style=\"border-style:none;\" alt=\"ico_user.gif\"',1273032717,''),('DhRWPTgzhvju_-TbMN3CwA',50,'style=\"border-style:none;\" alt=\"ico_comments.gif\"',1273032717,''),('6njI-pZz2bwsjWh-Q1_11g',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032717,''),('_Hz1Gnd3yEnJzVS7l7nJMQ',50,'style=\"border-style:none;\" alt=\"content_all_bg.PNG\"',1273032717,''),('VOOrXK5dFnkGih7aTkuDWA',50,'style=\"border-style:none;\" alt=\"search.PNG\"',1273032717,''),('ruf-QejOkUHDRtfgakHlbA',50,'style=\"border-style:none;\" alt=\"col_title_bg_long.GIF\"',1273032717,''),('FSHy5KjQjkt599PHS41seA',50,'style=\"border-style:none;\" alt=\"footer.jpg\"',1273032717,''),('nuYYXAz4KNNxgfumfnpo_g',50,'style=\"border-style:none;\" alt=\"ico_top.gif\"',1273032718,''),('Mr7ljjoy6n4fZojpQWajKQ',50,'style=\"border-style:none;\" alt=\"ico_links.gif\"',1273032718,''),('ApkqpDOrJDxK3QrWBGSRIg',50,'style=\"border-style:none;\" alt=\"ico_archive2.gif\"',1273032718,''),('AzzTY0Lay1f_YGeQJFnQCA',50,'style=\"border-style:none;\" alt=\"ico_list.gif\"',1273032718,''),('A_5LVQQWR73QZR8FFbny_w',50,'style=\"border-style:none;\" alt=\"bg.gif\"',1273032719,''),('wywIfa_VuTsq0c5Ed-W-MA',50,'style=\"border-style:none;\" alt=\"bullet.gif\"',1273032719,''),('xmykMFjri1O2NrYHbeToVQ',50,'style=\"border-style:none;\" alt=\"footerbg.gif\"',1273032719,''),('0IIGNBs_-INzqBC5VLeJgw',50,'style=\"border-style:none;\" alt=\"headerbg.gif\"',1273032719,''),('FXmePdyS0YKuZ1VCGGpK9w',50,'style=\"border-style:none;\" alt=\"quote.gif\"',1273032719,''),('66qCywiE_fiL9u5YIaJhgw',50,'style=\"border-style:none;\" alt=\"tableft.gif\"',1273032719,''),('n5VpG4lFsOG1elaWDQbilw',50,'style=\"border-style:none;\" alt=\"tabright.gif\"',1273032719,''),('pAXR7Kby4O-dSxOwLp1GaA',50,'style=\"border-style:none;\" alt=\"top_mod.png\"',1273032721,''),('TthzMLO4n3qxy59QZ5YBHg',50,'style=\"border-style:none;\" alt=\"menu_bg_dark.png\"',1273032721,''),('3n31SQjYa150TBrRBgMPhA',50,'style=\"border-style:none;\" alt=\"menu_bg_light.png\"',1273032721,''),('R4RxDufGbbIzEmpcoEcLrw',50,'style=\"border-style:none;\" alt=\"logo_full.jpg\"',1273032721,''),('bANo8aiAPA7aY_oQZKxIWw',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1277868924,''),('2ci_v2d4x4uvyjTRlC49OA',50,'style=\"border-style:none;\" alt=\"moveDown.gif\"',1277868924,''),('O-EsSzKgAk1KolFT-x_KsA',50,'style=\"border-style:none;\" alt=\"moveUp.gif\"',1277868924,''),('fdd8tGExyVwHyrB8RBbKXg',50,'style=\"border-style:none;\" alt=\"next.gif\"',1277868924,''),('BpisgHl4ZDcSECJp6oib1w',50,'style=\"border-style:none;\" alt=\"play.gif\"',1277868924,''),('zshreRgPAXtnF0DtVbQ1Yg',50,'style=\"border-style:none;\" alt=\"previous.gif\"',1277868924,''),('POVcY79vIqAHR8OfGt36aw',50,'style=\"border-style:none;\" alt=\"pagination_button.jpg\"',1277868924,''),('hIB-z34r8Xl-vYVYCkKr-w',50,'style=\"border-style:none;\" alt=\"bar-btn-r.jpg\"',1277868924,''),('-mPUoFlYcjqjPUPRLAlxNQ',50,'style=\"border-style:none;\" alt=\"search-field-r.jpg\"',1277868924,''),('MDpUOR-N8KMyt1J7Hh_h4w',50,'style=\"border-style:none;\" alt=\"bar-btn.jpg\"',1277868925,''),('YfXKByTwDZVituMc4h13Dg',50,'style=\"border-style:none;\" alt=\"pagination_bg.jpg\"',1277868925,''),('esko_HSU0Gh-uJZ1h3xRmQ',50,'style=\"border-style:none;\" alt=\"search-field-l.jpg\"',1277868925,''),('oSqpGswzpBG_ErdfYwIO8A',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1277868925,''),('MXJklShZvLLB_DSnZQmXrQ',50,'style=\"border-style:none;\" alt=\"title_bg.jpg\"',1277868925,''),('BthxD5oJ0idmsyI3ioA2FA',50,'style=\"border-style:none;\" alt=\"bar-btn-l.jpg\"',1277868925,''),('aZ-1HYQamkRHYXvzAra8WQ',50,'style=\"border-style:none;\" alt=\"search-field.jpg\"',1277868925,''),('eRkb94OYcS5AdcrrerOP5Q',50,'style=\"border-style:none;\" alt=\"rss.gif\"',1277868925,''),('TbnkjAJQEASORXIpYqDkcA',50,'style=\"border-style:none;\" alt=\"blank-image.jpg\"',1277868925,''),('er-3faBjY-hhlDcc5aKqdQ',50,'style=\"border-style:none;\" alt=\"top_bg.jpg\"',1277868925,''),('8bFsu2FJUqHRUiHcozcVFw',50,'style=\"border-style:none;\" alt=\"sub-btn-l.jpg\"',1277868925,''),('34Aayx5eA320D8VfhdfDBw',50,'style=\"border-style:none;\" alt=\"sub-btn-r.jpg\"',1277868925,''),('TlhKOVmWblZOsAdqmhEpeg',50,'style=\"border-style:none;\" alt=\"sub-btn.jpg\"',1277868925,''),('Nx0ypjO3cN6QdZUBUEE0lA',50,'style=\"border-style:none;\" alt=\"pic-title-bg.jpg\"',1277868926,''),('CmFZLN7iPS7XXvUEsxKPKA',50,'style=\"border-style:none;\" alt=\"row-2.jpg\"',1277868926,''),('v_XBgwwZqgW1D5s4y05qfg',50,'style=\"border-style:none;\" alt=\"addtl-info.gif\"',1277868926,''),('4TdAkKoQbSCvI7QWcW889A',50,'style=\"border-style:none;\" alt=\"row-1.jpg\"',1277868926,''),('SAgK6eDPCG1cgkJ59WapHQ',50,'style=\"border-style:none;\" alt=\"prev-btn.gif\"',1277868926,''),('XJYLuvGy9ubF7JNKyINtpA',50,'style=\"border-style:none;\" alt=\"play-btn.gif\"',1277868926,''),('RWj7hyv2SpZuXxwj1Wocug',50,'style=\"border-style:none;\" alt=\"next-btn.gif\"',1277868926,''),('aq8QElnlm3YufAoxRz9Pcg',50,'style=\"border-style:none;\" alt=\"data-bg.jpg\"',1277868926,''),('i6-BofrJJYozovlzFBByXg',50,'style=\"border-style:none;\"',1277868926,''),('fU_OZCmtdFNJ8a6bMve8ng',50,'style=\"border-style:none;\"',1277868926,''),('YXCtusAxb4vzZ5sTnUA5DA',50,'style=\"border-style:none;\"',1277868926,''),('k_xuE82wwp8gFVl9aaaG8g',50,'style=\"border-style:none;\"',1277868926,''),('NPM_WItpM5IzLWBhWjYfCA',50,'style=\"border-style:none;\"',1277868926,''); -ALTER TABLE `ImageAsset` ENABLE KEYS; -ALTER TABLE `Layout` DISABLE KEYS; -INSERT INTO `Layout` VALUES ('68sKwDgf9cGH58-NZcU4lg','PBtmpl0000000000000054','TKzUMeIxRLrZ3NAEez6CXQ,sWVXMZGibxHe2Ekj1DCldA',NULL,1124395696,'asc','PBtmpl0000000000000054'),('_iHetEvMQUOoxS-T2CM0sQ','PBtmpl0000000000000054','x_WjMvFmilhX-jvZuIpinw',NULL,1124395696,'asc','PBtmpl0000000000000054'),('8Bb8gu-me2mhL3ljFyiWLg','PBtmpl0000000000000094','6QuS-0rosuZTdTv11fobig.FOvmwGC0GtZo5VTxJIL3OA,ix1p0AbwKAz8QWB-T-HHfg,iCYOjohB9SKvAPr6bXElKA.4Yfz9hqBqM8OYMGuQK8oLw,Wl8WZ43g2rK5AYr9o4zY7w,LBuiKzg2mWwmOPS9AgV3bg,jTNggl7AoVSUc_ZzrvuCmw.',NULL,1124395696,'asc','PBtmpl0000000000000054'),('2TqQc4OISddWCZmRY1_m8A','PBtmpl0000000000000054','fK-HMSboA3uu0c1KYkYspA',NULL,1124395696,'asc','PBtmpl0000000000000054'),('Swf6L8poXKc7hUaNPkBevw','PBtmpl0000000000000054','Szs5eev3OMssmnsyLRZmWA',NULL,1124395696,'asc','PBtmpl0000000000000054'),('x3OFY6OJh_qsXkZfPwug4A','PBtmpl0000000000000054','pJd5TLAjfWMVXD6sCRLwUg',NULL,1124395696,'asc','PBtmpl0000000000000054'),('mTOiwwk3q4k9g5-XykXhPA','PBtmpl0000000000000054','diZvW4bSgZWwyyGP3qXi1g,o_pq_e4vRyhMOKFzs61eag,j_1qEqM6iLfQLiR6VKy0aA',NULL,1218149728,'asc','PBtmpl0000000000000054'); -ALTER TABLE `Layout` ENABLE KEYS; -ALTER TABLE `Navigation` DISABLE KEYS; -INSERT INTO `Navigation` VALUES ('pJd5TLAjfWMVXD6sCRLwUg','descendants','specificUrl','root',55,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000001','self\nancestors','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000093',55,1124395696,'text/html',0),('PBnav00000000000000014','pedigree','relativeToRoot','1',55,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000015','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000016','descendants','relativeToCurrentUrl','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000017','self\nsiblings','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000018','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000019','descendants','relativeToCurrentUrl','-1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000020','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000021','descendants','specificUrl','home',3,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000002','descendants','specificUrl','home',3,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000006','descendants','specificUrl','home',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000007','descendants','relativeToRoot','1',1,0,0,0,'PBnav00000000000bullet',55,1124395696,'text/html',0),('PBnav00000000000000008','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000108',55,1124395696,'text/html',0),('PBnav00000000000000009','descendants','relativeToRoot','0',1,0,0,0,'PBtmpl0000000000000124',55,1124395696,'text/html',0),('PBnav00000000000000010','descendants','relativeToRoot','1',1,0,0,0,'PBtmpl0000000000000117',55,1124395696,'text/html',0),('PBnav00000000000000011','self\ndescendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000130',55,1124395696,'text/html',0),('PBnav00000000000000012','descendants','relativeToRoot','1',55,0,0,0,'PBtmpl0000000000000134',55,1124395696,'text/html',0),('PBnav00000000000000013','self\ndescendants','relativeToCurrentUrl','0',55,0,0,0,'PBtmpl0000000000000136',55,1124395696,'text/html',0),('7-0-style0000000000025','descendants','relativeToRoot','1',1,0,0,0,'stevenav00000000000001',55,1147642498,'text/html',0),('7-0-style0000000000026','descendants','relativeToRoot','2',1,0,0,0,'PBnav000000style01lvl2',55,1147642499,'text/html',0),('7-0-style0000000000070','descendants','relativeToRoot','1',55,0,0,0,'stevecoolmenu000000001',55,1147642510,'text/html',0),('jVKLVakT_iA2010_oEuAwg','self\ndescendants','specificUrl','department',1,0,0,0,'stevecoolmenu000000001',55,1224116526,'text/html',0),('Vch1Ww7G_JpBhOhXX07RDg','ancestors','relativeToCurrentUrl','0',55,0,1,0,'alraubvBu-YJJ614jAHD5w',1,1235705952,'text/html',0),('Am1J-meNBmhqFfEIWy6Gag','ancestors\ndescendants','relativeToRoot','1',55,0,0,0,'gaIOm5cr2TkT9Fk6QmZWug',55,1273032718,'text/html',0),('x_hiUi1XZloBvV47Obnu8Q','ancestors\nself','relativeToCurrentUrl','0',55,0,0,0,'hpCk0B3vQzgc-QJhSol41w',55,1273032718,'text/html',0),('n-Vr_wgxOkwiHGt1nJto9w','descendants','relativeToRoot','1',1,0,0,0,'39KNX53B4nYJAyIE1lu8ZQ',55,1273032720,'text/html',0),('jmqLxnoWb6p92Cr12lf1hw','self\npedigree','relativeToRoot','2',55,0,0,0,'ztfi__vHJLsQDsMenrEn-w',55,1273032720,'text/html',0),('h0bOzz7WvdaVZXsjpwtkww','pedigree','relativeToRoot','1',55,0,0,0,'_z3ukLCqvoaUygfsbbkBzw',55,1273032721,'text/html',0),('qFOfW1sKyOTnGNcP6BXbwg','ancestors\nself','relativeToCurrentUrl','0',55,0,0,0,'Pt38T5_MWSue2e1N36MLdw',55,1273032721,'text/html',0); -ALTER TABLE `Navigation` ENABLE KEYS; -ALTER TABLE `RichEdit` DISABLE KEYS; -INSERT INTO `RichEdit` VALUES ('PBrichedit000000000002',0,0,0,0,0,0,0,0,0,0,'ltr','bottom',NULL,'a[name|href|target|title],strong/b[class],em/i[class],strike[class],u[class],p[dir|class|align],ol,ul,li,br,img[class|src|border=0|alt|title|hspace|vspace|width|height|align],sub,sup,blockquote[dir|style],table[border=0|cellspacing|cellpadding|width|height|class|align],tr[class|rowspan|width|height|align|valign],td[dir|class|colspan|rowspan|width|height|align|valign],div[dir|class|align],span[class|align],pre[class|align],address[class|align],h1[dir|class|align],h2[dir|class|align],h3[dir|class|align],h4[dir|class|align],h5[dir|class|align],h6[dir|class|align],hr','bold\nitalic\nbullist\nnumlist\nlink\nunlink\nemotions',NULL,NULL,0,1124395696,0,0,NULL),('PBrichedit000000000001',0,0,0,0,600,500,0,0,0,0,'ltr','bottom',NULL,'strong/b[*],em/i[*],*[*]','bold\nitalic\njustifyleft\njustifycenter\njustifyright\njustifyfull\noutdent\nindent\nsub\nsup\nformatselect\nremoveformat','bullist\nnumlist\nlink\nwgpagetree\nanchor\nunlink\nadvhr\nimage\nwginsertimage\ncharmap\nwgmacro','replace\ntablecontrols\nvisualaid\ncode\ncleanup\npreview',1,1256092369,0,0,0); -ALTER TABLE `RichEdit` ENABLE KEYS; -ALTER TABLE `Survey_questionTypes` DISABLE KEYS; -INSERT INTO `Survey_questionTypes` VALUES ('Scale','[]'),('Gender','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Male\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Female\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Education','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Elementary or some high school\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"High school/GED\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Some college/vocational school\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"College graduate\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Some graduate work\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Master\'s degree\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Doctorate (of any type)\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":1,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Other degree (verbatim)\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Importance','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all important\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely important\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Yes/No','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Yes\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"No\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Confidence','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all confident\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely confident\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Effectiveness','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all effective\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely effective\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Oppose/Support','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly oppose\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly support\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Certainty','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all certain\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely certain\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('True/False','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"True\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"False\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Concern','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all concerned\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely concerned\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Ideology','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly liberal\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Liberal\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Somewhat liberal\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Middle of the road\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Slightly conservative\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Conservative\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly conservative\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Security','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all secure\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely secure\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Risk','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"No risk\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extreme risk\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Agree/Disagree','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly disagree\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Strongly agree\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Race','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"American Indian\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Asian\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Black\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Hispanic\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"White non-Hispanic\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":1,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Something else (verbatim)\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Threat','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"No threat\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extreme threat\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Party','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Democratic party\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Republican party (or GOP)\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Independent party\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":1,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Other party (verbatim)\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Likelihood','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all likely\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely likely\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'),('Multiple Choice','[]'),('Satisfaction','[{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Not at all satisfied\",\"recordedAnswer\":0,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":1,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":2,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":3,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":4,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":5,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":6,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":7,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":8,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"\",\"recordedAnswer\":9,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1},{\"verbatim\":0,\"value\":1,\"min\":1,\"gotoExpression\":\"\",\"textCols\":10,\"max\":10,\"step\":1,\"terminal\":0,\"textRows\":5,\"text\":\"Extremely satisfied\",\"recordedAnswer\":10,\"type\":\"answer\",\"terminalUrl\":\"\",\"goto\":\"\",\"isCorrect\":1}]'); -ALTER TABLE `Survey_questionTypes` ENABLE KEYS; -ALTER TABLE `SyndicatedContent` DISABLE KEYS; -INSERT INTO `SyndicatedContent` VALUES ('http://www.plainblack.com/news/news?func=viewRSS',3,'fK-HMSboA3uu0c1KYkYspA','GNvjCFQWjY2AF2uf0aCM8Q',1124395696,'',3600,0,'pubDate_des'); -ALTER TABLE `SyndicatedContent` ENABLE KEYS; -ALTER TABLE `Workflow` DISABLE KEYS; -INSERT INTO `Workflow` VALUES ('pbworkflow000000000001','Daily Maintenance Tasks','This workflow runs daily maintenance tasks such as cleaning up old temporary files and cache.',1,'None','singleton'),('pbworkflow000000000002','Weekly Maintenance Tasks','This workflow runs once per week to perform maintenance tasks like cleaning up log files.',1,'None','singleton'),('pbworkflow000000000004','Hourly Maintenance Tasks','This workflow runs once per hour to perform maintenance tasks like deleting expired user sessions.',1,'None','singleton'),('pbworkflow000000000003','Commit Without Approval','This workflow commits all the assets in this version tag without asking for any approval.',1,'WebGUI::VersionTag','parallel'),('pbworkflow000000000005','Commit With Approval','This workflow commits all the assets in this version tag after getting approval from content managers.',1,'WebGUI::VersionTag','parallel'),('pbworkflow000000000006','Unlock Version Tag and Notify Owner','This workflow is used when a version tag approval is denied. It unlocks the version tag, making it available for editing, and notifies the tag owner.',1,'WebGUI::VersionTag','parallel'),('pbworkflow000000000007','Send Queued Email Messages','Sends all the messages in the mail queue.',1,'None','singleton'),('csworkflow000000000001','Get CS Mail','Retrieves mail from a POP3 account for the given Collaboration System.',1,'WebGUI::Asset::Wobject::Collaboration','singleton'),('AuthLDAPworkflow000001','Synchronize Profile To LDAP','Synchronizes a users LDAP information to their WebGUI User Profile',1,'WebGUI::User','singleton'),('DPWwf20061030000000002','Delete Exported Files','Deletes exported files from an asset being deleted or moved.',1,'None','parallel'),('PassiveAnalytics000001','Analyze Passive Analytics','Manual changes to this workflow will be lost. Please only use the Passive Analytics screen to make changes',1,'None','singleton'),('send_webgui_statistics','Send WebGUI Stats','This workflow sends some information about your site to the central WebGUI statistics repository. No personal information is sent. The information is used to help determine the future direction WebGUI should take.',0,'None','singleton'),('taxeurecheckworkflow01','Recheck unverified EU VAT numbers','Utility workflow that automatically rechecks VAT numbers that could not be checked when they were submitted',1,'None','parallel'); -ALTER TABLE `Workflow` ENABLE KEYS; -ALTER TABLE `WorkflowActivity` DISABLE KEYS; -INSERT INTO `WorkflowActivity` VALUES ('pbwfactivity0000000001','pbworkflow000000000001','Delete temp files older than 24 hours',NULL,1,'WebGUI::Workflow::Activity::CleanTempStorage'),('pbwfactivity0000000002','pbworkflow000000000001','Prune file cache larger than 100MB',NULL,3,'WebGUI::Workflow::Activity::CleanFileCache'),('pbwfactivity0000000022','pbworkflow000000000001','Prune database cache larger than 100MB',NULL,4,'WebGUI::Workflow::Activity::CleanDatabaseCache'),('pbwfactivity0000000005','pbworkflow000000000001','Archive old CS threads',NULL,5,'WebGUI::Workflow::Activity::ArchiveOldThreads'),('vtagactivity0000000002','pbworkflow000000000003','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',1,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000007','pbworkflow000000000001','deal with user groupings that have expired',NULL,6,'WebGUI::Workflow::Activity::ExpireGroupings'),('pbwfactivity0000000011','pbworkflow000000000001','Expire old subscription codes',NULL,7,'WebGUI::Workflow::Activity::ExpireSubscriptionCodes'),('pbwfactivity0000000014','pbworkflow000000000001','Summarize Passive Profiling Data',NULL,8,'WebGUI::Workflow::Activity::SummarizePassiveProfileLog'),('pbwfactivity0000000015','pbworkflow000000000001','Sync User Profiles With LDAP',NULL,9,'WebGUI::Workflow::Activity::SyncProfilesToLdap'),('pbwfactivity0000000003','pbworkflow000000000002','Delete login entries older than 90 days',NULL,1,'WebGUI::Workflow::Activity::CleanLoginHistory'),('pbwfactivity0000000004','pbworkflow000000000002','Move clipboard items older than 30 days to trash',NULL,2,'WebGUI::Workflow::Activity::TrashClipboard'),('pbwfactivity0000000008','pbworkflow000000000002','delete asset revisions older than a year from the database',NULL,3,'WebGUI::Workflow::Activity::PurgeOldAssetRevisions'),('pbwfactivity0000000010','pbworkflow000000000002','delete assets from trash that have been sitting around for 30 days',NULL,4,'WebGUI::Workflow::Activity::PurgeOldTrash'),('pbwfactivity0000000009','pbworkflow000000000004','delete expired sessions',NULL,1,'WebGUI::Workflow::Activity::DeleteExpiredSessions'),('pbwfactivity0000000012','pbworkflow000000000004','Get syndicated content',NULL,2,'WebGUI::Workflow::Activity::GetSyndicatedContent'),('vtagactivity0000000001','pbworkflow000000000005','Wait Until','This workflow waits until the value chosen in the \"Wait Until\" field has passed and then continues',2,'WebGUI::Workflow::Activity::WaitUntil'),('pbwfactivity0000000017','pbworkflow000000000005','Get Approval from Content Managers',NULL,1,'WebGUI::Workflow::Activity::RequestApprovalForVersionTag'),('pbwfactivity0000000019','pbworkflow000000000006','Unlock Version Tag',NULL,1,'WebGUI::Workflow::Activity::UnlockVersionTag'),('pbwfactivity0000000020','pbworkflow000000000006','Notify Committer of Denial',NULL,2,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'),('pbwfactivity0000000021','pbworkflow000000000007','Send Queued Messages',NULL,1,'WebGUI::Workflow::Activity::SendQueuedMailMessages'),('csactivity000000000001','csworkflow000000000001','Get the mail',NULL,1,'WebGUI::Workflow::Activity::GetCsMail'),('Dl_3P-4y1OoOTf3cRwQ7EA','AuthLDAPworkflow000001','Synchronize Profile To LDAP',NULL,1,'WebGUI::Workflow::Activity::SyncProfileToLdap'),('DPWwfa2006103000000002','DPWwf20061030000000002','Delete Exported Files',NULL,1,'WebGUI::Workflow::Activity::DeleteExportedFiles'),('SWHs3shndnc8LuLpmLeeNw','pbworkflow000000000004','Update Calendar Feeds','This activity imports calendar events from calendar feeds',3,'WebGUI::Workflow::Activity::CalendarUpdateFeeds'),('pbwfactivity0000000006','pbworkflow000000000003','Commit Assets',NULL,2,'WebGUI::Workflow::Activity::CommitVersionTag'),('newslettersendactivity','pbworkflow000000000002','Send Newsletters For Newsletter Assets',NULL,5,'WebGUI::Workflow::Activity::SendNewsletters'),('unansweredfriends_____','pbworkflow000000000001','Deny Friend Requests Older Than A Month',NULL,10,'WebGUI::Workflow::Activity::DenyUnansweredFriends'),('pbwfactivity0000000016','pbworkflow000000000005','Commit Assets',NULL,3,'WebGUI::Workflow::Activity::CommitVersionTag'),('pbwfactivity0000000018','pbworkflow000000000005','Notify Committer of Approval',NULL,4,'WebGUI::Workflow::Activity::NotifyAboutVersionTag'),('4X02MxKDfvNwzyY4u_yEwQ','PassiveAnalytics000001','Perform duration analysis',NULL,1,'WebGUI::Workflow::Activity::SummarizePassiveAnalytics'),('zUZZLAyKNUl933pI4RspPg','PassiveAnalytics000001','Please log entries into buckets',NULL,2,'WebGUI::Workflow::Activity::BucketPassiveAnalytics'),('1BbO0rpY9-fGqlfpMDHang','pbworkflow000000000001','Remove old carts',NULL,11,'WebGUI::Workflow::Activity::RemoveOldCarts'),('C2v8fZHn-epffECKPWE87g','pbworkflow000000000004','Expire Purchased Thingy Records','Expire any expired thingy records. Send notifications of imminent expiration.',4,'WebGUI::Workflow::Activity::ExpirePurchasedThingyRecords'),('LT8Y9qSH4mOkgH7GVlj6ww','pbworkflow000000000001','Archive Old Stories','Archive old stories, based on the settings of the Story Archives that own them',12,'WebGUI::Workflow::Activity::ArchiveOldStories'),('send_webgui_statistics','send_webgui_statistics','Send WebGUI Stats',NULL,1,'WebGUI::Workflow::Activity::SendWebguiStats'),('ixOnGnjE6D1m71WzhSxcFQ','pbworkflow000000000001','Expire Incomplete Survey Responses','Expires incomplete Survey Responses according to per-instance Survey settings',13,'WebGUI::Workflow::Activity::ExpireIncompleteSurveyResponses'),('g6jJY1hPVgrUm5PKzrfZaQ','pbworkflow000000000001','Purge Denied EMS Submissions','Purges EMS Submissions that were denied and are aged according to parameters.',14,'WebGUI::Workflow::Activity::CleanupEMSSubmissions'),('w5DtU9T4SzFLwiXjP5hEbg','pbworkflow000000000004','Process Approves EMS Submissions','Create EMS Ticket Assets for approved submissions.',5,'WebGUI::Workflow::Activity::ProcessEMSApprovals'),('taxeurecheckactivity01','taxeurecheckworkflow01','Untitled',NULL,1,'WebGUI::Workflow::Activity::RecheckVATNumber'),('ZATo3t_rm09J74Cs_Xavyg','pbworkflow000000000002','Extend Calendar Recurrences','Create events for live recurrences up to two years from the current date',6,'WebGUI::Workflow::Activity::ExtendCalendarRecurrences'); -ALTER TABLE `WorkflowActivity` ENABLE KEYS; -ALTER TABLE `WorkflowActivityData` DISABLE KEYS; -INSERT INTO `WorkflowActivityData` VALUES ('pbwfactivity0000000001','storageTimeout','86400'),('pbwfactivity0000000002','sizeLimit','100000000'),('pbwfactivity0000000022','sizeLimit','100000000'),('vtagactivity0000000002','type','startTime'),('pbwfactivity0000000003','ageToDelete','7776000'),('pbwfactivity0000000004','trashAfter','2592000'),('pbwfactivity0000000008','purgeAfter','31536000'),('pbwfactivity0000000010','purgeAfter','2592000'),('vtagactivity0000000001','type','startTime'),('pbwfactivity0000000017','message','A new version tag awaits your approval.'),('pbwfactivity0000000017','doOnDeny','pbworkflow000000000006'),('pbwfactivity0000000017','groupToApprove','4'),('pbwfactivity0000000020','message','Your version tag was denied. Please take corrective actions and recommit your changes.'),('pbwfactivity0000000020','who','committer'),('unansweredfriends_____','timeout','2592000'),('pbwfactivity0000000006','trashAfter','2592000'),('pbwfactivity0000000018','who','committer'),('pbwfactivity0000000018','message','Your version tag was approved.'); -ALTER TABLE `WorkflowActivityData` ENABLE KEYS; -ALTER TABLE `WorkflowSchedule` DISABLE KEYS; -INSERT INTO `WorkflowSchedule` VALUES ('pbcron0000000000000001','Daily Maintenance',1,0,'30','23','*','*','*','pbworkflow000000000001',NULL,NULL,3,NULL),('pbcron0000000000000002','Weekly Maintenance',1,0,'30','1','*','*','0','pbworkflow000000000002',NULL,NULL,3,NULL),('pbcron0000000000000003','Hourly Maintenance',1,0,'15','*','*','*','*','pbworkflow000000000004',NULL,NULL,3,NULL),('pbcron0000000000000004','Send Queued Email Messages Every 5 Minutes',1,0,'*/5','*','*','*','*','pbworkflow000000000007',NULL,NULL,3,NULL),('NpRVTSR-NX2sD52LUc520A','Request Tracker Mail',0,0,'*/5','*','*','*','*','csworkflow000000000001','WebGUI::Asset::Wobject::Collaboration','new',2,'{\n \"parameters\" : \"pbproto000000000000002\"\n}'); -ALTER TABLE `WorkflowSchedule` ENABLE KEYS; -ALTER TABLE `asset` DISABLE KEYS; -INSERT INTO `asset` VALUES ('PBasset000000000000001','infinity','000001','published','WebGUI::Asset',1124395696,'3','997995720','3',NULL,1,NULL),('PBasset000000000000002','PBasset000000000000001','000001000001','published','WebGUI::Asset::Wobject::Folder',1124395696,'3','997995720','3',NULL,1,NULL),('68sKwDgf9cGH58-NZcU4lg','PBasset000000000000001','000001000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('iCYOjohB9SKvAPr6bXElKA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000004','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('ix1p0AbwKAz8QWB-T-HHfg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000003','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('_iHetEvMQUOoxS-T2CM0sQ','68sKwDgf9cGH58-NZcU4lg','000001000002000001','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('FOvmwGC0GtZo5VTxJIL3OA','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000002','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('8Bb8gu-me2mhL3ljFyiWLg','68sKwDgf9cGH58-NZcU4lg','000001000002000002','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('m4YJFaqzultnB_sj1Uq0aw','68sKwDgf9cGH58-NZcU4lg','000001000002000008','published','WebGUI::Asset::File',1147642514,'3','997995720','3',NULL,0,NULL),('IWFxZDyGhQ3-SLZhELa3qw','68sKwDgf9cGH58-NZcU4lg','000001000002000009','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('bX5rYxb6tZ9docY6sUhBlw','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000001','published','WebGUI::Asset::Wobject::Article',1147642514,'3','997995720','3',NULL,0,NULL),('Vzv1pWpg_w6R_o-b0rM2qQ','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000002','published','WebGUI::Asset::File',1147642515,'3','997995720','3',NULL,0,NULL),('NK8bqlwVRILJknqeCDPBHg','_iHetEvMQUOoxS-T2CM0sQ','000001000002000001000003','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('6QuS-0rosuZTdTv11fobig','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000001','published','WebGUI::Asset::Wobject::Article',1147642515,'3','997995720','3',NULL,0,NULL),('2TqQc4OISddWCZmRY1_m8A','68sKwDgf9cGH58-NZcU4lg','000001000002000003','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('fK-HMSboA3uu0c1KYkYspA','2TqQc4OISddWCZmRY1_m8A','000001000002000003000001','published','WebGUI::Asset::Wobject::SyndicatedContent',1124395696,'3','997995720','3',NULL,0,NULL),('Swf6L8poXKc7hUaNPkBevw','68sKwDgf9cGH58-NZcU4lg','000001000002000004','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('Szs5eev3OMssmnsyLRZmWA','Swf6L8poXKc7hUaNPkBevw','000001000002000004000001','published','WebGUI::Asset::Wobject::DataForm',1124395696,'3','997995720','3',NULL,0,NULL),('x3OFY6OJh_qsXkZfPwug4A','68sKwDgf9cGH58-NZcU4lg','000001000002000006','published','WebGUI::Asset::Wobject::Layout',1124395696,'3','997995720','3',NULL,0,NULL),('pJd5TLAjfWMVXD6sCRLwUg','x3OFY6OJh_qsXkZfPwug4A','000001000002000006000001','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000003','7-0-style0000000000001','000001000001000051000002','published','WebGUI::Asset::Snippet',1147642492,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000001','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000008','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000014','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000009','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000015','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000010','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000016','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000011','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000017','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000012','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000018','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000013','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000019','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000014','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000020','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000015','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000021','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000016','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000002','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000017','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000006','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000018','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000007','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000019','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000008','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000020','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000009','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000021','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000010','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000022','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000011','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000023','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000012','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000024','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('PBnav00000000000000013','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000025','published','WebGUI::Asset::Wobject::Navigation',1124395696,'3','997995720','3',NULL,0,NULL),('Wl8WZ43g2rK5AYr9o4zY7w','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000006','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('4Yfz9hqBqM8OYMGuQK8oLw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000005','published','WebGUI::Asset::Wobject::Article',1147642516,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000005','7-0-style0000000000001','000001000001000051000004','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000006','7-0-style0000000000001','000001000001000051000005','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000103','TvOZs8U1kRXLtwtmyW75pg','000001000001000004000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000002','TvOZs8U1kRXLtwtmyW75pg','000001000001000004000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000115','TvOZs8U1kRXLtwtmyW75pg','000001000001000004000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000066','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000080','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000097','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000112','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000121','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000067','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000026','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000128','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000008','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000079','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000009','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000083','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000010','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000082','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000011','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000056','TYo2Bwl7aafzTtdHlS-arQ','000001000001000028000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000135','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000131','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000054','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000024','tXwf1zaOXTvsqPn6yu-GSw','000001000001000013000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000088','tPagC0AQErZXjLFZQ6OI1g','000001000001000017000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000078','GYaFxnMu9UsEG8oanwB6TA','000001000001000014000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('-PkdI8l1idu-8gDX3iOdcw','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000007','published','WebGUI::Asset::Template',1247482172,'3','997995720','3',NULL,0,NULL),('VyCINX2KixKYr2pzQGX9Mg','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000006','published','WebGUI::Asset::Snippet',1246968584,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000109','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000094','aNNC62qLAS6TB-0_MCYjsw','000001000001000019000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000133','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000012','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000065','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000055','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000027000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000020','-K8Hj45mbelljN9-0CXZxg','000001000001000010000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000085','-K8Hj45mbelljN9-0CXZxg','000001000001000010000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000104','-K8Hj45mbelljN9-0CXZxg','000001000001000010000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000021','-K8Hj45mbelljN9-0CXZxg','000001000001000010000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000033','N13SD1Fpqk00UgBt1Z8ivQ','000001000001000016000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000047','cj2y4papTVGZRFdwTI-_fw','000001000001000023000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000029','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000013','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000032','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000014','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000027','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000015','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000031','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000016','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('jTNggl7AoVSUc_ZzrvuCmw','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000008','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('LBuiKzg2mWwmOPS9AgV3bg','8Bb8gu-me2mhL3ljFyiWLg','000001000002000002000007','published','WebGUI::Asset::Wobject::Article',1147642517,'3','997995720','3',NULL,0,NULL),('GNvjCFQWjY2AF2uf0aCM8Q','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000068','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000017','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000099','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000018','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000114','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000019','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000092','V3l5S5TtI7wMm1WpIMhvOA','000001000001000021000009000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000044','V3l5S5TtI7wMm1WpIMhvOA','000001000001000021000009000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000059','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000040000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('IZkrow_zwvbf4FCH-taVTQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000002','published','WebGUI::Asset::Wobject::Folder',1226011853,'3','997995720','3',NULL,0,NULL),('QHn6T9rU7KsnS3Y70KCNTg','PBasset000000000000002','000001000001000002','published','WebGUI::Asset::Wobject::Folder',1227080251,'3','997995720','3',NULL,0,NULL),('HPDOcsj4gBme8D4svHodBw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000001','published','WebGUI::Asset::Wobject::Folder',1225404573,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000002','TCtybxdqmdwdvRn555zpCQ','000001000001000034000002','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000063','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000062','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000061','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000007','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000012','published','WebGUI::Asset::Template',1236594030,'3','1238119576','3',NULL,0,NULL),('PBtmpl0000000000000116','-K8Hj45mbelljN9-0CXZxg','000001000001000010000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000007','7-0-style0000000000001','000001000001000051000006','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000093','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000108','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000117','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000124','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000130','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000005','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000134','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000077','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000020','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000098','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000021','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000122','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000022','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000136','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000007','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000013','9M-lrlPQWeeNWfvnDnK_Xg','000001000001000005000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000010','K0q_N885Httqev1VCqUWxg','000001000001000005000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000011','fq1ZkYhH24R5tb96kuT10Q','000001000001000005000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000014','_gBYAdTcbkiyamnqi2Xskg','000001000001000005000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000012','oHk7fAFhEEkB7dHzi0QOQA','000001000001000005000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803164','3',NULL,0,NULL),('PBtmpl0000000000000006','taX2UYkFF21ALpFZY2rhMw','000001000001000005000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000004','xSmREZO3GNzK3M5PaueOOQ','000001000001000005000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000005','0bx-xoL8TSXXubFuqKAoVQ','000001000001000005000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803163','3',NULL,0,NULL),('PBtmpl0000000000000057','Ik9HHky10DIyFTKehUD1dw','000001000001000032000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000060','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('pbrobot000000000000001','PBasset000000000000002','000001000001000035','published','WebGUI::Asset::Snippet',1147642511,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000111','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000002','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000137','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000003','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000132','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000123','TvOZs8U1kRXLtwtmyW75pg','000001000001000004000004','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000081','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000023','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000101','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000024','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000065','7-0-style0000000000049','000001000001000053000016','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('OhdaFLE7sXOzo_SIP2ZUgA','68sKwDgf9cGH58-NZcU4lg','000001000002000007','published','WebGUI::Asset::Wobject::Article',1147642513,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000113','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000025','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000037','GdkQpvjRtJqtzOUbwIIQRA','000001000001000021000002000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000038','tnc5iYyynX2hfdEs9D3P8w','000001000001000021000003000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000036','tBL7BWiQRZFed2Y-Zjo9tQ','000001000001000021000001000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000039','vgXdBcFTqU7h4wBG1ewdBw','000001000001000021000004000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000091','vgXdBcFTqU7h4wBG1ewdBw','000001000001000021000004000002','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000107','vgXdBcFTqU7h4wBG1ewdBw','000001000001000021000004000003','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000040','hcFlqnXlsmC1ujN6Id0F0A','000001000001000021000005000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000041','eRJR52fvlaxfetv3DQkQYw','000001000001000021000006000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000042','5HIDHq5lAWHV5gpYGS0zLg','000001000001000021000007000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000045','y8XkRdxIperLKkJ3bL5sSQ','000001000001000021000011000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('PBtmpl0000000000000043','rYEFwXXo0tkGhQTcbDibvg','000001000001000021000008000001','published','WebGUI::Asset::Template',1124395696,'3','1222803175','3',NULL,0,NULL),('7-0-style0000000000064','7-0-style0000000000049','000001000001000053000015','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBrichedit000000000001','TCtybxdqmdwdvRn555zpCQ','000001000001000034000001','published','WebGUI::Asset::RichEdit',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000053','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000017','published','WebGUI::Asset::Template',1124395696,'3','1222802960','3',NULL,0,NULL),('PBtmpl0000000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000003000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000140','Da6KWn805L4B5e4HFgQRQA','000001000001000039000001','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000141','-K8Hj45mbelljN9-0CXZxg','000001000001000010000006','published','WebGUI::Asset::Template',1124395696,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000066','7-0-style0000000000049','000001000001000053000017','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000062','7-0-style0000000000049','000001000001000053000013','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000060','7-0-style0000000000049','000001000001000053000011','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000061','7-0-style0000000000049','000001000001000053000012','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000057','7-0-style0000000000049','000001000001000053000008','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000058','7-0-style0000000000049','000001000001000053000009','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000059','7-0-style0000000000049','000001000001000053000010','published','WebGUI::Asset::File::Image',1147642507,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000056','7-0-style0000000000049','000001000001000053000007','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000052','7-0-style0000000000049','000001000001000053000003','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000053','7-0-style0000000000049','000001000001000053000004','published','WebGUI::Asset::File::Image',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000054','7-0-style0000000000049','000001000001000053000005','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000055','7-0-style0000000000049','000001000001000053000006','published','WebGUI::Asset::File::Image',1147642506,'3','997995720','3',NULL,0,NULL),('stevecoolmenu000000001','7-0-style0000000000049','000001000001000053000001','published','WebGUI::Asset::Template',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000051','7-0-style0000000000049','000001000001000053000002','published','WebGUI::Asset::Snippet',1147642505,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000049','PBasset000000000000002','000001000001000053','published','WebGUI::Asset::Wobject::Folder',1147642504,'3','997995720','3',NULL,0,NULL),('stevestyle000000000002','7-0-style0000000000031','000001000001000052000016','published','WebGUI::Asset::Template',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000048','7-0-style0000000000031','000001000001000052000017','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000046','7-0-style0000000000031','000001000001000052000015','published','WebGUI::Asset::File::Image',1147642504,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000044','7-0-style0000000000031','000001000001000052000013','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000045','7-0-style0000000000031','000001000001000052000014','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000043','7-0-style0000000000031','000001000001000052000012','published','WebGUI::Asset::File::Image',1147642503,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000041','7-0-style0000000000031','000001000001000052000010','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000042','7-0-style0000000000031','000001000001000052000011','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000038','7-0-style0000000000031','000001000001000052000007','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000039','7-0-style0000000000031','000001000001000052000008','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000040','7-0-style0000000000031','000001000001000052000009','published','WebGUI::Asset::File::Image',1147642502,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000036','7-0-style0000000000031','000001000001000052000005','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000037','7-0-style0000000000031','000001000001000052000006','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000034','7-0-style0000000000031','000001000001000052000003','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000035','7-0-style0000000000031','000001000001000052000004','published','WebGUI::Asset::File::Image',1147642501,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000032','7-0-style0000000000031','000001000001000052000001','published','WebGUI::Asset::File::Image',1147642500,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000033','7-0-style0000000000031','000001000001000052000002','published','WebGUI::Asset::Snippet',1147642500,'3','997995720','3',NULL,0,NULL),('PBnav000000style01lvl2','7-0-style0000000000001','000001000001000051000028','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000030','7-0-style0000000000001','000001000001000051000029','published','WebGUI::Asset::File::Image',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000031','PBasset000000000000002','000001000001000052','published','WebGUI::Asset::Wobject::Folder',1147642500,'3','997995720','3',NULL,0,NULL),('stevenav00000000000001','7-0-style0000000000001','000001000001000051000027','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000025','7-0-style0000000000001','000001000001000051000024','published','WebGUI::Asset::Wobject::Navigation',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000026','7-0-style0000000000001','000001000001000051000025','published','WebGUI::Asset::Wobject::Navigation',1147642499,'3','997995720','3',NULL,0,NULL),('stevestyle000000000001','7-0-style0000000000001','000001000001000051000026','published','WebGUI::Asset::Template',1147642499,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000023','7-0-style0000000000001','000001000001000051000022','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000024','7-0-style0000000000001','000001000001000051000023','published','WebGUI::Asset::File::Image',1147642498,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000022','7-0-style0000000000001','000001000001000051000021','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000021','7-0-style0000000000001','000001000001000051000020','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000018','7-0-style0000000000001','000001000001000051000017','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000019','7-0-style0000000000001','000001000001000051000018','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000020','7-0-style0000000000001','000001000001000051000019','published','WebGUI::Asset::File::Image',1147642497,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000017','7-0-style0000000000001','000001000001000051000016','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000016','7-0-style0000000000001','000001000001000051000015','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000015','7-0-style0000000000001','000001000001000051000014','published','WebGUI::Asset::File::Image',1147642496,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000014','7-0-style0000000000001','000001000001000051000013','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000012','7-0-style0000000000001','000001000001000051000011','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000013','7-0-style0000000000001','000001000001000051000012','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000010','7-0-style0000000000001','000001000001000051000009','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000011','7-0-style0000000000001','000001000001000051000010','published','WebGUI::Asset::File::Image',1147642495,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000009','7-0-style0000000000001','000001000001000051000008','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000008','7-0-style0000000000001','000001000001000051000007','published','WebGUI::Asset::File::Image',1147642494,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000067','7-0-style0000000000049','000001000001000053000018','published','WebGUI::Asset::File::Image',1147642509,'3','997995720','3',NULL,0,NULL),('PBtmplHelp000000000001','nbSrhXZQuxIjhWFaFPSuVA','000001000001000003000002','published','WebGUI::Asset::Template',1124395706,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000001','PBasset000000000000002','000001000001000051','published','WebGUI::Asset::Wobject::Folder',1147642492,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000001','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000003','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000002','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000004','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000003','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000005','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('SynConXSLT000000000004','oGfxez5sksyB_PcaAsEm_Q','000001000001000045000006','published','WebGUI::Asset::Snippet',1124395707,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000063','7-0-style0000000000049','000001000001000053000014','published','WebGUI::Asset::File::Image',1147642508,'3','997995720','3',NULL,0,NULL),('stevestyle000000000003','7-0-style0000000000049','000001000001000053000020','published','WebGUI::Asset::Template',1147642510,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000002','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000001','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000001','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000002','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000003','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000003','published','WebGUI::Asset::Template',1133743238,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000004','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000004','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('matrixtmpl000000000005','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000004','7-0-style0000000000001','000001000001000051000003','published','WebGUI::Asset::File::Image',1147642493,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000002','3uuBf8cYuj1sew2OJXl9tg','000001000001000018000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('IOB0000000000000000001','3uuBf8cYuj1sew2OJXl9tg','000001000001000018000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('PBtmplBlankStyle000001','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000005','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('DashboardViewTmpl00001','S1A9iAwKcQQ6P20uTqw-Ew','000001000001000009000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('WeatherDataTmpl0000001','9wKWdum0_8z-OhhquWLtSQ','000001000001000050000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000002','Efe2W0UgrSRDltNJ87jlfg','000001000001000041000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('StockDataTMPL000000001','Efe2W0UgrSRDltNJ87jlfg','000001000001000041000002','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('MultiSearchTmpl0000001','bBzO4CWjqU_ile3gf5Iypw','000001000001000024000001','published','WebGUI::Asset::Template',1133743239,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000068','7-0-style0000000000049','000001000001000053000019','published','WebGUI::Asset::File::Image',1147642510,'3','997995720','3',NULL,0,NULL),('ZipArchiveTMPL00000001','CSN-ZON7Uwv8kxf3F1fh5Q','000001000001000055000001','published','WebGUI::Asset::Template',1133743240,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000002','7-0-style0000000000001','000001000001000051000001','published','WebGUI::Asset::File::Image',1147642492,'3','997995720','3',NULL,0,NULL),('WVtmpl0000000000000001','nqNbSUAhk9Vd1zda2SCz9A','000001000001000021000010000001','published','WebGUI::Asset::Template',1133743240,'3','1222803175','3',NULL,0,NULL),('2CS-BErrjMmESOtGT90qOg','HPDOcsj4gBme8D4svHodBw','000001000001000002000001000003','published','WebGUI::Asset::Template',1227070888,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000208','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000026','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000209','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000027','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000210','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000028','published','WebGUI::Asset::Template',1147642410,'3','997995720','3',NULL,0,NULL),('ProjectManagerTMPL0004','yD1SMHelczihzjEmx6eXBA','000001000001000031000002000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0003','pV7GnZdpjR3XpZaSINIoeg','000001000001000031000003000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0002','71e17KeduiXgODLMlUxiow','000001000001000031000004000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('ProjectManagerTMPL0001','9A-mg2gwWmaYi9o_1C7ArQ','000001000001000031000001000001','published','WebGUI::Asset::Template',1147642415,'3','1222803147','3',NULL,0,NULL),('TimeTrackingTMPL000002','vTymIDYL2YqEh6PV50F7ew','000001000001000048000001000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000003','lo1ac3BsoJx3ijGQ3gR-bQ','000001000001000048000002000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('TimeTrackingTMPL000001','huASapWvFDzqwOSbcN-JFQ','000001000001000048000003000001','published','WebGUI::Asset::Template',1147642417,'3','1222803153','3',NULL,0,NULL),('PBtmpl0000000000000200','f_tn9FfoSfKWX43F83v_3w','000001000001000036000001','published','WebGUI::Asset::Template',1147642427,'3','997995720','3',NULL,0,NULL),('PBasset000000000000003','PBasset000000000000001','000001000003','published','WebGUI::Asset::Wobject::Folder',1147642437,'3','997995720','3',NULL,1,NULL),('pbproto000000000000002','PBasset000000000000002','000001000001000033','published','WebGUI::Asset::Wobject::Collaboration',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000220','tXwf1zaOXTvsqPn6yu-GSw','000001000001000013000002','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('pbtmpl0000000000000221','tXwf1zaOXTvsqPn6yu-GSw','000001000001000013000003','published','WebGUI::Asset::Template',1147642465,'3','997995720','3',NULL,0,NULL),('nbSrhXZQuxIjhWFaFPSuVA','PBasset000000000000002','000001000001000003','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('TvOZs8U1kRXLtwtmyW75pg','PBasset000000000000002','000001000001000004','published','WebGUI::Asset::Wobject::Folder',1147642465,'3','997995720','3',NULL,0,NULL),('xSmREZO3GNzK3M5PaueOOQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000001','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('0bx-xoL8TSXXubFuqKAoVQ','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000002','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('taX2UYkFF21ALpFZY2rhMw','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000003','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803163','3',NULL,0,NULL),('K0q_N885Httqev1VCqUWxg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000004','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('fq1ZkYhH24R5tb96kuT10Q','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000005','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('oHk7fAFhEEkB7dHzi0QOQA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000006','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('9M-lrlPQWeeNWfvnDnK_Xg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000007','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('_gBYAdTcbkiyamnqi2Xskg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','1222803164','3',NULL,0,NULL),('GNOAsX98vCsl0JRwfwL-gg','PBasset000000000000002','000001000001000008','published','WebGUI::Asset::Wobject::Folder',1147642466,'3','997995720','3',NULL,0,NULL),('S1A9iAwKcQQ6P20uTqw-Ew','PBasset000000000000002','000001000001000009','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('-K8Hj45mbelljN9-0CXZxg','PBasset000000000000002','000001000001000010','published','WebGUI::Asset::Wobject::Folder',1147642468,'3','997995720','3',NULL,0,NULL),('tXwf1zaOXTvsqPn6yu-GSw','PBasset000000000000002','000001000001000013','published','WebGUI::Asset::Wobject::Folder',1147642469,'3','997995720','3',NULL,0,NULL),('GYaFxnMu9UsEG8oanwB6TA','PBasset000000000000002','000001000001000014','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('N13SD1Fpqk00UgBt1Z8ivQ','PBasset000000000000002','000001000001000016','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('tPagC0AQErZXjLFZQ6OI1g','PBasset000000000000002','000001000001000017','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('default_post_received1','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000029','published','WebGUI::Asset::Template',1222708029,'3','1222803001','3',NULL,0,NULL),('3uuBf8cYuj1sew2OJXl9tg','PBasset000000000000002','000001000001000018','published','WebGUI::Asset::Wobject::Folder',1147642470,'3','997995720','3',NULL,0,NULL),('aNNC62qLAS6TB-0_MCYjsw','PBasset000000000000002','000001000001000019','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','997995720','3',NULL,0,NULL),('tBL7BWiQRZFed2Y-Zjo9tQ','zyWi26q9na-iiZqL4yedog','000001000001000021000001','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('GdkQpvjRtJqtzOUbwIIQRA','zyWi26q9na-iiZqL4yedog','000001000001000021000002','published','WebGUI::Asset::Wobject::Folder',1147642471,'3','1222803175','3',NULL,0,NULL),('tnc5iYyynX2hfdEs9D3P8w','zyWi26q9na-iiZqL4yedog','000001000001000021000003','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('vgXdBcFTqU7h4wBG1ewdBw','zyWi26q9na-iiZqL4yedog','000001000001000021000004','published','WebGUI::Asset::Wobject::Folder',1147642472,'3','1222803175','3',NULL,0,NULL),('hcFlqnXlsmC1ujN6Id0F0A','zyWi26q9na-iiZqL4yedog','000001000001000021000005','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('eRJR52fvlaxfetv3DQkQYw','zyWi26q9na-iiZqL4yedog','000001000001000021000006','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('5HIDHq5lAWHV5gpYGS0zLg','zyWi26q9na-iiZqL4yedog','000001000001000021000007','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('rYEFwXXo0tkGhQTcbDibvg','zyWi26q9na-iiZqL4yedog','000001000001000021000008','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('V3l5S5TtI7wMm1WpIMhvOA','zyWi26q9na-iiZqL4yedog','000001000001000021000009','published','WebGUI::Asset::Wobject::Folder',1147642473,'3','1222803175','3',NULL,0,NULL),('nqNbSUAhk9Vd1zda2SCz9A','zyWi26q9na-iiZqL4yedog','000001000001000021000010','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('y8XkRdxIperLKkJ3bL5sSQ','zyWi26q9na-iiZqL4yedog','000001000001000021000011','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','1222803175','3',NULL,0,NULL),('LdiozcIUciWuvt3Z-na5Ww','PBasset000000000000002','000001000001000022','published','WebGUI::Asset::Wobject::Folder',1147642474,'3','997995720','3',NULL,0,NULL),('cj2y4papTVGZRFdwTI-_fw','PBasset000000000000002','000001000001000023','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('bBzO4CWjqU_ile3gf5Iypw','PBasset000000000000002','000001000001000024','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('BFfNj5wA9bDw8H3cnr8pTw','PBasset000000000000002','000001000001000025','published','WebGUI::Asset::Wobject::Folder',1147642475,'3','997995720','3',NULL,0,NULL),('AgyFhx3eXlfZXNp2MkrsiQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000030000001','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803652','3',NULL,0,NULL),('F7MAQ-cpuvQ1KuC7J4P5zQ','NywJYmGWe1f6EBXJnWg9Xg','000001000001000030000002','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222803653','3',NULL,0,NULL),('jEz8iTGNWEt2I05IhVV19Q','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000016','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','1222802937','3',NULL,0,NULL),('VZK3CRgiMb8r4dBjUmCTgQ','PBasset000000000000002','000001000001000027','published','WebGUI::Asset::Wobject::Folder',1147642477,'3','997995720','3',NULL,0,NULL),('TYo2Bwl7aafzTtdHlS-arQ','PBasset000000000000002','000001000001000028','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','997995720','3',NULL,0,NULL),('9A-mg2gwWmaYi9o_1C7ArQ','-WM2dt0ZGpDasuL2wWocxg','000001000001000031000001','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('yD1SMHelczihzjEmx6eXBA','-WM2dt0ZGpDasuL2wWocxg','000001000001000031000002','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('pV7GnZdpjR3XpZaSINIoeg','-WM2dt0ZGpDasuL2wWocxg','000001000001000031000003','published','WebGUI::Asset::Wobject::Folder',1147642478,'3','1222803147','3',NULL,0,NULL),('71e17KeduiXgODLMlUxiow','-WM2dt0ZGpDasuL2wWocxg','000001000001000031000004','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','1222803147','3',NULL,0,NULL),('Ik9HHky10DIyFTKehUD1dw','PBasset000000000000002','000001000001000032','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('f_tn9FfoSfKWX43F83v_3w','PBasset000000000000002','000001000001000036','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('Da6KWn805L4B5e4HFgQRQA','PBasset000000000000002','000001000001000039','published','WebGUI::Asset::Wobject::Folder',1147642479,'3','997995720','3',NULL,0,NULL),('bbiA9Zq5Gy2oCFBlILO3QA','PBasset000000000000002','000001000001000040','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('Efe2W0UgrSRDltNJ87jlfg','PBasset000000000000002','000001000001000041','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('RrV4aAPnn4dM0ZcU3OXnlw','PBasset000000000000002','000001000001000043','published','WebGUI::Asset::Wobject::Folder',1147642480,'3','997995720','3',NULL,0,NULL),('5bnNzteN7w3NnK9mF4XiCg','PBasset000000000000002','000001000001000044','published','WebGUI::Asset::Wobject::Folder',1147642481,'3','997995720','3',NULL,0,NULL),('oGfxez5sksyB_PcaAsEm_Q','PBasset000000000000002','000001000001000045','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','997995720','3',NULL,0,NULL),('vTymIDYL2YqEh6PV50F7ew','2OcUWHVsu_L1sDFzIMWYqw','000001000001000048000001','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('lo1ac3BsoJx3ijGQ3gR-bQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000048000002','published','WebGUI::Asset::Wobject::Folder',1147642482,'3','1222803153','3',NULL,0,NULL),('huASapWvFDzqwOSbcN-JFQ','2OcUWHVsu_L1sDFzIMWYqw','000001000001000048000003','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','1222803153','3',NULL,0,NULL),('9wKWdum0_8z-OhhquWLtSQ','PBasset000000000000002','000001000001000050','published','WebGUI::Asset::Wobject::Folder',1147642483,'3','997995720','3',NULL,0,NULL),('CSN-ZON7Uwv8kxf3F1fh5Q','PBasset000000000000002','000001000001000055','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('TCtybxdqmdwdvRn555zpCQ','PBasset000000000000002','000001000001000034','published','WebGUI::Asset::Wobject::Folder',1147642484,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000070','7-0-style0000000000049','000001000001000053000021','published','WebGUI::Asset::Wobject::Navigation',1147642510,'3','997995720','3',NULL,0,NULL),('7-0-style0000000000071','7-0-style0000000000049','000001000001000053000022','published','WebGUI::Asset::File::Image',1147642511,'3','997995720','3',NULL,0,NULL),('PBnav00000000000bullet','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000026','published','WebGUI::Asset::Template',1148579524,'3','1222803972','3',NULL,0,NULL),('PBnav00000000indentnav','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000027','published','WebGUI::Asset::Template',1148579525,'3','1222803972','3',NULL,0,NULL),('MK4fCNoyrx5SE8eyDfOpxg','tXwf1zaOXTvsqPn6yu-GSw','000001000001000013000004','published','WebGUI::Asset::Template',1247489252,'3','997995720','3',NULL,0,NULL),('uCn31PzislTZlgt_79j7cQ','RrV4aAPnn4dM0ZcU3OXnlw','000001000001000043000006','published','WebGUI::Asset::Snippet',1258524916,'3','997995720','3',NULL,0,NULL),('i5kt5aodVs_oepNEkE7Okw','VZK3CRgiMb8r4dBjUmCTgQ','000001000001000027000002','published','WebGUI::Asset::Snippet',1242312883,'3','997995720','3',NULL,0,NULL),('zb_OPKNqcTuIjdvvbEkRjw','TvOZs8U1kRXLtwtmyW75pg','000001000001000004000005','published','WebGUI::Asset::Snippet',1247484073,'3','997995720','3',NULL,0,NULL),('FEDP3dk8J3Chw_gyr7_XEQ','BFfNj5wA9bDw8H3cnr8pTw','000001000001000025000028','published','WebGUI::Asset::Snippet',1246278679,'3','997995720','3',NULL,0,NULL),('BmLaN4rmAANkCglXUViEbg','-WM2dt0ZGpDasuL2wWocxg','000001000001000031000005','published','WebGUI::Asset::Wobject::Folder',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0006','BmLaN4rmAANkCglXUViEbg','000001000001000031000005000001','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('ProjectManagerTMPL0005','BmLaN4rmAANkCglXUViEbg','000001000001000031000005000002','published','WebGUI::Asset::Template',1157679165,'3','1222803845','3',NULL,0,NULL),('Q4uX_C557arTp6D_jwB1jQ','PBasset000000000000002','000001000001000054','published','WebGUI::Asset::Wobject::Folder',1165460175,'3','997995720','3',NULL,0,NULL),('WikiRCTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000001','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiFrontTmpl000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000002','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiSearchTmpl00000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000003','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPHTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000004','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageTmpl0000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000005','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiPageEditTmpl000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000006','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('WikiMPTmpl000000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000007','published','WebGUI::Asset::Template',1165460175,'3','1222803570','3',NULL,0,NULL),('SQLReportDownload00001','bbiA9Zq5Gy2oCFBlILO3QA','000001000001000040000002','published','WebGUI::Asset::Template',1171466654,'3','1222803962','3',NULL,0,NULL),('X7DrzUcj8pOKFa_6k9D5iw','PBasset000000000000002','000001000001000026','published','WebGUI::Asset::Wobject::Folder',1185754569,'3','997995720','3',NULL,0,NULL),('newsletter000000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000026000001','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettercs0000000001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000026000002','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('newslettersubscrip0001','X7DrzUcj8pOKFa_6k9D5iw','000001000001000026000003','published','WebGUI::Asset::Template',1185754569,'3','1222803570','3',NULL,0,NULL),('MBmWlA_YEA2I6D29OMGtRg','HPDOcsj4gBme8D4svHodBw','000001000001000002000001000004','published','WebGUI::Asset::Template',1226542675,'3','997995720','3',NULL,0,NULL),('FJbUTvZ2nUTn65LpW6gjsA','HPDOcsj4gBme8D4svHodBw','000001000001000002000001000001','published','WebGUI::Asset::Template',1227070381,'3','997995720','3',NULL,0,NULL),('WikiKeyword00000000001','Q4uX_C557arTp6D_jwB1jQ','000001000001000054000008','published','WebGUI::Asset::Template',1185754571,'3','1222803956','3',NULL,0,NULL),('tempspace0000000000000','PBasset000000000000001','000001000004','published','WebGUI::Asset::Wobject::Folder',1185754574,'3','997995720','3',NULL,1,NULL),('75CmQgpcCSkdsL-oawdn3Q','HPDOcsj4gBme8D4svHodBw','000001000001000002000001000002','published','WebGUI::Asset::Template',1227052575,'3','997995720','3',NULL,0,NULL),('gI_TxK-5S4DNuv42wpImmw','PBasset000000000000002','000001000001000015','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('jME5BEDYVDlBZ8jIQA9-jQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000001','published','WebGUI::Asset::Template',1197927169,'3','997995720','3',NULL,0,NULL),('azCqD0IjdQSlM3ar29k5Sg','gI_TxK-5S4DNuv42wpImmw','000001000001000015000002','published','WebGUI::Asset::Template',1197881748,'3','997995720','3',NULL,0,NULL),('05FpjceLYhq4csF1Kww1KQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000003','published','WebGUI::Asset::Template',1197879361,'3','997995720','3',NULL,0,NULL),('q5O62aH4pjUXsrQR3Pq4lw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000004','published','WebGUI::Asset::Template',1197825772,'3','997995720','3',NULL,0,NULL),('KAMdiUdJykjN02CPHpyZOw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000005','published','WebGUI::Asset::Template',1197825787,'3','997995720','3',NULL,0,NULL),('OkphOEdaSGTXnFGhK4GT5A','gI_TxK-5S4DNuv42wpImmw','000001000001000015000006','published','WebGUI::Asset::Template',1197825794,'3','997995720','3',NULL,0,NULL),('TEId5V-jEvUULsZA0wuRuA','gI_TxK-5S4DNuv42wpImmw','000001000001000015000007','published','WebGUI::Asset::Template',1197989443,'3','997995720','3',NULL,0,NULL),('6X-7Twabn5KKO_AbgK3PEw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000008','published','WebGUI::Asset::Template',1197987780,'3','997995720','3',NULL,0,NULL),('7JCTAiu1U_bT9ldr655Blw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000009','published','WebGUI::Asset::Template',1197825824,'3','997995720','3',NULL,0,NULL),('0X4Q3tBWUb_thsVbsYz9xQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000010','published','WebGUI::Asset::Template',1197987372,'3','997995720','3',NULL,0,NULL),('m3IbBavqzuKDd2PGGhKPlA','gI_TxK-5S4DNuv42wpImmw','000001000001000015000011','published','WebGUI::Asset::Template',1197825845,'3','997995720','3',NULL,0,NULL),('UTNFeV7B_aSCRmmaFCq4Vw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000012','published','WebGUI::Asset::Template',1197825856,'3','997995720','3',NULL,0,NULL),('zcX-wIUct0S_np14xxOA-A','gI_TxK-5S4DNuv42wpImmw','000001000001000015000013','published','WebGUI::Asset::Template',1197825866,'3','997995720','3',NULL,0,NULL),('MBZK_LPVzqhb4TV4mMRTJg','gI_TxK-5S4DNuv42wpImmw','000001000001000015000014','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_hELmIJfgbAyXFNqPyApxQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000015','published','WebGUI::Asset::Snippet',1197330678,'3','997995720','3',NULL,0,NULL),('_9_eiaPgxzF_x_upt6-PNQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000016','published','WebGUI::Asset::Snippet',1197988920,'3','997995720','3',NULL,0,NULL),('kaPRSaf8UKiskiGEgJgLAw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000017','published','WebGUI::Asset::Wobject::Folder',1197330678,'3','997995720','3',NULL,0,NULL),('bANo8aiAPA7aY_oQZKxIWw','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000001','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('2ci_v2d4x4uvyjTRlC49OA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000002','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('O-EsSzKgAk1KolFT-x_KsA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000003','published','WebGUI::Asset::File::Image',1197330678,'3','997995720','3',NULL,0,NULL),('fdd8tGExyVwHyrB8RBbKXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000004','published','WebGUI::Asset::File::Image',1197330839,'3','997995720','3',NULL,0,NULL),('BpisgHl4ZDcSECJp6oib1w','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000005','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('zshreRgPAXtnF0DtVbQ1Yg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000006','published','WebGUI::Asset::File::Image',1197330840,'3','997995720','3',NULL,0,NULL),('mM3bjP_iG9sv5nQb4S17tQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000018','published','WebGUI::Asset::Template',1197879662,'3','997995720','3',NULL,0,NULL),('ilu5BrM-VGaOsec9Lm7M6Q','gI_TxK-5S4DNuv42wpImmw','000001000001000015000019','published','WebGUI::Asset::Template',1197878780,'3','997995720','3',NULL,0,NULL),('-ANLpoTEP-n4POAdRxCzRw','gI_TxK-5S4DNuv42wpImmw','000001000001000015000020','published','WebGUI::Asset::Template',1197880641,'3','997995720','3',NULL,0,NULL),('OxJWQgnGsgyGohP2L3zJPQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000021','published','WebGUI::Asset::Template',1204663962,'3','997995720','3',NULL,0,NULL),('Tsg7xmPYv782j6IVz7yHFg','PBasset000000000000002','000001000001000006','published','WebGUI::Asset::Wobject::Folder',1204890713,'3','997995720','3',NULL,0,NULL),('kj3b-X3i6zRKnhLb4ZiCLw','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000001','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('uRL9qtk7Rb0YRJ41LmHOJw','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000002','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarWeek0000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000003','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarDay00000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000004','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEvent000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000005','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarEventEdit00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000006','published','WebGUI::Asset::Template',1205160982,'3','997995720','3',NULL,0,NULL),('CalendarMonth000000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000007','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarSearch00000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000008','published','WebGUI::Asset::Template',1204890713,'3','997995720','3',NULL,0,NULL),('CalendarPrintEvent0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000009','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintMonth0001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000010','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintWeek00001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000011','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('CalendarPrintDay000001','Tsg7xmPYv782j6IVz7yHFg','000001000001000006000012','published','WebGUI::Asset::Template',1204890714,'3','997995720','3',NULL,0,NULL),('jnYdqDkUR8x7Pv2eGR1qTA','PBasset000000000000002','000001000001000046','published','WebGUI::Asset::Wobject::Folder',1205431513,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000001','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000001','published','WebGUI::Asset::Template',1205003608,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000002','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000002','published','WebGUI::Asset::Template',1205003676,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000003','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000003','published','WebGUI::Asset::Template',1205003711,'3','997995720','3',NULL,0,NULL),('ThingyTmpl000000000004','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000004','published','WebGUI::Asset::Template',1205158717,'3','997995720','3',NULL,0,NULL),('7fE8md51vTCcuJFOvxNaGA','gI_TxK-5S4DNuv42wpImmw','000001000001000015000022','published','WebGUI::Asset::Snippet',1205443600,'3','997995720','3',NULL,0,NULL),('1oGhfj00KkCzP1ez01AfKA','gI_TxK-5S4DNuv42wpImmw','000001000001000015000023','published','WebGUI::Asset::Snippet',1205635970,'3','997995720','3',NULL,0,NULL),('3qiVYhNTXMVC5hfsumVHgg','gI_TxK-5S4DNuv42wpImmw','000001000001000015000024','published','WebGUI::Asset::Snippet',1206743306,'3','997995720','3',NULL,0,NULL),('vrKXEtluIhbmAS9xmPukDA','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000010','published','WebGUI::Asset::Template',1212092352,'3','1222802925','3',NULL,0,NULL),('4qh0kIsFUdd4Ox-Iu1JZgg','PBasset000000000000002','000001000001000012','published','WebGUI::Asset::Wobject::Folder',1208725439,'3','997995720','3',NULL,0,NULL),('BMybD3cEnmXVk2wQ_qEsRQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000001','published','WebGUI::Asset::Template',1208530113,'3','997995720','3',NULL,0,NULL),('OOyMH33plAy6oCj_QWrxtg','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000002','published','WebGUI::Asset::Template',1207951375,'3','997995720','3',NULL,0,NULL),('2rC4ErZ3c77OJzJm7O5s3w','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000003','published','WebGUI::Asset::Template',1208721232,'3','997995720','3',NULL,0,NULL),('PsFn7dJt4wMwBa8hiE3hOA','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000004','published','WebGUI::Asset::Template',1208558071,'3','997995720','3',NULL,0,NULL),('yBwydfooiLvhEFawJb0VTQ','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000005','published','WebGUI::Asset::Template',1208629936,'3','997995720','3',NULL,0,NULL),('63ix2-hU0FchXGIWkG3tow','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000011','published','WebGUI::Asset::Template',1209588387,'3','1222802925','3',NULL,0,NULL),('POVcY79vIqAHR8OfGt36aw','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000007','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('hIB-z34r8Xl-vYVYCkKr-w','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000008','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('-mPUoFlYcjqjPUPRLAlxNQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000009','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MDpUOR-N8KMyt1J7Hh_h4w','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000010','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('YfXKByTwDZVituMc4h13Dg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000011','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('esko_HSU0Gh-uJZ1h3xRmQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000012','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('oSqpGswzpBG_ErdfYwIO8A','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000013','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('MXJklShZvLLB_DSnZQmXrQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000014','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('BthxD5oJ0idmsyI3ioA2FA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000015','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('aZ-1HYQamkRHYXvzAra8WQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000016','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('eRkb94OYcS5AdcrrerOP5Q','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000017','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TbnkjAJQEASORXIpYqDkcA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000018','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('er-3faBjY-hhlDcc5aKqdQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000019','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('8bFsu2FJUqHRUiHcozcVFw','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000020','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('34Aayx5eA320D8VfhdfDBw','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000021','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('TlhKOVmWblZOsAdqmhEpeg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000022','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('Nx0ypjO3cN6QdZUBUEE0lA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000023','published','WebGUI::Asset::File::Image',1209499189,'3','997995720','3',NULL,0,NULL),('CmFZLN7iPS7XXvUEsxKPKA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000024','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('v_XBgwwZqgW1D5s4y05qfg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000025','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('4TdAkKoQbSCvI7QWcW889A','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000026','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('SAgK6eDPCG1cgkJ59WapHQ','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000027','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('XJYLuvGy9ubF7JNKyINtpA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000028','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('RWj7hyv2SpZuXxwj1Wocug','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000029','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('aq8QElnlm3YufAoxRz9Pcg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000030','published','WebGUI::Asset::File::Image',1209499190,'3','997995720','3',NULL,0,NULL),('gbnRhcWNk1iQe32LFEB5eQ','PBasset000000000000002','000001000001000037','published','WebGUI::Asset::Wobject::Folder',1210779723,'3','997995720','3',NULL,0,NULL),('6tK47xsaIH-ELw0IBo0uRQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000037000001','published','WebGUI::Asset::Wobject::Folder',1210777115,'3','997995720','3',NULL,0,NULL),('_bZJ9LA_KNekZiFPaP2SeQ','6tK47xsaIH-ELw0IBo0uRQ','000001000001000037000001000001','published','WebGUI::Asset::File::Image',1210777868,'3','997995720','3',NULL,0,NULL),('nFen0xjkZn8WkpM93C9ceQ','gbnRhcWNk1iQe32LFEB5eQ','000001000001000037000002','published','WebGUI::Asset::Template',1210779326,'3','997995720','3',NULL,0,NULL),('1XOJDcg_ITRYwVM-QnIcPw','gbnRhcWNk1iQe32LFEB5eQ','000001000001000037000003','published','WebGUI::Asset::Snippet',1210779441,'3','997995720','3',NULL,0,NULL),('4e-_rNs6mSWedZhQ_V5kJA','gbnRhcWNk1iQe32LFEB5eQ','000001000001000037000004','published','WebGUI::Asset::Snippet',1210779672,'3','997995720','3',NULL,0,NULL),('eqb9sWjFEVq0yHunGV8IGw','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000012','published','WebGUI::Asset::Template',1213182595,'3','1222802925','3',NULL,0,NULL),('6D4Z-oruXPS6OlH_Kx8pBg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000005','published','WebGUI::Asset::Wobject::Folder',1209509389,'3','997995720','3',NULL,0,NULL),('hQ7z33_jOYkQ8WNX5xy9Sw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000001','published','WebGUI::Asset::File::Image',1209509455,'3','997995720','3',NULL,0,NULL),('vWW_DcHiYSrKZOkkIfEfcQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000002','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('_bPYzRA87NTAUIKlfrJMHg','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000003','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('nJjZHRwdDs5MAZYsAyioHw','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000004','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8hxfkrJPeFVRWF5piCNJ1A','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000005','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('Osx7WN52iIKHZFT4vqUBHQ','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000006','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('oWff8fGzRdHPyq5VNREe9Q','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000007','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('uqbkvb1b9443VvfkyRz95w','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000008','published','WebGUI::Asset::File::Image',1209509433,'3','997995720','3',NULL,0,NULL),('8YiMkcz32xalkAn3WBLpag','6D4Z-oruXPS6OlH_Kx8pBg','000001000001000046000005000009','published','WebGUI::Asset::File::Image',1210181860,'3','997995720','3',NULL,0,NULL),('3n3H85BsdeRQ0I08WmvlOg','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000006','published','WebGUI::Asset::Snippet',1212091492,'3','997995720','3',NULL,0,NULL),('5m5I7__l40C4hhv4ydqAHQ','jnYdqDkUR8x7Pv2eGR1qTA','000001000001000046000007','published','WebGUI::Asset::Snippet',1210181698,'3','997995720','3',NULL,0,NULL),('C5fPz-Wg85vkYRvCdl-Xqw','PBasset000000000000002','000001000001000049','published','WebGUI::Asset::Wobject::Folder',1212160830,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000001','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000049000001','published','WebGUI::Asset::Template',1212159641,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000002','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000049000002','published','WebGUI::Asset::Template',1212000800,'3','997995720','3',NULL,0,NULL),('UserListTmpl0000000003','C5fPz-Wg85vkYRvCdl-Xqw','000001000001000049000003','published','WebGUI::Asset::Template',1212001437,'3','997995720','3',NULL,0,NULL),('usuxw9V3jN4d4pujRiEYxg','7-0-style0000000000049','000001000001000053000023','published','WebGUI::Asset::Snippet',1209494150,'3','997995720','3',NULL,0,NULL),('aNmgn0cd6tldmC1FpW4KbA','PBasset000000000000002','000001000001000038','published','WebGUI::Asset::Wobject::Folder',1213122695,'3','997995720','3',NULL,0,NULL),('2q5fxatSFLgIhXaUX-oSvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000001','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('_d5WTkKjnwct-_Dk7gZHvQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000002','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('Iz2mUR3jCPKyemwAea4b2g','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000003','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('JU9bjsLRoWj7GVHs__prig','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000004','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('noOlnjQGexHg8c4bGVUo9g','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000005','published','WebGUI::Asset::File::Image',1204149033,'3','997995720','3',NULL,0,NULL),('aIpCmr9Hi__vgdZnDTz1jw','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000006','published','WebGUI::Asset::Template',1209921197,'3','997995720','3',NULL,0,NULL),('XNd7a_g_cTvJVYrVHcx2Mw','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000007','published','WebGUI::Asset::Template',1212099009,'3','997995720','3',NULL,0,NULL),('2gtFt7c0qAFNU3BG_uvNvg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000008','published','WebGUI::Asset::Template',1211824430,'3','997995720','3',NULL,0,NULL),('bPz1yk6Y9uwMDMBcmMsSCg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000009','published','WebGUI::Asset::Template',1211829604,'3','997995720','3',NULL,0,NULL),('3womoo7Teyy2YKFa25-MZg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000013','published','WebGUI::Asset::Template',1212098997,'3','1222802925','3',NULL,0,NULL),('EBlxJpZQ9o-8VBOaGQbChA','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000014','published','WebGUI::Asset::Template',1212093746,'3','1222802925','3',NULL,0,NULL),('g8W53Pd71uHB9pxaXhWf_A','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000015','published','WebGUI::Asset::Template',1213184121,'3','1222802925','3',NULL,0,NULL),('mTOiwwk3q4k9g5-XykXhPA','68sKwDgf9cGH58-NZcU4lg','000001000002000005','published','WebGUI::Asset::Wobject::Layout',1215717999,'3','1215733893','3',NULL,0,NULL),('j_1qEqM6iLfQLiR6VKy0aA','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000001','published','WebGUI::Asset::Wobject::Article',1215718151,'3','1215733893','3',NULL,0,NULL),('o_pq_e4vRyhMOKFzs61eag','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000002','published','WebGUI::Asset::File::Image',1215714957,'3','1215733893','3',NULL,0,NULL),('diZvW4bSgZWwyyGP3qXi1g','mTOiwwk3q4k9g5-XykXhPA','000001000002000005000003','published','WebGUI::Asset::Wobject::Article',1215717972,'3','1215733893','3',NULL,0,NULL),('PBEmsBadgeTemplate0000','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000006','published','WebGUI::Asset::Template',1221077977,'3','1222802972','3',NULL,0,NULL),('-WM2dt0ZGpDasuL2wWocxg','PBasset000000000000002','000001000001000031','published','WebGUI::Asset::Wobject::Folder',1222803056,'3','997995720','3',NULL,0,NULL),('2OcUWHVsu_L1sDFzIMWYqw','PBasset000000000000002','000001000001000048','published','WebGUI::Asset::Wobject::Folder',1222803070,'3','997995720','3',NULL,0,NULL),('1z9J1O08n_7gVVlBwSRBJQ','PBasset000000000000002','000001000001000005','published','WebGUI::Asset::Wobject::Folder',1222803099,'3','997995720','3',NULL,0,NULL),('zyWi26q9na-iiZqL4yedog','PBasset000000000000002','000001000001000021','published','WebGUI::Asset::Wobject::Folder',1222803114,'3','997995720','3',NULL,0,NULL),('NywJYmGWe1f6EBXJnWg9Xg','PBasset000000000000002','000001000001000030','published','WebGUI::Asset::Wobject::Folder',1222803606,'3','997995720','3',NULL,0,NULL),('UL-ItI4L1Z6-WSuhuXVvsQ','PBasset000000000000002','000001000001000011','published','WebGUI::Asset::Wobject::Folder',1225139673,'3','997995720','3',NULL,0,NULL),('3rjnBVJRO6ZSkxlFkYh_ug','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000011000001','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('TuYPpHx7TUyk08639Pc8Bg','UL-ItI4L1Z6-WSuhuXVvsQ','000001000001000011000002','published','WebGUI::Asset::Template',1225139643,'3','997995720','3',NULL,0,NULL),('THQhn1C-ooj-TLlEP7aIJQ','gI_TxK-5S4DNuv42wpImmw','000001000001000015000025','published','WebGUI::Asset::Snippet',1225313951,'3','1234301624','3',NULL,0,NULL),('jVKLVakT_iA2010_oEuAwg','7-0-style0000000000049','000001000001000053000024','published','WebGUI::Asset::Wobject::Navigation',1224116526,'3','997995720','3',NULL,0,NULL),('QpmlAiYZz6VsKBM-_0wXaw','zyWi26q9na-iiZqL4yedog','000001000001000021000012','published','WebGUI::Asset::Wobject::Folder',1224616691,'3','1234301591','3',NULL,0,NULL),('h_T2xtOxGRQ9QJOR6ebLpQ','QpmlAiYZz6VsKBM-_0wXaw','000001000001000021000012000001','published','WebGUI::Asset::Template',1224616545,'3','1234301591','3',NULL,0,NULL),('4Ekp0kJoJllRRRo_J1Rj6w','QpmlAiYZz6VsKBM-_0wXaw','000001000001000021000012000002','published','WebGUI::Asset::Template',1224616672,'3','1234301591','3',NULL,0,NULL),('gfZOwaTWYjbSoVaQtHBBEw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000001','published','WebGUI::Asset::Template',1226974679,'3','997995720','3',NULL,0,NULL),('c8xrwVuu5QE0XtF9DiVzLw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000002','published','WebGUI::Asset::Template',1226894351,'3','997995720','3',NULL,0,NULL),('0n4HtbXaWa_XJHkFjetnLQ','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000003','published','WebGUI::Asset::Template',1226894994,'3','997995720','3',NULL,0,NULL),('ErEzulFiEKDkaCDVmxUavw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000004','published','WebGUI::Asset::Template',1226895484,'3','997995720','3',NULL,0,NULL),('6uQEULvXFgCYlRWnYzZsuA','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000005','published','WebGUI::Asset::Template',1226896682,'3','997995720','3',NULL,0,NULL),('DUoxlTBXhVS-Zl3CFDpt9g','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000006','published','WebGUI::Asset::Template',1226896802,'3','997995720','3',NULL,0,NULL),('1Q4Je3hKCJzeo0ZBB5YB8g','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000007','published','WebGUI::Asset::Template',1226898445,'3','997995720','3',NULL,0,NULL),('5A8Hd9zXvByTDy4x-H28qw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000008','published','WebGUI::Asset::Template',1226899462,'3','997995720','3',NULL,0,NULL),('VBkY05f-E3WJS50WpdKd1Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000009','published','WebGUI::Asset::Template',1226899241,'3','997995720','3',NULL,0,NULL),('XgcsoDrbC0duVla7N7JAdw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000010','published','WebGUI::Asset::Template',1226973330,'3','997995720','3',NULL,0,NULL),('cR0UFm7I1qUI2Wbpj--08Q','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000011','published','WebGUI::Asset::Template',1226964738,'3','997995720','3',NULL,0,NULL),('SVIhz68689hwUGgcDM-gWw','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000012','published','WebGUI::Asset::Template',1226973314,'3','997995720','3',NULL,0,NULL),('K0YjxqOqr7RupSo6sIdcAg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000003','published','WebGUI::Asset::Wobject::Folder',1227074310,'3','997995720','3',NULL,0,NULL),('zrNpGbT3odfIkg6nFSUy8Q','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000001','published','WebGUI::Asset::Template',1226994016,'3','997995720','3',NULL,0,NULL),('1Yn_zE_dSiNuaBGNLPbxtw','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000002','published','WebGUI::Asset::Template',1226994422,'3','997995720','3',NULL,0,NULL),('AZFU33p0jpPJ-E6qLSWZng','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000003','published','WebGUI::Asset::Template',1226994865,'3','997995720','3',NULL,0,NULL),('AGJBGviWGAwjnwziiPjvDg','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000004','published','WebGUI::Asset::Template',1226995497,'3','997995720','3',NULL,0,NULL),('7Ijdd8SW32lVgg2H8R-Aqw','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000005','published','WebGUI::Asset::Template',1226995714,'3','997995720','3',NULL,0,NULL),('K8F0j_cq_jgo8dvWY_26Ag','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000006','published','WebGUI::Asset::Template',1226995643,'3','997995720','3',NULL,0,NULL),('G5V6neXIDiFXN05oL-U3AQ','K0YjxqOqr7RupSo6sIdcAg','000001000001000002000003000007','published','WebGUI::Asset::Template',1226995768,'3','997995720','3',NULL,0,NULL),('_ilRXNR3s8F2vGJ_k9ePcg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000004','published','WebGUI::Asset::Wobject::Folder',1226643205,'3','997995720','3',NULL,0,NULL),('9ThW278DWLV0-Svf68ljFQ','_ilRXNR3s8F2vGJ_k9ePcg','000001000001000002000004000001','published','WebGUI::Asset::Template',1226647187,'3','997995720','3',NULL,0,NULL),('AOjPG2NHgfL9Cq6dDJ7mew','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000005','published','WebGUI::Asset::Wobject::Folder',1226659753,'3','997995720','3',NULL,0,NULL),('aUDsJ-vB9RgP-AYvPOy8FQ','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000002000005000001','published','WebGUI::Asset::Template',1226660439,'3','997995720','3',NULL,0,NULL),('qaVcU0FFzzraMX_bzELqzw','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000006','published','WebGUI::Asset::Wobject::Folder',1227074362,'3','997995720','3',NULL,0,NULL),('b4n3VyUIsAHyIvT-W-jziA','qaVcU0FFzzraMX_bzELqzw','000001000001000002000006000001','published','WebGUI::Asset::Template',1227074747,'3','997995720','3',NULL,0,NULL),('1IzRpX0tgW7iuCfaU2Kk0A','qaVcU0FFzzraMX_bzELqzw','000001000001000002000006000002','published','WebGUI::Asset::Template',1227079721,'3','997995720','3',NULL,0,NULL),('N716tpSna0iIQTKxS4gTWA','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000007','published','WebGUI::Asset::Template',1226604666,'3','997995720','3',NULL,0,NULL),('GRUNFctldUgop-qRLuo_DA','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000004','published','WebGUI::Asset::Template',1227254010,'3','997995720','3',NULL,0,NULL),('d8jMMMRddSQ7twP4l1ZSIw','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000005','published','WebGUI::Asset::Template',1227248175,'3','997995720','3',NULL,0,NULL),('CxMpE_UPauZA3p8jdrOABw','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000006','published','WebGUI::Asset::Template',1227556536,'3','997995720','3',NULL,0,NULL),('1oBRscNIcFOI-pETrCOspA','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000007','published','WebGUI::Asset::Template',1226009642,'3','997995720','3',NULL,0,NULL),('wAc4azJViVTpo-2NYOXWvg','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000008','published','WebGUI::Asset::Template',1226009650,'3','997995720','3',NULL,0,NULL),('AjhlNO3wZvN5k4i4qioWcg','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000009','published','WebGUI::Asset::Template',1226009658,'3','997995720','3',NULL,0,NULL),('itransact_credentials1','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000018','published','WebGUI::Asset::Template',1228953856,'3','1234301682','3',NULL,0,NULL),('hkj6WeChxFyqfP85UlRP8w','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000006','published','WebGUI::Asset::Snippet',1232664229,'3','997995720','3',NULL,0,NULL),('kJf77eCr9GAMiEzWrzsBTA','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000007','published','WebGUI::Asset::Snippet',1229639255,'3','997995720','3',NULL,0,NULL),('4LQT4-bGW4FkiEQLSY5gvQ','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000008','published','WebGUI::Asset::Snippet',1232400287,'3','997995720','3',NULL,0,NULL),('alraubvBu-YJJ614jAHD5w','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000009','published','WebGUI::Asset::Template',1232664015,'3','997995720','3',NULL,0,NULL),('Vch1Ww7G_JpBhOhXX07RDg','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000010','published','WebGUI::Asset::Wobject::Navigation',1232664082,'3','997995720','3',NULL,0,NULL),('_XfvgNH__bY1ykMiKYSobQ','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000008','published','WebGUI::Asset::Snippet',1233168041,'3','997995720','3',NULL,0,NULL),('HW-sPoDDZR8wBZ0YgFgPtg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000009','published','WebGUI::Asset::Wobject::Folder',1227634350,'3','997995720','3',NULL,0,NULL),('hBpisL-_URyZnh9clR5ohA','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000002000009000001','published','WebGUI::Asset::File::Image',1227634417,'3','997995720','3',NULL,0,NULL),('FOBV6KkifreXa4GmEAUU4A','HW-sPoDDZR8wBZ0YgFgPtg','000001000001000002000009000002','published','WebGUI::Asset::File::Image',1227634447,'3','997995720','3',NULL,0,NULL),('qsG6B24a0SC5KrhQjmdZBw','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000010','published','WebGUI::Asset::Snippet',1233860274,'3','1234301655','3',NULL,0,NULL),('wrq7hMxb1ewQqZ46xmd8Gg','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000011','published','WebGUI::Asset::Snippet',1235706620,'3','1238119575','3',NULL,0,NULL),('matrixtmpl000000000006','LdiozcIUciWuvt3Z-na5Ww','000001000001000022000013','published','WebGUI::Asset::Template',1236889702,'3','1238119576','3',NULL,0,NULL),('-zxyB-O50W8YnL39Ouoc4Q','AOjPG2NHgfL9Cq6dDJ7mew','000001000001000002000005000002','published','WebGUI::Asset::Template',1236959717,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000016','fq1ZkYhH24R5tb96kuT10Q','000001000001000005000005000003','published','WebGUI::Asset::Template',1237407798,'3','1238119553','3',NULL,0,NULL),('RSAMkc6WQmfRE3TOr1_3Mw','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000011','published','WebGUI::Asset::Wobject::Folder',1234828062,'3','1238119589','3',NULL,0,NULL),('ExpireIncResptmpl00001','RSAMkc6WQmfRE3TOr1_3Mw','000001000001000044000011000001','published','WebGUI::Asset::Template',1236752721,'3','1238119589','3',NULL,0,NULL),('XdlKhCDvArs40uqBhvzR3w','PBasset000000000000002','000001000001000057','published','WebGUI::Asset::Template',1254881103,'3','997995720','3',NULL,0,NULL),('VCFhB9WOsDsH2Apj3c6DpQ','PBasset000000000000002','000001000001000058','published','WebGUI::Asset::Template',1254881103,'3','997995720','3',NULL,0,NULL),('NBVSVNLp9X_bV7WrCprtCA','tPagC0AQErZXjLFZQ6OI1g','000001000001000017000002','published','WebGUI::Asset::Template',1237842096,'3','1238119599','3',NULL,0,NULL),('jmlI9IK-lV8n2WMYmmPhAA','PBasset000000000000002','000001000001000001','published','WebGUI::Asset::Wobject::Folder',1238106173,'3','997995720','3',NULL,0,NULL),('AldPGu0u-jm_5xK13atCSQ','jmlI9IK-lV8n2WMYmmPhAA','000001000001000001000001','published','WebGUI::Asset::Template',1238106805,'3','997995720','3',NULL,0,NULL),('ohjyzab5i-yW6GOWTeDUHg','jmlI9IK-lV8n2WMYmmPhAA','000001000001000001000002','published','WebGUI::Asset::Template',1238106805,'3','997995720','3',NULL,0,NULL),('PBtmpl0000000000000015','fq1ZkYhH24R5tb96kuT10Q','000001000001000005000005000002','published','WebGUI::Asset::Template',1237647040,'3','1238119545','3',NULL,0,NULL),('6uvSLY-ak_w4p_wS8q33cA','PBasset000000000000002','000001000001000007','published','WebGUI::Asset::Wobject::Folder',1239213092,'3','997995720','3',NULL,0,NULL),('CarouselTmpl0000000001','6uvSLY-ak_w4p_wS8q33cA','000001000001000007000001','published','WebGUI::Asset::Template',1239290719,'3','997995720','3',NULL,0,NULL),('CarouselTmpl0000000002','6uvSLY-ak_w4p_wS8q33cA','000001000001000007000002','published','WebGUI::Asset::Template',1238878995,'3','997995720','3',NULL,0,NULL),('7F-BuEHi7t9bPi008H8xZQ','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000012','published','WebGUI::Asset::Template',1239248021,'3','1251849727','3',NULL,0,NULL),('GaBAW-2iVhLMJaZQzVLE5A','PBasset000000000000002','000001000001000047','published','WebGUI::Asset::Wobject::Folder',1240103565,'3','997995720','3',NULL,0,NULL),('TKmhv8boP3TD2xwSwUBq0g','GaBAW-2iVhLMJaZQzVLE5A','000001000001000047000001','published','WebGUI::Asset::Template',1240103436,'3','997995720','3',NULL,0,NULL),('fowHfgOkJtAxdst7rugTog','PBasset000000000000002','000001000001000042','published','WebGUI::Asset::Wobject::Folder',1236184911,'3','997995720','3',NULL,0,NULL),('3QpYtHrq_jmAk1FNutQM5A','fowHfgOkJtAxdst7rugTog','000001000001000042000001','published','WebGUI::Asset::Template',1239237827,'3','997995720','3',NULL,0,NULL),('yxD5ka7XHebPLD-LXBwJqw','fowHfgOkJtAxdst7rugTog','000001000001000042000002','published','WebGUI::Asset::Template',1239918573,'3','997995720','3',NULL,0,NULL),('E3tzZjzhmYoNlAyP2VW33Q','fowHfgOkJtAxdst7rugTog','000001000001000042000003','published','WebGUI::Asset::Template',1239236292,'3','997995720','3',NULL,0,NULL),('TbDcVLbbznPi0I0rxQf2CQ','fowHfgOkJtAxdst7rugTog','000001000001000042000004','published','WebGUI::Asset::Template',1237524306,'3','997995720','3',NULL,0,NULL),('A16v-YjWAShXWvSACsraeg','fowHfgOkJtAxdst7rugTog','000001000001000042000005','published','WebGUI::Asset::Template',1239918710,'3','997995720','3',NULL,0,NULL),('0EAJ9EYb9ap2XwfrcXfdLQ','fowHfgOkJtAxdst7rugTog','000001000001000042000006','published','WebGUI::Asset::Template',1240262820,'3','997995720','3',NULL,0,NULL),('b1316COmd9xRv4fCI3LLGA','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000013','published','WebGUI::Asset::Template',1236956475,'3','1251849906','3',NULL,0,NULL),('lo1rpxn3t8YPyKGers5eQg','QHn6T9rU7KsnS3Y70KCNTg','000001000001000002000010','published','WebGUI::Asset::Wobject::Folder',1238625621,'3','1251850125','3',NULL,0,NULL),('64tqS80D53Z0JoAs2cX2VQ','lo1rpxn3t8YPyKGers5eQg','000001000001000002000010000001','published','WebGUI::Asset::Template',1239400975,'3','1251850125','3',NULL,0,NULL),('lG2exkH9FeYvn4pA63idNg','lo1rpxn3t8YPyKGers5eQg','000001000001000002000010000002','published','WebGUI::Asset::Template',1239383808,'3','1251850125','3',NULL,0,NULL),('nWNVoMLrMo059mDRmfOp9g','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000015','published','WebGUI::Asset::Template',1242259265,'3','1251849915','3',NULL,0,NULL),('brxm_faNdZX5tRo3p50g3g','PBasset000000000000002','000001000001000020','published','WebGUI::Asset::Wobject::Folder',1238054297,'3','997995720','3',NULL,0,NULL),('9j0_Z1j3Jd0QBbY2akb6qw','brxm_faNdZX5tRo3p50g3g','000001000001000020000001','published','WebGUI::Asset::Template',1238053232,'3','997995720','3',NULL,0,NULL),('oHh0UqAJeY7u2n--WD-BAA','brxm_faNdZX5tRo3p50g3g','000001000001000020000002','published','WebGUI::Asset::Template',1238040667,'3','997995720','3',NULL,0,NULL),('u9vfx33XDk5la1-QC5FK7g','brxm_faNdZX5tRo3p50g3g','000001000001000020000003','published','WebGUI::Asset::Template',1238048383,'3','997995720','3',NULL,0,NULL),('D6cJpRcey35aSkh9Q_FPUQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000019','published','WebGUI::Asset::Template',1242407725,'3','1251849978','3',NULL,0,NULL),('S2_LsvVa95OSqc66ITAoig','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000007','published','WebGUI::Asset::Template',1242730712,'3','1251849967','3',NULL,0,NULL),('S3zpVitAmhy58CAioH359Q','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000013','published','WebGUI::Asset::Template',1242893798,'3','1251849727','3',NULL,0,NULL),('kwTL1SWCk0GlpiJ5zAAEPQ','5bnNzteN7w3NnK9mF4XiCg','000001000001000044000014','published','WebGUI::Asset::Snippet',1244488512,'3','1251849727','3',NULL,0,NULL),('YP9WaMPJHvCJl-YwrLVcPw','PBasset000000000000002','000001000001000029','published','WebGUI::Asset::Template',1245376837,'3','997995720','3',NULL,0,NULL),('i9-G00ALhJOr0gMh-vHbKA','IZkrow_zwvbf4FCH-taVTQ','000001000001000002000002000014','published','WebGUI::Asset::Template',1250408924,'3','1251849906','3',NULL,0,NULL),('iCM9pRY5yYyjufROgaCDlg','fowHfgOkJtAxdst7rugTog','000001000001000042000007','published','WebGUI::Asset::Snippet',1253305659,'3','997995720','3',NULL,0,NULL),('limMkk80fMB3fqNZVf162w','PBasset000000000000002','000001000001000056','published','WebGUI::Asset::Template',1253507213,'3','997995720','3',NULL,0,NULL),('hreA_bgxiTX-EzWCSZCZJw','4qh0kIsFUdd4Ox-Iu1JZgg','000001000001000012000008','published','WebGUI::Asset::Template',1257311887,'3','997995720','3',NULL,0,NULL),('2GxjjkRuRkdUg_PccRPjpA','PBasset000000000000002','000001000001000059','published','WebGUI::Asset::Template',1257311888,'3','997995720','3',NULL,0,NULL),('_aE16Rr1-bXBf8SIaLZjCg','PBasset000000000000002','000001000001000060','published','WebGUI::Asset::Template',1257311888,'3','997995720','3',NULL,0,NULL),('P_4uog81vSUK4KxuW_4GUA','PBasset000000000000002','000001000001000061','published','WebGUI::Asset::Wobject::Folder',1258524916,'3','997995720','3',NULL,0,NULL),('H_-8zjtWsO1FUpQqNtkxNQ','P_4uog81vSUK4KxuW_4GUA','000001000001000061000001','published','WebGUI::Asset::Snippet',1258524916,'3','997995720','3',NULL,0,NULL),('8tqyQx-LwYUHIWOlKPjJrA','PBasset000000000000002','000001000001000062','published','WebGUI::Asset::Template',1258524917,'3','997995720','3',NULL,0,NULL),('DoVNijm6lMDE0cYrtvEbDQ','PBasset000000000000002','000001000001000063','published','WebGUI::Asset::Template',1258524917,'3','997995720','3',NULL,0,NULL),('ktSvKU8riGimhcsxXwqvPQ','PBasset000000000000002','000001000001000064','published','WebGUI::Asset::Template',1258524917,'3','997995720','3',NULL,0,NULL),('mRtqRuVikSe82BQsYBlD0A','PBasset000000000000002','000001000001000065','published','WebGUI::Asset::Template',1263962529,'3','997995720','3',NULL,0,NULL),('0iMMbGN3BevuCBHjjLiQNA','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000009','published','WebGUI::Asset::Wobject::Folder',1269401469,'3','997995720','3',NULL,0,NULL),('zaHUYsE_PgKk8hnVd8ffEQ','0iMMbGN3BevuCBHjjLiQNA','000001000001000005000009000001','published','WebGUI::Asset::Template',1269401469,'3','997995720','3',NULL,0,NULL),('6A4yIjWwJfIE0Ep-I0jutg','1z9J1O08n_7gVVlBwSRBJQ','000001000001000005000010','published','WebGUI::Asset::Wobject::Folder',1269401469,'3','997995720','3',NULL,0,NULL),('_P4PMiraGsLTfOjK4fYQPQ','6A4yIjWwJfIE0Ep-I0jutg','000001000001000005000010000001','published','WebGUI::Asset::Template',1269401469,'3','997995720','3',NULL,0,NULL),('i6-BofrJJYozovlzFBByXg','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000031','published','WebGUI::Asset::File::Image',1270612331,'3','997995720','3',NULL,0,NULL),('fU_OZCmtdFNJ8a6bMve8ng','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000032','published','WebGUI::Asset::File::Image',1270612331,'3','997995720','3',NULL,0,NULL),('YXCtusAxb4vzZ5sTnUA5DA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000033','published','WebGUI::Asset::File::Image',1270612331,'3','997995720','3',NULL,0,NULL),('k_xuE82wwp8gFVl9aaaG8g','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000034','published','WebGUI::Asset::File::Image',1270612331,'3','997995720','3',NULL,0,NULL),('NPM_WItpM5IzLWBhWjYfCA','kaPRSaf8UKiskiGEgJgLAw','000001000001000015000017000035','published','WebGUI::Asset::File::Image',1270612331,'3','997995720','3',NULL,0,NULL),('qxd0WpRGqDPWP8WBicYvEA','PBasset000000000000002','000001000001000066','published','WebGUI::Asset::Snippet',1271820952,'3','997995720','3',NULL,0,NULL),('30h5rHxzE_Q0CyI3Gg7EJw','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000020','published','WebGUI::Asset::Template',1273032715,'3','997995720','3',NULL,0,NULL),('jysVZeUR0Bx2NfrKs5sulg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000021','published','WebGUI::Asset::Template',1273032715,'3','997995720','3',NULL,0,NULL),('300AozDaeveAjB_KN0ljlQ','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000022','published','WebGUI::Asset::Template',1273032715,'3','997995720','3',NULL,0,NULL),('GqnZPB0gLoZmqQzYFaq7bg','aNmgn0cd6tldmC1FpW4KbA','000001000001000038000023','published','WebGUI::Asset::Template',1273032716,'3','997995720','3',NULL,0,NULL),('t87D1138NhPHhA23-hozBA','PBasset000000000000002','000001000001000067','published','WebGUI::Asset::Wobject::Folder',1273032716,'3','997995720','3',NULL,0,NULL),('QtBumey5ffc-xffRp1-7Aw','t87D1138NhPHhA23-hozBA','000001000001000067000001','published','WebGUI::Asset::Wobject::Folder',1273032716,'3','997995720','3',NULL,0,NULL),('-0sK2rX1cwQt1ipUSqsiQQ','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000001','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('hS_eOaVz9Qb5ixndK9EXAw','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000002','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('k2p-Be8C98pf2cRq7E-JHg','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000003','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('aYG4fjbMPbC4LCuuMp4gGA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000004','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('F122Ey0NtVAw6Lfv1M6G_Q','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000005','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('qmXHKrQ6EDLSOGkrEKRUDA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000006','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('4qZgXjPPO4fwV879yu5XUg','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000007','published','WebGUI::Asset::File::Image',1273032716,'3','997995720','3',NULL,0,NULL),('mb-xeAugm5GJdvu-Wh0MtQ','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000008','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('84Y9CwgzP6eNU7wZnk019Q','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000009','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('ikXTtJKZfHVxqw-47E4AQA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000010','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('DhRWPTgzhvju_-TbMN3CwA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000011','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('6njI-pZz2bwsjWh-Q1_11g','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000012','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('_Hz1Gnd3yEnJzVS7l7nJMQ','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000013','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('VOOrXK5dFnkGih7aTkuDWA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000014','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('ruf-QejOkUHDRtfgakHlbA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000015','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('FSHy5KjQjkt599PHS41seA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000016','published','WebGUI::Asset::File::Image',1273032717,'3','997995720','3',NULL,0,NULL),('nuYYXAz4KNNxgfumfnpo_g','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000017','published','WebGUI::Asset::File::Image',1273032718,'3','997995720','3',NULL,0,NULL),('Mr7ljjoy6n4fZojpQWajKQ','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000018','published','WebGUI::Asset::File::Image',1273032718,'3','997995720','3',NULL,0,NULL),('ApkqpDOrJDxK3QrWBGSRIg','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000019','published','WebGUI::Asset::File::Image',1273032718,'3','997995720','3',NULL,0,NULL),('AzzTY0Lay1f_YGeQJFnQCA','QtBumey5ffc-xffRp1-7Aw','000001000001000067000001000020','published','WebGUI::Asset::File::Image',1273032718,'3','997995720','3',NULL,0,NULL),('OiJNwP1gAlcva8_yOtL4gA','t87D1138NhPHhA23-hozBA','000001000001000067000002','published','WebGUI::Asset::Template',1273032718,'3','997995720','3',NULL,0,NULL),('JOuCU4x5BJfVHfkfMkVQdQ','t87D1138NhPHhA23-hozBA','000001000001000067000003','published','WebGUI::Asset::Snippet',1273032718,'3','997995720','3',NULL,0,NULL),('Am1J-meNBmhqFfEIWy6Gag','t87D1138NhPHhA23-hozBA','000001000001000067000004','published','WebGUI::Asset::Wobject::Navigation',1273032718,'3','997995720','3',NULL,0,NULL),('gaIOm5cr2TkT9Fk6QmZWug','t87D1138NhPHhA23-hozBA','000001000001000067000005','published','WebGUI::Asset::Template',1273032718,'3','997995720','3',NULL,0,NULL),('w0QifHLhsrzeOpFKl-DX-Q','t87D1138NhPHhA23-hozBA','000001000001000067000006','published','WebGUI::Asset::Snippet',1273032718,'3','997995720','3',NULL,0,NULL),('x_hiUi1XZloBvV47Obnu8Q','t87D1138NhPHhA23-hozBA','000001000001000067000007','published','WebGUI::Asset::Wobject::Navigation',1273032718,'3','997995720','3',NULL,0,NULL),('hpCk0B3vQzgc-QJhSol41w','t87D1138NhPHhA23-hozBA','000001000001000067000008','published','WebGUI::Asset::Template',1273032718,'3','997995720','3',NULL,0,NULL),('UUwEL6hLEPdrnkZnKRzFYQ','t87D1138NhPHhA23-hozBA','000001000001000067000009','published','WebGUI::Asset::Wobject::Search',1273032718,'3','997995720','3',NULL,0,NULL),('OfKbvK7CrfMnfc8WDoF4Rg','t87D1138NhPHhA23-hozBA','000001000001000067000010','published','WebGUI::Asset::Template',1273032718,'3','997995720','3',NULL,0,NULL),('CQp-RFA2pMh5lFSggPPPYg','PBasset000000000000002','000001000001000068','published','WebGUI::Asset::Wobject::Folder',1273032719,'3','997995720','3',NULL,0,NULL),('_Mi_NTd3x8UB96LWezWHnw','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000001','published','WebGUI::Asset::Wobject::Folder',1273032719,'3','997995720','3',NULL,0,NULL),('A_5LVQQWR73QZR8FFbny_w','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000001','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('wywIfa_VuTsq0c5Ed-W-MA','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000002','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('xmykMFjri1O2NrYHbeToVQ','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000003','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('0IIGNBs_-INzqBC5VLeJgw','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000004','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('FXmePdyS0YKuZ1VCGGpK9w','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000005','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('66qCywiE_fiL9u5YIaJhgw','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000006','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('n5VpG4lFsOG1elaWDQbilw','_Mi_NTd3x8UB96LWezWHnw','000001000001000068000001000007','published','WebGUI::Asset::File::Image',1273032719,'3','997995720','3',NULL,0,NULL),('g3JH1PRq6m6Bj_PnGpcrSQ','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000002','published','WebGUI::Asset::Wobject::Folder',1273032719,'3','997995720','3',NULL,0,NULL),('egpnaaFqWmJwYTZ5CvFH9g','g3JH1PRq6m6Bj_PnGpcrSQ','000001000001000068000002000001','published','WebGUI::Asset::Snippet',1273032719,'3','997995720','3',NULL,0,NULL),('BBpxqoSseIor5C9ei9JEFQ','g3JH1PRq6m6Bj_PnGpcrSQ','000001000001000068000002000002','published','WebGUI::Asset::Snippet',1273032719,'3','997995720','3',NULL,0,NULL),('G0hl4VilbFKipToyxKqFrg','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000003','published','WebGUI::Asset::Wobject::Folder',1273032719,'3','997995720','3',NULL,0,NULL),('GWU2qZqe6yEuAKG-5HtBdg','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000004','published','WebGUI::Asset::Wobject::Folder',1273032719,'3','997995720','3',NULL,0,NULL),('Qk24uXao2yowR6zxbVJ0xA','GWU2qZqe6yEuAKG-5HtBdg','000001000001000068000004000001','published','WebGUI::Asset::Template',1273032719,'3','997995720','3',NULL,0,NULL),('39KNX53B4nYJAyIE1lu8ZQ','GWU2qZqe6yEuAKG-5HtBdg','000001000001000068000004000002','published','WebGUI::Asset::Template',1273032720,'3','997995720','3',NULL,0,NULL),('ztfi__vHJLsQDsMenrEn-w','GWU2qZqe6yEuAKG-5HtBdg','000001000001000068000004000003','published','WebGUI::Asset::Template',1273032720,'3','997995720','3',NULL,0,NULL),('8qyrDCNeggB4dzKiOoRuiQ','GWU2qZqe6yEuAKG-5HtBdg','000001000001000068000004000004','published','WebGUI::Asset::Template',1273032720,'3','997995720','3',NULL,0,NULL),('M1NyNeS5jpdIsiIWFiJprw','GWU2qZqe6yEuAKG-5HtBdg','000001000001000068000004000005','published','WebGUI::Asset::Template',1273032720,'3','997995720','3',NULL,0,NULL),('AsfpsOpsGzZCb9m7MyxPuw','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000005','published','WebGUI::Asset::Wobject::Folder',1273032720,'3','997995720','3',NULL,0,NULL),('n-Vr_wgxOkwiHGt1nJto9w','AsfpsOpsGzZCb9m7MyxPuw','000001000001000068000005000001','published','WebGUI::Asset::Wobject::Navigation',1273032720,'3','997995720','3',NULL,0,NULL),('jmqLxnoWb6p92Cr12lf1hw','AsfpsOpsGzZCb9m7MyxPuw','000001000001000068000005000002','published','WebGUI::Asset::Wobject::Navigation',1273032720,'3','997995720','3',NULL,0,NULL),('8E2UOnj_XPEghTj7nfVM0g','CQp-RFA2pMh5lFSggPPPYg','000001000001000068000006','published','WebGUI::Asset::Wobject::Search',1273032720,'3','997995720','3',NULL,0,NULL),('1qFjOEiILIwr1xB5_ebppQ','PBasset000000000000002','000001000001000069','published','WebGUI::Asset::Wobject::Folder',1273032721,'3','997995720','3',NULL,0,NULL),('xD76UfQ_JnSgTLBNvytcpQ','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000001','published','WebGUI::Asset::Wobject::Folder',1273032721,'3','997995720','3',NULL,0,NULL),('pAXR7Kby4O-dSxOwLp1GaA','xD76UfQ_JnSgTLBNvytcpQ','000001000001000069000001000001','published','WebGUI::Asset::File::Image',1273032721,'3','997995720','3',NULL,0,NULL),('TthzMLO4n3qxy59QZ5YBHg','xD76UfQ_JnSgTLBNvytcpQ','000001000001000069000001000002','published','WebGUI::Asset::File::Image',1273032721,'3','997995720','3',NULL,0,NULL),('3n31SQjYa150TBrRBgMPhA','xD76UfQ_JnSgTLBNvytcpQ','000001000001000069000001000003','published','WebGUI::Asset::File::Image',1273032721,'3','997995720','3',NULL,0,NULL),('R4RxDufGbbIzEmpcoEcLrw','xD76UfQ_JnSgTLBNvytcpQ','000001000001000069000001000004','published','WebGUI::Asset::File::Image',1273032721,'3','997995720','3',NULL,0,NULL),('xyyn5mz3xGyvrcI1rY8C-w','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000002','published','WebGUI::Asset::Snippet',1273032721,'3','997995720','3',NULL,0,NULL),('KKt0VB_eoQxw9xEsHsAhag','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000003','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('h0bOzz7WvdaVZXsjpwtkww','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000004','published','WebGUI::Asset::Wobject::Navigation',1273032721,'3','997995720','3',NULL,0,NULL),('_z3ukLCqvoaUygfsbbkBzw','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000005','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('qFOfW1sKyOTnGNcP6BXbwg','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000006','published','WebGUI::Asset::Wobject::Navigation',1273032721,'3','997995720','3',NULL,0,NULL),('Pt38T5_MWSue2e1N36MLdw','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000007','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('LDcM1Iop17nF2MoSa7zo_Q','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000008','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('hVF1taXj4bfd7DuL4XDMYg','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000009','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('x4-2QYRSrIB_BJfnSKKj4w','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000010','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('423R4Y6XIt3wUzlnLo-chg','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000011','published','WebGUI::Asset::Template',1273032721,'3','997995720','3',NULL,0,NULL),('oZ1Mk-zExYUyD-JsjTvaHg','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000012','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('mYwS8CZaOLMt0raaKXGZcQ','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000013','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('kSGR4OHsKmhLQTuLkisOww','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000014','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('G5DgNizuG3jXkjPp6UaGrA','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000015','published','WebGUI::Asset::Wobject::Folder',1273032722,'3','997995720','3',NULL,0,NULL),('U78V5IJHVljvRTb6ydsTHg','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000001','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('Xqc3qPUXoFE8dt9qocdWig','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000002','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('IBTb7wllSt7RxFmmvm9pkQ','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000003','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('Z1EM7JMI_4SkyfaZffSElw','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000004','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('fJg7SKpGZwzSNx3_ebki1A','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000005','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('ihf4Rx6p72xn_nVKaIeOaw','G5DgNizuG3jXkjPp6UaGrA','000001000001000069000015000006','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('jrWJ6nHXkqgFbml7BZ9chw','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000016','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('Ys6f3vpe0y1uRcaCJ2TlFw','1qFjOEiILIwr1xB5_ebppQ','000001000001000069000017','published','WebGUI::Asset::Template',1273032722,'3','997995720','3',NULL,0,NULL),('default_CS_unsubscribe','GNOAsX98vCsl0JRwfwL-gg','000001000001000008000030','published','WebGUI::Asset::Template',1274238758,'3','997995720','3',NULL,0,NULL),('mfHGkp6t9gdclmzN33OEnw','PBasset000000000000002','000001000001000070','published','WebGUI::Asset::Template',1277868927,'3','997995720','3',NULL,0,NULL); -ALTER TABLE `asset` ENABLE KEYS; -ALTER TABLE `assetAspectRssFeed` DISABLE KEYS; -INSERT INTO `assetAspectRssFeed` VALUES ('fK-HMSboA3uu0c1KYkYspA',1124395696,25,NULL,'','',NULL,'','','rss\natom'),('pbproto000000000000002',1163019036,25,NULL,'','',NULL,'','',''); -ALTER TABLE `assetAspectRssFeed` ENABLE KEYS; -ALTER TABLE `assetData` DISABLE KEYS; -INSERT INTO `assetData` VALUES ('PBasset000000000000001',1124395696,'3','pbversion0000000000001','approved','Root','Root','root','3','7','3',NULL,0,1,0,0,0,158,NULL,0,1,0,1242380151,NULL,0),('PBasset000000000000002',1124395696,'3','pbversion0000000000001','approved','Import Node','Import','root/import','3','7','12',NULL,0,1,0,0,0,309,NULL,0,1,0,1242380151,NULL,0),('68sKwDgf9cGH58-NZcU4lg',1124395696,'3','pbversion0000000000001','approved','Home','Home','home','3','7','3',NULL,0,0,0,0,0,354,NULL,0,1,0,1242380142,NULL,0),('_iHetEvMQUOoxS-T2CM0sQ',1124395696,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started','3','7','3',NULL,0,0,0,0,0,370,NULL,0,1,0,1242380165,NULL,0),('8Bb8gu-me2mhL3ljFyiWLg',1124395696,'3','pbversion0000000000001','approved','What should you do next?','Your Next Step','your_next_step','3','7','3',NULL,0,0,0,0,0,539,NULL,0,1,0,1242380146,NULL,0),('Vzv1pWpg_w6R_o-b0rM2qQ',1147642515,'3','pbversion0000000000001','approved','Ad','Ad','home/ad2','3','7','4',NULL,0,1,0,0,0,2155188,NULL,0,1,0,1242380164,NULL,0),('NK8bqlwVRILJknqeCDPBHg',1147642515,'3','pbversion0000000000001','approved','Getting Started (part 2)','Getting Started (part 2)','getting_started/getting-started-part2','3','7','4',NULL,0,1,0,0,0,1693,NULL,0,1,0,1242380151,NULL,0),('6QuS-0rosuZTdTv11fobig',1147642515,'3','pbversion0000000000001','approved','Talk to the Experts','Talk to the Experts','yns/experts','3','7','4',NULL,0,1,0,0,0,703,NULL,0,1,0,1242380142,NULL,0),('ix1p0AbwKAz8QWB-T-HHfg',1147642516,'3','pbversion0000000000001','approved','Get Support','Get Support','yns/support','3','7','4',NULL,0,1,0,0,0,739,NULL,0,1,0,1242380149,NULL,0),('4Yfz9hqBqM8OYMGuQK8oLw',1147642516,'3','pbversion0000000000001','approved','Get Features','Get Features','yns/features','3','7','4',NULL,0,1,0,0,0,772,NULL,0,1,0,1242380142,NULL,0),('LBuiKzg2mWwmOPS9AgV3bg',1147642517,'3','pbversion0000000000001','approved','Get Translated','Get Translated','yns/translated','3','7','4',NULL,0,1,0,0,0,728,NULL,0,1,0,1242380150,NULL,0),('jTNggl7AoVSUc_ZzrvuCmw',1147642517,'3','pbversion0000000000001','approved','Get Promoted','Get Promoted','yns/promotion','3','7','4',NULL,0,1,0,0,0,721,NULL,0,1,0,1242380150,NULL,0),('2TqQc4OISddWCZmRY1_m8A',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news','3','7','3',NULL,0,0,0,0,0,370,NULL,0,1,0,1242380142,NULL,0),('fK-HMSboA3uu0c1KYkYspA',1124395696,'3','pbversion0000000000001','approved','The Latest News','The Latest News','the_latest_news/the_latest_news','3','7','3',NULL,0,1,0,0,0,513,NULL,0,1,0,1242380148,NULL,0),('Swf6L8poXKc7hUaNPkBevw',1124395696,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend','3','7','3',NULL,0,0,0,0,0,364,NULL,0,1,0,1242380163,NULL,0),('x3OFY6OJh_qsXkZfPwug4A',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map','3','7','3',NULL,0,0,0,0,0,349,NULL,0,1,0,1242380165,NULL,0),('pJd5TLAjfWMVXD6sCRLwUg',1124395696,'3','pbversion0000000000001','approved','Site Map','Site Map','site_map/site_map','3','7','3',NULL,0,1,0,0,0,364,NULL,0,1,0,1242380162,NULL,0),('7-0-style0000000000003',1147642492,'3','pbversion0000000000001','approved','css01.css','css01.css','style1/css01.css','3','7','12',NULL,0,0,0,0,0,9086,NULL,0,1,0,1242380143,NULL,0),('PBnav00000000000000001',1124395696,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail','3','7','12',NULL,0,1,0,0,0,371,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000014',1124395696,'3','pbversion0000000000001','approved','FlexMenu','FlexMenu','flexmenu','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000015',1124395696,'3','pbversion0000000000001','approved','currentMenuVertical','currentMenuVertical','currentmenuvertical','3','7','12',NULL,0,1,0,0,0,394,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000016',1124395696,'3','pbversion0000000000001','approved','currentMenuHorizontal','currentMenuHorizontal','currentmenuhorizontal','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000017',1124395696,'3','pbversion0000000000001','approved','PreviousDropMenu','PreviousDropMenu','previousdropmenu','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000018',1124395696,'3','pbversion0000000000001','approved','previousMenuVertical','previousMenuVertical','previousmenuvertical','3','7','12',NULL,0,1,0,0,0,398,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000019',1124395696,'3','pbversion0000000000001','approved','previousMenuHorizontal','previousMenuHorizontal','previousmenuhorizontal','3','7','12',NULL,0,1,0,0,0,404,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000020',1124395696,'3','pbversion0000000000001','approved','rootmenu','rootmenu','rootmenu','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000021',1124395696,'3','pbversion0000000000001','approved','SpecificDropMenu','SpecificDropMenu','specificdropmenu','3','7','12',NULL,0,1,0,0,0,379,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000002',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuVertical','SpecificSubMenuVertical','specificsubmenuvertical','3','7','12',NULL,0,1,0,0,0,400,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000006',1124395696,'3','pbversion0000000000001','approved','SpecificSubMenuHorizontal','SpecificSubMenuHorizontal','specificsubmenuhorizontal','3','7','12',NULL,0,1,0,0,0,406,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000007',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuVertical','TopLevelMenuVertical','toplevelmenuvertical','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000008',1124395696,'3','pbversion0000000000001','approved','TopLevelMenuHorizontal','TopLevelMenuHorizontal','toplevelmenuhorizontal','3','7','12',NULL,0,1,0,0,0,397,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000009',1124395696,'3','pbversion0000000000001','approved','RootTab','RootTab','roottab','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000010',1124395696,'3','pbversion0000000000001','approved','TopDropMenu','TopDropMenu','topdropmenu','3','7','12',NULL,0,1,0,0,0,364,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000011',1124395696,'3','pbversion0000000000001','approved','dtree','dtree','dtree','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000012',1124395696,'3','pbversion0000000000001','approved','coolmenu','coolmenu','coolmenu','3','7','12',NULL,0,1,0,0,0,356,NULL,0,1,0,1247779653,NULL,0),('PBnav00000000000000013',1124395696,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis','3','7','12',NULL,0,1,0,0,0,367,NULL,0,1,0,1247779653,NULL,0),('7-0-style0000000000006',1147642493,'3','pbversion0000000000001','approved','main_bg.gif','main_bg.gif','style1/main_bg.gif','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('PBrichedit000000000002',1124395696,'3','pbversion0000000000001','approved','Forum Rich Edit','Forum Rich Edit','forum_rich_edit','3','7','12',NULL,0,0,0,0,0,873,NULL,0,1,0,1242380152,NULL,0),('7-0-style0000000000068',1147642510,'3','pbversion0000000000001','approved','spacer.gif','spacer.gif','style3/spacer.gif','3','7','12',NULL,0,0,0,0,0,358,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000066',1147642509,'3','pbversion0000000000001','approved','nav_bg_on.jpg','nav_bg_on.jpg','style3/nav_bg_on.jpg','3','7','12',NULL,0,0,0,0,0,658,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000067',1147642509,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style3/pb.jpg','3','7','12',NULL,0,0,0,0,0,24981,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000062',1147642508,'3','pbversion0000000000001','approved','nav_bg1.jpg','nav_bg1.jpg','style3/nav_bg1.jpg','3','7','12',NULL,0,0,0,0,0,672,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000063',1147642508,'3','pbversion0000000000001','approved','nav_bg1_on.jpg','nav_bg1_on.jpg','style3/nav_bg1_on.jpg','3','7','12',NULL,0,0,0,0,0,683,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000064',1147642509,'3','pbversion0000000000001','approved','nav_bg2.jpg','nav_bg2.jpg','style3/nav_bg2.jpg','3','7','12',NULL,0,0,0,0,0,675,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000065',1147642509,'3','pbversion0000000000001','approved','nav_bg2_on.jpg','nav_bg2_on.jpg','style3/nav_bg2_on.jpg','3','7','12',NULL,0,0,0,0,0,688,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000061',1147642508,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style3/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,669,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000057',1147642507,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style3/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,639,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000058',1147642507,'3','pbversion0000000000001','approved','main_bottom.jpg','main_bottom.jpg','style3/main_bottom.jpg','3','7','12',NULL,0,0,0,0,0,2630,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000060',1147642508,'3','pbversion0000000000001','approved','main_top_bg.jpg','main_top_bg.jpg','style3/main_top_bg.jpg','3','7','12',NULL,0,0,0,0,0,687,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000054',1147642506,'3','pbversion0000000000001','approved','header_bg.jpg','header_bg.jpg','style3/header_bg.jpg','3','7','12',NULL,0,0,0,0,0,715,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000055',1147642506,'3','pbversion0000000000001','approved','header_left.jpg','header_left.jpg','style3/header_left.jpg','3','7','12',NULL,0,0,0,0,0,23983,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000056',1147642506,'3','pbversion0000000000001','approved','header_right.jpg','header_right.jpg','style3/header_right.jpg','3','7','12',NULL,0,0,0,0,0,24757,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000053',1147642505,'3','pbversion0000000000001','approved','footer_right.jpg','footer_right.jpg','style3/footer_right.jpg','3','7','12',NULL,0,0,0,0,0,2886,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000052',1147642505,'3','pbversion0000000000001','approved','footer_bg.jpg','footer_bg.jpg','style3/footer_bg.jpg','3','7','12',NULL,0,0,0,0,0,680,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000048',1147642504,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style2/wg.jpg','3','7','12',NULL,0,0,0,0,0,20795,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000046',1147642504,'3','pbversion0000000000001','approved','rightCol_bg.jpg','rightCol_bg.jpg','style2/rightcol_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000043',1147642503,'3','pbversion0000000000001','approved','pb.jpg','pb.jpg','style2/pb.jpg','3','7','12',NULL,0,0,0,0,0,22948,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000044',1147642503,'3','pbversion0000000000001','approved','pb_wg.jpg','pb_wg.jpg','style2/pb_wg.jpg','3','7','12',NULL,0,0,0,0,0,2720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000040',1147642502,'3','pbversion0000000000001','approved','navbar_right.jpg','navbar_right.jpg','style2/navbar_right.jpg','3','7','12',NULL,0,0,0,0,0,960,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000041',1147642502,'3','pbversion0000000000001','approved','page_title.jpg','page_title.jpg','style2/page_title.jpg','3','7','12',NULL,0,0,0,0,0,24856,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000042',1147642502,'3','pbversion0000000000001','approved','page_title_bg.jpg','page_title_bg.jpg','style2/page_title_bg.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000038',1147642501,'3','pbversion0000000000001','approved','navbar_bg.jpg','navbar_bg.jpg','style2/navbar_bg.jpg','3','7','12',NULL,0,0,0,0,0,625,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000039',1147642502,'3','pbversion0000000000001','approved','navbar_left.jpg','navbar_left.jpg','style2/navbar_left.jpg','3','7','12',NULL,0,0,0,0,0,663,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000036',1147642501,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style2/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,764,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000037',1147642501,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style2/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,602,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000033',1147642500,'3','pbversion0000000000001','approved','css02.css','css02.css','style2/css02.css','3','7','12',NULL,0,0,0,0,0,5530,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000034',1147642500,'3','pbversion0000000000001','approved','leftCol_header.jpg','leftCol_header.jpg','style2/leftcol_header.jpg','3','7','12',NULL,0,0,0,0,0,10987,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000035',1147642501,'3','pbversion0000000000001','approved','leftCol_header02.jpg','leftCol_header02.jpg','style2/leftcol_header02.jpg','3','7','12',NULL,0,0,0,0,0,4606,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000030',1147642499,'3','pbversion0000000000001','approved','webgui_btn.jpg','webgui_btn.jpg','style1/webgui_btn.jpg','3','7','12',NULL,0,0,0,0,0,5180,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000031',1147642500,'3','pbversion0000000000001','approved','WebGUI 7 Style 2','WebGUI 7 Style 2','root/import/webgui-7-style-2','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000032',1147642500,'3','pbversion0000000000001','approved','context_bg.jpg','context_bg.jpg','style2/context_bg.jpg','3','7','12',NULL,0,0,0,0,0,661,NULL,0,1,0,1242380143,NULL,0),('PBnav000000style01lvl2',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav lvl2','untitled','style1_nav_lvl2','3','7','12',NULL,0,0,0,0,0,1695,NULL,0,1,0,1242380152,NULL,0),('7-0-style0000000000026',1147642499,'3','pbversion0000000000001','approved','RootTab Level 1','RootTab Level 1','roottab_level1','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('stevenav00000000000001',1147642499,'3','pbversion0000000000001','approved','Style 01 Nav','Style 01 Nav','style1_nav','3','7','12',NULL,0,0,0,0,0,1665,NULL,0,1,0,1242380162,NULL,0),('7-0-style0000000000025',1147642498,'3','pbversion0000000000001','approved','RootTab Level 0','RootTab Level 0','roottab_level0','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000022',1147642497,'3','pbversion0000000000001','approved','nav_bg.jpg','nav_bg.jpg','style1/nav_bg.jpg','3','7','12',NULL,0,0,0,0,0,1109,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000023',1147642498,'3','pbversion0000000000001','approved','nav_on.jpg','nav_on.jpg','style1/nav_on.jpg','3','7','12',NULL,0,0,0,0,0,919,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000024',1147642498,'3','pbversion0000000000001','approved','orange_left01.jpg','orange_left01.jpg','style1/orange_left01.jpg','3','7','12',NULL,0,0,0,0,0,2747,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000018',1147642496,'3','pbversion0000000000001','approved','nav2_off_left.jpg','nav2_off_left.jpg','style1/nav2_off_left.jpg','3','7','12',NULL,0,0,0,0,0,752,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000019',1147642497,'3','pbversion0000000000001','approved','nav2_off_right.jpg','nav2_off_right.jpg','style1/nav2_off_right.jpg','3','7','12',NULL,0,0,0,0,0,748,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000017',1147642496,'3','pbversion0000000000001','approved','nav2_off_center.jpg','nav2_off_center.jpg','style1/nav2_off_center.jpg','3','7','12',NULL,0,0,0,0,0,837,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000015',1147642496,'3','pbversion0000000000001','approved','nav1_on_right.jpg','nav1_on_right.jpg','style1/nav1_on_right.jpg','3','7','12',NULL,0,0,0,0,0,1134,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000014',1147642495,'3','pbversion0000000000001','approved','nav1_on_left.jpg','nav1_on_left.jpg','style1/nav1_on_left.jpg','3','7','12',NULL,0,0,0,0,0,1195,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000013',1147642495,'3','pbversion0000000000001','approved','nav1_on.jpg','nav1_on.jpg','style1/nav1_on.jpg','3','7','12',NULL,0,0,0,0,0,2426,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000011',1147642495,'3','pbversion0000000000001','approved','nav1_off_left.jpg','nav1_off_left.jpg','style1/nav1_off_left.jpg','3','7','12',NULL,0,0,0,0,0,1230,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000012',1147642495,'3','pbversion0000000000001','approved','nav1_off_right.jpg','nav1_off_right.jpg','style1/nav1_off_right.jpg','3','7','12',NULL,0,0,0,0,0,1178,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000010',1147642494,'3','pbversion0000000000001','approved','nav1_off_center.jpg','nav1_off_center.jpg','style1/nav1_off_center.jpg','3','7','12',NULL,0,0,0,0,0,1468,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000009',1147642494,'3','pbversion0000000000001','approved','nav1_off.jpg','nav1_off.jpg','style1/nav1_off.jpg','3','7','12',NULL,0,0,0,0,0,2591,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000007',1147642493,'3','pbversion0000000000001','approved','main_bg.jpg','main_bg.jpg','style1/main_bg.jpg','3','7','12',NULL,0,0,0,0,0,1149,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000001',1147642492,'3','pbversion0000000000001','approved','WebGUI 7 Style 1','WebGUI 7 Style 1','root/import/webgui-7-style-1','3','7','12',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380142,NULL,0),('SynConXSLT000000000001',1124395707,'3','pbversion0000000000001','approved','RSS 0.9 XSLT Stylesheet','RSS 0.9 XSLT','xslt/rss0.9.xsl','3','7','12',NULL,0,0,0,0,0,5040,NULL,0,1,0,1247779653,NULL,0),('SynConXSLT000000000002',1124395707,'3','pbversion0000000000001','approved','RSS 0.91 XSLT Stylesheet','RSS 0.91 XSLT','xslt/rss0.91.xsl','3','7','12',NULL,0,0,0,0,0,4717,NULL,0,1,0,1247779654,NULL,0),('SynConXSLT000000000003',1124395707,'3','pbversion0000000000001','approved','RSS 1.0 XSLT Stylesheet','RSS 1.0 XSLT','xslt/rss1.0.xsl','3','7','12',NULL,0,0,0,0,0,5186,NULL,0,1,0,1247779654,NULL,0),('SynConXSLT000000000004',1124395707,'3','pbversion0000000000001','approved','RSS 2.0 XSLT Stylesheet','RSS 2.0 XSLT','xslt/rss2.0.xsl','3','7','12',NULL,0,0,0,0,0,4852,NULL,0,1,0,1247779654,NULL,0),('PBtmpl0000000000000036',1129049186,'3','pbversion0000000000001','approved','Default Admin Toggle Macro','Default Admin Toggle Macro','default_admin_toggle_macro','3','7','12',NULL,0,1,0,0,0,448,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000037',1129049186,'3','pbversion0000000000001','approved','Default Account Macro','Default Account Macro','default_account_macro','3','7','12',NULL,0,1,0,0,0,479,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000038',1129049186,'3','pbversion0000000000001','approved','Default Editable Toggle Macro','Default Editable Toggle Macro','default_editable_toggle_macro','3','7','12',NULL,0,1,0,0,0,460,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000040',1129049186,'3','pbversion0000000000001','approved','Default Group Add Macro','Default Group Add Macro','default_group_add_macro','3','7','12',NULL,0,1,0,0,0,432,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000041',1129049186,'3','pbversion0000000000001','approved','Default Group Delete Macro','Default Group Delete Macro','default_group_delete_macro','3','7','12',NULL,0,1,0,0,0,444,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000042',1129049186,'3','pbversion0000000000001','approved','Default Homelink','Default Homelink','default_homelink','3','7','12',NULL,0,1,0,0,0,459,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000043',1129049186,'3','pbversion0000000000001','approved','Default LoginToggle','Default LoginToggle','default_logintoggle','3','7','12',NULL,0,1,0,0,0,475,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000045',1129049186,'3','pbversion0000000000001','approved','Default Make Printable','Default Make Printable','default_make_printable','3','7','12',NULL,0,1,0,0,0,500,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000091',1129049189,'3','pbversion0000000000001','approved','File no icon','File no icon','file_no_icon','3','7','12',NULL,0,1,0,0,0,391,NULL,0,1,0,1242380160,NULL,0),('PBtmpl0000000000000140',1129573244,'3','pbversion0000000000001','approved','Default Shortcut','Default Shortcut','pbtmpl0000000000000140','3','7','12',NULL,0,1,0,0,0,1719,NULL,0,1,0,1242380161,NULL,0),('PBtmplHelp000000000001',1147642410,'3','pbversion0000000000001','approved','Help','Help','help','3','7','12',NULL,0,0,0,0,0,2162,'\n\n',0,1,0,1242380162,'',0),('ProjectManagerTMPL0004',1222574693,'3','pbversion0000000000001','approved','Default Project Manager Edit Task','Default Project Manager Edit Task','default-pm-template-edit-task','3','7','12',NULL,0,0,0,0,0,8699,'\r\n',0,1,0,1242380162,'',0),('7-0-style0000000000071',1147642511,'3','pbversion0000000000001','approved','wg.jpg','wg.jpg','style3/wg.jpg','3','7','12',NULL,0,0,0,0,0,27499,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000070',1147642510,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','style3_coolmenu','3','7','12',NULL,0,0,0,0,0,377,NULL,0,1,0,1242380145,NULL,0),('7-0-style0000000000004',1147642493,'3','pbversion0000000000001','approved','gui_bottom.jpg','gui_bottom.jpg','style1/gui_bottom.jpg','3','7','12',NULL,0,0,0,0,0,11011,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000002',1147642492,'3','pbversion0000000000001','approved','body_bg.jpg','body_bg.jpg','style1/body_bg.jpg','3','7','12',NULL,0,0,0,0,0,598,NULL,0,1,0,1242380142,NULL,0),('PBtmpl0000000000000047',1147642414,'3','pbversion0000000000001','approved','Default Message Board','Default Message Board','default_message_board','3','7','12',NULL,0,1,0,0,0,5583,'',0,1,0,1242380153,'',0),('TimeTrackingTMPL000002',1147642417,'3','pbversion0000000000001','approved','Default Time Tracking Manager View','Default Time Tracking Manager View','default-tt-template-manager','3','7','12',NULL,0,0,0,0,0,408,' ',0,1,0,1242380163,NULL,0),('PBtmpl0000000000000057',1147642418,'3','pbversion0000000000001','approved','Default WebGUI Yes/No Prompt','Default WebGUI Yes/No Prompt','default_webgui_yes/no_prompt','3','7','12',NULL,0,1,0,0,0,793,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000107',1147642420,'3','pbversion0000000000001','approved','File with size','File with size','file_with_size','3','7','12',NULL,0,1,0,0,0,661,NULL,0,1,0,1242380160,NULL,0),('WVtmpl0000000000000001',1147642426,'3','pbversion0000000000001','approved','Random Thread Macro Default Template','Random Thread Macro Default Template','randomthread-template','3','7','12',NULL,0,0,0,0,0,9130,NULL,0,1,0,1242380165,NULL,0),('7-0-style0000000000005',1147642493,'3','pbversion0000000000001','approved','header.jpg','header.jpg','style1/header.jpg','3','7','12',NULL,0,0,0,0,0,45014,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000008',1147642494,'3','pbversion0000000000001','approved','nav1_center_on.jpg','nav1_center_on.jpg','style1/nav1_center_on.jpg','3','7','12',NULL,0,0,0,0,0,1382,NULL,0,1,0,1242380143,NULL,0),('bX5rYxb6tZ9docY6sUhBlw',1147642514,'3','pbversion0000000000001','approved','Getting Started','Getting Started','getting_started/getting-started','3','7','4',NULL,0,1,0,0,0,679,NULL,0,1,0,1242380147,NULL,0),('IWFxZDyGhQ3-SLZhELa3qw',1147642514,'3','pbversion0000000000001','approved','Key Benefits','Key Benefits','home/key-benefits','3','7','4',NULL,0,1,0,0,0,2052,NULL,0,1,0,1242380149,NULL,0),('m4YJFaqzultnB_sj1Uq0aw',1147642514,'3','pbversion0000000000001','approved','Ad','Ad','home/ad','3','7','4',NULL,0,1,0,0,0,92376,NULL,0,1,0,1242380150,NULL,0),('7-0-style0000000000045',1147642503,'3','pbversion0000000000001','approved','pb_wg_bg.jpg','pb_wg_bg.jpg','style2/pb_wg_bg.jpg','3','7','12',NULL,0,0,0,0,0,21720,NULL,0,1,0,1242380144,NULL,0),('7-0-style0000000000021',1147642497,'3','pbversion0000000000001','approved','nav2_on_right.jpg','nav2_on_right.jpg','style1/nav2_on_right.jpg','3','7','12',NULL,0,0,0,0,0,720,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000020',1147642497,'3','pbversion0000000000001','approved','nav2_on_left.jpg','nav2_on_left.jpg','style1/nav2_on_left.jpg','3','7','12',NULL,0,0,0,0,0,732,NULL,0,1,0,1242380143,NULL,0),('7-0-style0000000000016',1147642496,'3','pbversion0000000000001','approved','nav2_center_on.jpg','nav2_center_on.jpg','style1/nav2_center_on.jpg','3','7','12',NULL,0,0,0,0,0,807,NULL,0,1,0,1242380143,NULL,0),('PBasset000000000000003',1147642437,'3','pbversion0000000000001','approved','Media','Media','media','3','7','12',NULL,0,0,0,0,0,296,NULL,0,1,0,1242380151,NULL,0),('OhdaFLE7sXOzo_SIP2ZUgA',1147642513,'3','pbversion0000000000001','approved','Welcome','Welcome','home/welcome','3','7','4',NULL,0,1,0,0,0,1863,NULL,0,1,0,1242380151,NULL,0),('nbSrhXZQuxIjhWFaFPSuVA',1147642465,'3','pbversion0000000000001','approved','AdminConsole','AdminConsole','root/import/adminconsole','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380150,NULL,0),('S1A9iAwKcQQ6P20uTqw-Ew',1147642468,'3','pbversion0000000000001','approved','Dashboard','Dashboard','root/import/dashboard','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380162,NULL,0),('71e17KeduiXgODLMlUxiow',1222803352,'3','pbversion0000000000001','approved','project','project','root/import/projectmanager/project','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380145,NULL,0),('N13SD1Fpqk00UgBt1Z8ivQ',1147642470,'3','pbversion0000000000001','approved','HttpProxy','HttpProxy','root/import/httpproxy','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380150,NULL,0),('3uuBf8cYuj1sew2OJXl9tg',1147642470,'3','pbversion0000000000001','approved','InOutBoard','InOutBoard','root/import/inoutboard','3','7','12',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380142,NULL,0),('ProjectManagerTMPL0002',1222574693,'3','pbversion0000000000001','approved','Default Project Display','Default Project Display','default-pm-template-project-display','3','7','12',NULL,0,0,0,0,0,12801,'\r\n\r\n\r\n',0,1,0,1242380162,'',0),('cj2y4papTVGZRFdwTI-_fw',1147642475,'3','pbversion0000000000001','approved','MessageBoard','MessageBoard','root/import/messageboard','3','7','12',NULL,0,0,0,0,0,313,NULL,0,1,0,1242380147,NULL,0),('bBzO4CWjqU_ile3gf5Iypw',1147642475,'3','pbversion0000000000001','approved','MultiSearch','MultiSearch','root/import/multisearch','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380147,NULL,0),('Da6KWn805L4B5e4HFgQRQA',1147642479,'3','pbversion0000000000001','approved','Shortcut','Shortcut','root/import/shortcut','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380148,NULL,0),('bbiA9Zq5Gy2oCFBlILO3QA',1147642480,'3','pbversion0000000000001','approved','SQLReport','SQLReport','root/import/sqlreport','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380147,NULL,0),('Efe2W0UgrSRDltNJ87jlfg',1147642480,'3','pbversion0000000000001','approved','StockData','StockData','root/import/stockdata','3','7','12',NULL,0,0,0,0,0,304,NULL,0,1,0,1242380148,NULL,0),('9wKWdum0_8z-OhhquWLtSQ',1147642483,'3','pbversion0000000000001','approved','WeatherData','WeatherData','root/import/weatherdata','3','7','12',NULL,0,0,0,0,0,310,NULL,0,1,0,1242380146,NULL,0),('CSN-ZON7Uwv8kxf3F1fh5Q',1147642484,'3','pbversion0000000000001','approved','ZipArchiveAsset','ZipArchiveAsset','root/import/ziparchiveasset','3','7','12',NULL,0,0,0,0,0,322,NULL,0,1,0,1242380147,NULL,0),('TCtybxdqmdwdvRn555zpCQ',1147642484,'3','pbversion0000000000001','approved','RichEdit','RichEdit','root/import/richedit','3','7','12',NULL,0,0,0,0,0,301,NULL,0,1,0,1242380163,NULL,0),('PBtmpl0000000000000044',1148579524,'3','pbversion0000000000001','approved','Default Login Box','Default Login Box','default_login_box','3','7','12',NULL,0,1,0,0,0,1868,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000092',1148579524,'3','pbversion0000000000001','approved','Horizontal Login Box','Horizontal Login Box','horizontal_login_box','3','7','12',NULL,0,1,0,0,0,2061,NULL,0,1,0,1242380160,NULL,0),('PBtmpl0000000000000039',1154535073,'3','pbversion0000000000001','approved','Default File Macro','Default File Macro','default_file_macro','3','7','12',NULL,0,1,0,0,0,630,NULL,0,1,0,1242380153,NULL,0),('Szs5eev3OMssmnsyLRZmWA',1213317790,'3','pbversion0000000000001','approved','Tell A Friend','Tell A Friend','tell_a_friend/tell_a_friend','3','7','3',NULL,0,1,0,0,0,2062,NULL,0,1,0,1242380163,NULL,0),('ProjectManagerTMPL0006',1157679165,'3','pbversion0000000000001','approved','Default Resource List','Default Resource List','default-pm-resource-list','3','7','12',NULL,0,0,0,0,0,1793,NULL,0,1,0,1242380162,NULL,0),('ProjectManagerTMPL0003',1159989349,'3','pbversion0000000000001','approved','Default Project Manager Gantt Chart','Default Project Manager Gantt Chart','default-pm-template-gantt-chart','3','7','12',NULL,0,0,0,0,0,3753,NULL,0,1,0,1242380162,NULL,0),('pbproto000000000000002',1163019036,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-prototype','3','7','12',NULL,0,0,0,1,0,595,NULL,0,1,0,1263962528,NULL,0),('IOB0000000000000000002',1166019641,'3','pbversion0000000000001','approved','Default InOutBoard Report Template','Default InOutBoard Report Template','iob-report-template','3','7','12',NULL,0,0,0,0,0,2719,'',0,1,0,1242380149,'',0),('ZipArchiveTMPL00000001',1169738426,'3','pbversion0000000000001','approved','Default Zip Archive Template','Default Zip Archive Template','zip-archive-template','3','7','12',NULL,0,0,0,0,0,1040,NULL,0,1,0,1242380165,NULL,0),('IOB0000000000000000001',1169795123,'3','pbversion0000000000001','approved','Default InOutBoard Template','Default InOutBoard Template','iob-template','3','7','12',NULL,0,0,0,0,0,3815,'',0,1,0,1242380149,'',0),('SQLReportDownload00001',1171466654,'3','pbversion0000000000001','approved','SQLReport Download Default Template','untitled','SQLReportDownload0001','3','7','12',NULL,0,0,0,0,0,6145,NULL,0,1,0,1242380162,NULL,0),('newsletter000000000001',1185754569,'3','pbversion0000000000001','approved',' Summary Newsletter (default)',' Summary Newsletter','newsletterdefaulttemplate','3','7','3',NULL,0,0,0,0,0,668,NULL,0,1,0,1242380151,NULL,0),('tempspace0000000000000',1185754574,'3','pbversion0000000000001','approved','Tempspace','Tempspace','tempspace','3','7','3',NULL,0,0,0,0,0,307,NULL,0,1,0,1242380163,NULL,0),('TimeTrackingTMPL000001',1201205738,'3','pbversion0000000000001','approved','Default Time Tracking User View','Default Time Tracking User View','default-tt-template-user','3','7','12',NULL,0,0,0,0,0,18629,'\n \n',0,1,0,1242380163,'',0),('CalendarPrintMonth0001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Month','Default Calendar Print Month','root/import/calendar-templates/default-calendar-print-month','3','7','12',NULL,0,0,0,0,0,2436,' \r\n',0,1,0,1242380147,'',0),('CalendarPrintWeek00001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Week','Default Calendar Print Week','root/import/calendar-templates/default-calendar-print-week','3','7','12',NULL,0,0,0,0,0,2636,' \r\n',0,1,0,1242380147,'',0),('CalendarPrintDay000001',1204890714,'3','pbversion0000000000001','approved','Default Calendar Print Day','Default Calendar Print Day','root/import/calendar-templates/default-calendar-print-day','3','7','12',NULL,0,0,0,0,0,2376,' \r\n',0,1,0,1242380147,'',0),('F7MAQ-cpuvQ1KuC7J4P5zQ',1222803673,'3','pbversion0000000000001','approved','View','View','root/import/profile/view','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380148,NULL,0),('Tsg7xmPYv782j6IVz7yHFg',1213244777,'3','pbversion0000000000001','approved','Calendar Templates','Calendar Templates','root/import/calendar-templates','3','7','12',NULL,0,1,0,0,0,353,NULL,0,1,0,1242380164,NULL,0),('NywJYmGWe1f6EBXJnWg9Xg',1222803638,'3','pbversion0000000000001','approved','Profile','Profile','root/import/profile','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1242380151,NULL,0),('AgyFhx3eXlfZXNp2MkrsiQ',1222803665,'3','pbversion0000000000001','approved','Edit','Edit','root/import/profile/edit','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1242380146,NULL,0),('mTOiwwk3q4k9g5-XykXhPA',1218149728,'3','pbversion0000000000001','approved','Documentation','Documentation','documentation','3','7','3',NULL,0,0,0,0,0,561,NULL,0,1,0,1242380150,NULL,0),('TYo2Bwl7aafzTtdHlS-arQ',1211664878,'3','pbversion0000000000001','approved','Product','Product','root/import/product','3','7','12',NULL,0,0,0,0,0,320,NULL,0,1,0,1242380164,NULL,0),('gbnRhcWNk1iQe32LFEB5eQ',1212086102,'3','pbversion0000000000001','approved','Shelf','Shelf','root/import/shelf2','3','7','12',NULL,0,1,0,0,0,315,NULL,0,1,0,1242380149,NULL,0),('6tK47xsaIH-ELw0IBo0uRQ',1210777115,'3','pbversion0000000000001','approved','images','images','root/import/shelf2/images','3','7','12',NULL,0,1,0,0,0,330,NULL,0,1,0,1242380142,NULL,0),('_bZJ9LA_KNekZiFPaP2SeQ',1210777868,'3','pbversion0000000000001','approved','shelf-titles.jpg','shelf-titles.jpg','root/import/shelf2/images/shelf-titles.jpg','3','7','12',NULL,0,1,0,0,0,1038,NULL,0,0,0,1242380165,NULL,0),('4e-_rNs6mSWedZhQ_V5kJA',1210779672,'3','pbversion0000000000001','approved','shelf-ie.css','shelf-ie.css','root/import/shelf2/shelf-ie.css','3','7','12',NULL,0,1,0,0,0,1092,NULL,0,1,0,1242380142,NULL,0),('6D4Z-oruXPS6OlH_Kx8pBg',1209509389,'3','pbversion0000000000001','approved','images','images','root/import/thingy-templates/images','3','7','12',NULL,0,1,0,0,0,340,NULL,0,1,0,1242380142,NULL,0),('hQ7z33_jOYkQ8WNX5xy9Sw',1209509455,'3','pbversion0000000000001','approved','style-button.gif','style-button.gif','root/import/thingy-templates/images/style-button.gif','3','7','12',NULL,0,1,0,0,0,923,NULL,0,0,0,1242380149,NULL,0),('vWW_DcHiYSrKZOkkIfEfcQ',1209509433,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/thingy-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,805,NULL,0,0,0,1242380164,NULL,0),('_bPYzRA87NTAUIKlfrJMHg',1209509433,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/thingy-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,790,NULL,0,0,0,1242380165,NULL,0),('nJjZHRwdDs5MAZYsAyioHw',1209509433,'3','pbversion0000000000001','approved','title-bg.jpg','title-bg.jpg','root/import/thingy-templates/images/title-bg.jpg','3','7','12',NULL,0,1,0,0,0,1105,NULL,0,0,0,1242380151,NULL,0),('8hxfkrJPeFVRWF5piCNJ1A',1209509433,'3','pbversion0000000000001','approved','field-bg.jpg','field-bg.jpg','root/import/thingy-templates/images/field-bg.jpg','3','7','12',NULL,0,1,0,0,0,721,NULL,0,0,0,1242380146,NULL,0),('Osx7WN52iIKHZFT4vqUBHQ',1209509433,'3','pbversion0000000000001','approved','search-btn.gif','search-btn.gif','root/import/thingy-templates/images/search-btn.gif','3','7','12',NULL,0,1,0,0,0,1263,NULL,0,0,0,1242380151,NULL,0),('oWff8fGzRdHPyq5VNREe9Q',1209509433,'3','pbversion0000000000001','approved','top-bg.jpg','top-bg.jpg','root/import/thingy-templates/images/top-bg.jpg','3','7','12',NULL,0,1,0,0,0,691,NULL,0,0,0,1242380151,NULL,0),('uqbkvb1b9443VvfkyRz95w',1209509433,'3','pbversion0000000000001','approved','save-button.gif','save-button.gif','root/import/thingy-templates/images/save-button.gif','3','7','12',NULL,0,1,0,0,0,1271,NULL,0,0,0,1242380164,NULL,0),('8YiMkcz32xalkAn3WBLpag',1210181860,'3','pbversion0000000000001','approved','go-btn.gif','go-btn.gif','root/import/thingy-templates/images/go-btn.gif','3','7','12',NULL,0,1,0,0,0,430,NULL,0,0,0,1242380146,NULL,0),('C5fPz-Wg85vkYRvCdl-Xqw',1212160830,'3','pbversion0000000000001','approved','UserList','UserList','root/import/userlist','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380147,NULL,0),('usuxw9V3jN4d4pujRiEYxg',1209494150,'3','pbversion0000000000001','approved','css03-ie.css','css03-ie.css','style3/css03-ie.css','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1242380164,NULL,0),('WeatherDataTmpl0000001',1210711353,'3','pbversion0000000000001','approved','WeatherData Default View','WeatherData Default View','weatherdatatmpl0000001','3','7','12',NULL,0,1,0,0,0,5505,'\r\n\r\n\r\n',0,1,0,1242380164,'',0),('Ik9HHky10DIyFTKehUD1dw',1222803478,'3','pbversion0000000000001','approved','Prompt','Prompt','root/import/prompt','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('BmLaN4rmAANkCglXUViEbg',1222803871,'3','pbversion0000000000001','approved','Resource','Resource','root/import/projectmanager/resource','3','12','12',NULL,0,0,0,0,0,346,NULL,0,1,0,1242380147,NULL,0),('X7DrzUcj8pOKFa_6k9D5iw',1222804045,'3','pbversion0000000000001','approved','Newsletter','Newsletter','root/import/newsletter','3','12','3',NULL,0,0,0,0,0,329,NULL,0,1,0,1242380165,NULL,0),('7-0-style0000000000059',1213386091,'3','pbversion0000000000001','approved','main_top.jpg','main_top.jpg','style3/main_top.jpg','3','7','12',NULL,0,0,0,0,0,3594,NULL,0,1,0,1242380144,NULL,0),('CalendarPrintEvent0001',1215396964,'3','pbversion0000000000001','approved','Default Calendar Print Event','Default Calendar Print Event','root/import/calendar-templates/default-calendar-print-event','3','7','12',NULL,0,0,0,0,0,4156,' \r\n',0,1,0,1242380147,'',0),('j_1qEqM6iLfQLiR6VKy0aA',1215718151,'3','pbversion0000000000001','approved','Free Documentation','Free Documentation','documentation/free-documentation','3','7','3',NULL,0,1,0,0,0,1415,NULL,0,1,0,1242380150,NULL,0),('o_pq_e4vRyhMOKFzs61eag',1215714957,'3','pbversion0000000000001','approved','book-covers.jpg','book-covers.jpg','documentation/book-covers.jpg','3','7','3',NULL,0,1,0,0,0,106078,NULL,0,0,0,1242380151,NULL,0),('diZvW4bSgZWwyyGP3qXi1g',1215717972,'3','pbversion0000000000001','approved','Commercial Documentation','Commercial Documentation','documentation/commercial-documentation','3','7','3',NULL,0,1,0,0,0,1110,NULL,0,1,0,1242380148,NULL,0),('jnYdqDkUR8x7Pv2eGR1qTA',1216250666,'3','pbversion0000000000001','approved','Thingy Templates','Thingy Templates','root/import/thingy-templates','3','7','12',NULL,0,1,0,0,0,347,NULL,0,1,0,1242380149,NULL,0),('5m5I7__l40C4hhv4ydqAHQ',1216227786,'3','pbversion0000000000001','approved','thingy-ie.css','thingy-ie.css','root/import/thingy-templates/thingy-ie.css','3','7','12',NULL,0,1,0,0,0,1329,NULL,0,1,0,1242380142,NULL,0),('pV7GnZdpjR3XpZaSINIoeg',1222803347,'3','pbversion0000000000001','approved','gantt','gantt','root/import/projectmanager/gantt','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380162,NULL,0),('9A-mg2gwWmaYi9o_1C7ArQ',1222803338,'3','pbversion0000000000001','approved','dashboard','dashboard','root/import/projectmanager/dashboard','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380146,NULL,0),('yD1SMHelczihzjEmx6eXBA',1222803342,'3','pbversion0000000000001','approved','editTask','editTask','root/import/projectmanager/edittask','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('BFfNj5wA9bDw8H3cnr8pTw',1247046273,'3','pbversion0000000000001','approved','Navigation','Navigation','root/import/navigation','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('PBtmpl0000000000000094',1220655703,'3','pbversion0000000000001','approved','News','News','plainblacknews','3','7','12',NULL,0,1,0,0,0,5945,'\r\n\r\n\r\n',0,1,0,1247779651,'',0),('1XOJDcg_ITRYwVM-QnIcPw',1219175575,'3','pbversion0000000000001','approved','shelf.css','shelf.css','root/import/shelf2/shelf.css','3','7','12',NULL,0,1,0,0,0,2431,NULL,0,1,0,1242380141,NULL,0),('aNNC62qLAS6TB-0_MCYjsw',1246969327,'3','pbversion0000000000001','approved','Layout','Layout','root/import/layout','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('huASapWvFDzqwOSbcN-JFQ',1222803313,'3','pbversion0000000000001','approved','user','user','root/import/timetracking/user','3','7','12',NULL,0,0,0,0,0,331,NULL,0,1,0,1242380149,NULL,0),('lo1ac3BsoJx3ijGQ3gR-bQ',1222803309,'3','pbversion0000000000001','approved','row','row','root/import/timetracking/row','3','7','12',NULL,0,0,0,0,0,328,NULL,0,1,0,1242380150,NULL,0),('zyWi26q9na-iiZqL4yedog',1222803114,'3','pbversion0000000000001','approved','Macro','Macro','root/import/macro','3','7','12',NULL,0,1,0,0,0,314,NULL,0,1,0,1242380165,NULL,0),('tBL7BWiQRZFed2Y-Zjo9tQ',1222803200,'3','pbversion0000000000001','approved','AdminToggle','AdminToggle','root/import/macro/admintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380163,NULL,0),('GdkQpvjRtJqtzOUbwIIQRA',1222803205,'3','pbversion0000000000001','approved','a_account','a_account','root/import/macro/a_account','3','7','12',NULL,0,0,0,0,0,339,NULL,0,1,0,1242380149,NULL,0),('tnc5iYyynX2hfdEs9D3P8w',1222803213,'3','pbversion0000000000001','approved','EditableToggle','EditableToggle','root/import/macro/editabletoggle','3','7','12',NULL,0,0,0,0,0,354,NULL,0,1,0,1242380164,NULL,0),('vgXdBcFTqU7h4wBG1ewdBw',1222803217,'3','pbversion0000000000001','approved','File','File','root/import/macro/file','3','7','12',NULL,0,0,0,0,0,324,NULL,0,1,0,1242380164,NULL,0),('hcFlqnXlsmC1ujN6Id0F0A',1222803234,'3','pbversion0000000000001','approved','GroupAdd','GroupAdd','root/import/macro/groupadd','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1242380149,NULL,0),('eRJR52fvlaxfetv3DQkQYw',1222803238,'3','pbversion0000000000001','approved','GroupDelete','GroupDelete','root/import/macro/groupdelete','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380148,NULL,0),('5HIDHq5lAWHV5gpYGS0zLg',1222803244,'3','pbversion0000000000001','approved','H_homeLink','H_homeLink','root/import/macro/h_homelink','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380142,NULL,0),('rYEFwXXo0tkGhQTcbDibvg',1222803249,'3','pbversion0000000000001','approved','LoginToggle','LoginToggle','root/import/macro/logintoggle','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380162,NULL,0),('-WM2dt0ZGpDasuL2wWocxg',1222803056,'3','pbversion0000000000001','approved','ProjectManager','ProjectManager','root/import/projectmanager','3','7','12',NULL,0,1,0,0,0,341,NULL,0,1,0,1242380141,NULL,0),('2OcUWHVsu_L1sDFzIMWYqw',1222803070,'3','pbversion0000000000001','approved','TimeTracking','TimeTracking','root/import/timetracking','3','7','12',NULL,0,1,0,0,0,335,NULL,0,1,0,1242380141,NULL,0),('vTymIDYL2YqEh6PV50F7ew',1222803302,'3','pbversion0000000000001','approved','manager','manager','root/import/timetracking/manager','3','7','12',NULL,0,0,0,0,0,340,NULL,0,1,0,1242380164,NULL,0),('nqNbSUAhk9Vd1zda2SCz9A',1222803258,'3','pbversion0000000000001','approved','RandomThread','RandomThread','root/import/macro/randomthread','3','7','12',NULL,0,0,0,0,0,348,NULL,0,1,0,1242380151,NULL,0),('y8XkRdxIperLKkJ3bL5sSQ',1222803264,'3','pbversion0000000000001','approved','r_printable','r_printable','root/import/macro/r_printable','3','7','12',NULL,0,0,0,0,0,345,NULL,0,1,0,1242380165,NULL,0),('V3l5S5TtI7wMm1WpIMhvOA',1222803253,'3','pbversion0000000000001','approved','L_loginBox','L_loginBox','root/import/macro/l_loginbox','3','7','12',NULL,0,0,0,0,0,342,NULL,0,1,0,1242380164,NULL,0),('newslettersubscrip0001',1221692339,'3','pbversion0000000000001','approved','My Subscriptions (default)',' My Subscriptions','newslettermysubscriptionstemplate','3','7','3',NULL,0,0,0,0,0,1173,NULL,0,1,0,1242380151,NULL,0),('ThingyTmpl000000000002',1222574693,'3','pbversion0000000000001','approved','Default Thingy View Thing','Default Thingy View Thing','templates/thingy-default-view-thing','3','7','12',NULL,0,0,0,0,0,4793,'\n',0,1,0,1242380163,'',0),('UL-ItI4L1Z6-WSuhuXVvsQ',1225139673,'3','pbversion0000000000001','approved','DataTable','DataTable','root/import/datatable','3','7','3',NULL,0,0,0,0,0,325,NULL,0,1,0,1242380164,NULL,0),('7-0-style0000000000049',1224117144,'3','pbversion0000000000001','approved','WebGUI 7 Style 3','WebGUI 7 Style 3','root/import/webgui-7-style-3','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1242380144,NULL,0),('stevecoolmenu000000001',1224116942,'3','pbversion0000000000001','approved','Site Nav','Site Nav','webgui7/style3/hierarchical-top-nav','3','7','12',NULL,0,0,0,0,0,3716,'\r\n\r\n\r\n\r\n',0,1,0,1242380162,'',0),('7-0-style0000000000051',1224117026,'3','pbversion0000000000001','approved','css03.css','css03.css','style3/css03.css','3','7','12',NULL,0,0,0,0,0,5975,NULL,0,1,0,1242380144,NULL,0),('jVKLVakT_iA2010_oEuAwg',1224116526,'3','pbversion0000000000001','approved','Style3 Coolmenu','Style3 Coolmenu','department_nav','3','7','12',NULL,0,0,0,0,0,386,NULL,0,1,0,1242380150,NULL,0),('ThingyTmpl000000000003',1224518002,'3','pbversion0000000000001','approved','Default Thingy Edit Thing','Default Thingy Edit Thing','templates/thingy-default-edit-thing','3','7','12',NULL,0,0,0,0,0,6242,'\r\n\r\n\r\n',0,1,0,1242380163,'',0),('QpmlAiYZz6VsKBM-_0wXaw',1224616691,'3','pbversion0000000000001','approved','UsersOnline Macro','UsersOnline Macro','users-online-macro-templates','3','7','3',NULL,0,0,0,0,0,368,NULL,0,1,0,1242380162,NULL,0),('h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'3','pbversion0000000000001','approved','UsersOnline Default View','UsersOnline Default View','users-online-macro-templates/usersonline-default-view','3','7','3',NULL,0,1,0,0,0,2479,'\r\n\r\n',0,1,0,1242380149,'',0),('4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'3','pbversion0000000000001','approved','UsersOnline Detailed View','UsersOnline Detailed View','users-online-macro-templates/usersonline-detailed-view','3','7','3',NULL,0,1,0,0,0,4271,'\r\n\r\n',0,1,0,1242380142,'',0),('HPDOcsj4gBme8D4svHodBw',1225404573,'3','pbversion0000000000001','approved','Profile','Profile','root/import/account/profile','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('IZkrow_zwvbf4FCH-taVTQ',1226011853,'3','pbversion0000000000001','approved','Inbox','Inbox','root/import/account/inbox','3','7','12',NULL,0,1,0,0,0,328,NULL,0,1,0,1250190873,NULL,0),('K0YjxqOqr7RupSo6sIdcAg',1227074310,'3','pbversion0000000000001','approved','Friends','Friends','root/import/account/friends','3','7','12',NULL,0,1,0,0,0,334,NULL,0,1,0,1250190873,NULL,0),('_ilRXNR3s8F2vGJ_k9ePcg',1226643205,'3','pbversion0000000000001','approved','User','User','root/import/account/user','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('qaVcU0FFzzraMX_bzELqzw',1227074362,'3','pbversion0000000000001','approved','Contributions','Contributions','root/import/account/contributions','3','7','12',NULL,0,1,0,0,0,352,NULL,0,1,0,1250190873,NULL,0),('UserListTmpl0000000001',1228125743,'3','pbversion0000000000001','approved','Default UserList','Default UserList','root/import/userlist/default-userlist','3','7','12',NULL,0,1,0,0,0,5131,NULL,0,1,0,1242380164,NULL,0),('UserListTmpl0000000003',1228125758,'3','pbversion0000000000001','approved','UserList with multiple search keywords','UserList with multiple search keywords','root/import/userlist/userlist-with-multiple-search-keywords','3','7','12',NULL,0,1,0,0,0,5417,NULL,0,1,0,1242380164,NULL,0),('UserListTmpl0000000002',1228125752,'3','pbversion0000000000001','approved','UserList with search field selection','UserList with search field selection','root/import/userlist/userlist-with-search-field-selection','3','7','12',NULL,0,1,0,0,0,5049,NULL,0,1,0,1242380164,NULL,0),('matrixtmpl000000000004',1228834590,'3','pbversion0000000000001','approved','Matrix Default Edit Listing','Matrix Default Edit Listing','default-matrix-edit-listing-template','3','7','12',NULL,0,0,0,0,0,522,NULL,0,1,0,1242380150,NULL,0),('TimeTrackingTMPL000003',1229311434,'3','pbversion0000000000001','approved','Default Time Tracking Row Template','Default Time Tracking Row Template','default-tt-template-row','3','7','12',NULL,0,0,0,0,0,5662,NULL,0,1,0,1242380163,NULL,0),('uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'3','pbversion0000000000001','approved','Default Calendar Print List View','Default Calendar Print List View','root/import/calendar-templates/default-calendar-print-list-view','3','7','3',NULL,0,1,0,0,0,1719,NULL,0,1,0,1242380164,NULL,0),('DashboardViewTmpl00001',1230358389,'3','pbversion0000000000001','approved','Dashboard Default View','Dashboard Default View','dashboard-default-view-template','3','7','12',NULL,0,0,0,0,0,14755,'\r\n\r\n\r\n',0,1,0,1242380148,'',0),('ProjectManagerTMPL0005',1229579830,'3','pbversion0000000000001','approved','Default Resource Popup','Default Resource Popup','default-pm-resource-popup','3','7','12',NULL,0,0,0,0,0,3562,NULL,0,1,0,1242380162,NULL,0),('ProjectManagerTMPL0001',1229579830,'3','pbversion0000000000001','approved','Default Project Management System Dashboard','Default Project Management System Dashboard','default-pm-template-dashboard','3','7','12',NULL,0,0,0,0,0,6708,'',0,1,0,1242380162,'',0),('PBtmpl0000000000000033',1230159454,'3','pbversion0000000000001','approved','Default HTTP Proxy','Default HTTP Proxy','default_http_proxy','3','7','12',NULL,0,1,0,0,0,2008,NULL,0,1,0,1242380153,NULL,0),('PBtmpl0000000000000059',1229907401,'3','pbversion0000000000001','approved','Default SQL Report','Default SQL Report','default_sql_report','3','7','12',NULL,0,1,0,0,0,7473,NULL,0,1,0,1242380153,NULL,0),('MultiSearchTmpl0000001',1230269962,'3','pbversion0000000000001','approved','MultiSearch Default Display','MultiSearch Default Display','multisearchtmpl0000001','3','7','12',NULL,0,1,0,0,0,3510,'',0,1,0,1242380150,'',0),('CalendarDay00000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Day','Default Calendar Day','root/import/calendar-templates/default-calendar-day','3','7','12',NULL,0,0,0,0,0,13634,' ',0,1,0,1242380147,'',0),('CalendarEvent000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Event','Default Calendar Event','root/import/calendar-templates/default-calendar-event','3','7','12',NULL,0,0,0,0,0,11714,' ',0,1,0,1242380147,'',0),('CalendarSearch00000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Search','Default Calendar Search','root/import/calendar-templates/default-calendar-search','3','7','12',NULL,0,0,0,0,0,14697,' ',0,1,0,1242380147,'',0),('CalendarWeek0000000001',1230358389,'3','pbversion0000000000001','approved','Default Calendar Week','Default Calendar Week','root/import/calendar-templates/default-calendar-week','3','7','12',NULL,0,0,0,0,0,12645,'',0,1,0,1242380147,'',0),('StockDataTMPL000000002',1229494994,'3','pbversion0000000000001','approved','StockData Default Display','StockData Default Display','stockdatatmpl000000002','3','7','12',NULL,0,1,0,0,0,20449,NULL,0,1,0,1242380163,NULL,0),('LdiozcIUciWuvt3Z-na5Ww',1232673968,'3','pbversion0000000000001','approved','Matrix','Matrix','root/import/matrix','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1242380150,NULL,0),('kJf77eCr9GAMiEzWrzsBTA',1229639255,'3','pbversion0000000000001','approved','matrix-ie.css','matrix-ie.css','new-matrix/matrix-ie.css','3','7','12',NULL,0,1,0,0,0,764,NULL,0,1,0,1242380150,NULL,0),('4LQT4-bGW4FkiEQLSY5gvQ',1232400287,'3','pbversion0000000000001','approved','show-hide.js','show-hide.js','new-matrix/show-hide.js','3','7','12',NULL,0,1,0,0,0,933,NULL,0,1,0,1242380142,NULL,0),('QHn6T9rU7KsnS3Y70KCNTg',1233173545,'3','pbversion0000000000001','approved','Account','Account','root/import/account','3','7','12',NULL,0,1,0,0,0,320,NULL,0,1,0,1250190873,NULL,0),('HW-sPoDDZR8wBZ0YgFgPtg',1227634350,'3','pbversion0000000000001','approved','images','images','root/import/account/images','3','7','12',NULL,0,1,0,0,0,331,NULL,0,1,0,1250190873,NULL,0),('hBpisL-_URyZnh9clR5ohA',1227634417,'3','pbversion0000000000001','approved','no_photo.gif','no_photo.gif','root/import/account/images/no_photo.gif','3','7','12',NULL,0,1,0,0,0,2564,NULL,0,1,0,1250190873,NULL,0),('FOBV6KkifreXa4GmEAUU4A',1227634447,'3','pbversion0000000000001','approved','no_photo_sm.gif','no_photo_sm.gif','root/import/account/images/no_photo_sm.gif','3','7','12',NULL,0,1,0,0,0,1580,NULL,0,1,0,1250190873,NULL,0),('TuYPpHx7TUyk08639Pc8Bg',1233861621,'3','pbversion0000000000001','approved','Default DataTable Template (HTML)','Default DataTable Template (HTML)','root/import/datatable/default-datatable-template-html','3','7','3',NULL,0,1,0,0,0,1360,NULL,0,1,0,1242380164,NULL,0),('3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'3','pbversion0000000000001','approved','Default DataTable Template (YUI)','Default DataTable Template (YUI)','root/import/datatable/default-datatable-template-yui','3','7','3',NULL,0,1,0,0,0,1023,NULL,0,1,0,1242380142,NULL,0),('wrq7hMxb1ewQqZ46xmd8Gg',1235706620,'3','pbversion0000000000001','approved','equal-cols.js','equal-cols.js','matrix/equal-cols.js','3','7','12',NULL,0,1,0,0,0,796,NULL,0,1,0,1242380165,NULL,0),('Vch1Ww7G_JpBhOhXX07RDg',1235705952,'3','pbversion0000000000001','approved','matrx-nav','matrix-nav','new-matrix/matrix-nav','3','7','12',NULL,0,1,0,0,0,375,NULL,0,1,0,1242380164,NULL,0),('matrixtmpl000000000006',1236889702,'3','pbversion0000000000001','approved','Matrix Default Screenshots','Matrix Default Screenshots','matrix-default-screenshots','3','7','12',NULL,0,0,0,0,0,2864,NULL,0,1,0,1258524907,NULL,0),('AOjPG2NHgfL9Cq6dDJ7mew',1236960881,'3','pbversion0000000000001','approved','Shop','Shop','root/import/account/shop','3','7','12',NULL,0,1,0,0,0,325,NULL,0,1,0,1250190873,NULL,0),('NBVSVNLp9X_bV7WrCprtCA',1237842096,'3','pbversion0000000000001','approved','Annotate Image','Annotate Image','image3','3','7','12',NULL,0,1,0,0,0,675,NULL,0,1,0,1258524906,NULL,0),('jmlI9IK-lV8n2WMYmmPhAA',1238106173,'3','pbversion0000000000001','approved','Ad Sku','Ad Sku','root/import/ad-sku','3','7','12',NULL,0,1,0,0,0,317,NULL,0,1,0,1242380149,NULL,0),('ThingyTmpl000000000001',1237914005,'3','pbversion0000000000001','approved','Default Thingy','Default Thingy','templates/thingy-default','3','7','12',NULL,0,0,0,0,0,2531,'',0,1,0,1258524908,'',0),('6uvSLY-ak_w4p_wS8q33cA',1239213092,'3','pbversion0000000000001','approved','Carousel','Carousel','root/import/carousel','3','7','12',NULL,0,1,0,0,0,323,NULL,0,1,0,1242380142,NULL,0),('CarouselTmpl0000000002',1239475937,'3','pbversion0000000000001','approved','Carousel hidden textareas','Carousel hidden textareas','root/import/carousel/carousel-hidden-textareas','3','7','12',NULL,0,0,0,0,0,1048,NULL,0,1,0,1258524908,NULL,0),('GaBAW-2iVhLMJaZQzVLE5A',1240103565,'3','pbversion0000000000001','approved','ThingyRecord Templates','ThingyRecord Templates','root/import/thingyrecord-templates','3','7','3',NULL,0,0,0,0,0,364,NULL,0,1,0,1242380149,NULL,0),('b1316COmd9xRv4fCI3LLGA',1236956475,'3','pbversion0000000000001','approved','Inbox Notification','Inbox Notification','inbox_notification','3','7','4',NULL,0,0,0,0,0,414,NULL,0,1,0,1258524907,NULL,0),('lo1rpxn3t8YPyKGers5eQg',1238625621,'3','pbversion0000000000001','approved','Friend Manager','Friend Manager','root/import/account/friendmanager','3','7','12',NULL,0,1,0,0,0,388,NULL,0,1,0,1242380168,NULL,0),('64tqS80D53Z0JoAs2cX2VQ',1239400975,'3','pbversion0000000000001','approved','FriendManager View Template','FriendManager View Template','root/import/account/friendmanager/view','3','7','4',NULL,0,0,0,0,0,4432,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1258524908,'',0),('lG2exkH9FeYvn4pA63idNg',1239383808,'3','pbversion0000000000001','approved','Friend Manager Edit Friends','Friend Manager Edit Friends','root/import/account/friendmanager/edit','3','7','4',NULL,0,0,0,0,0,2555,'',0,1,0,1253052785,'',0),('matrixtmpl000000000007',1242660972,'3','pbversion0000000000001','approved','Matrix Default Screenshots Config','Matrix Default Screenshots Config','matrix-default-screenshots-config','3','7','12',NULL,0,0,0,0,0,3765,NULL,0,1,0,1258524907,NULL,0),('kj3b-X3i6zRKnhLb4ZiCLw',1243445504,'3','pbversion0000000000001','approved','Default Calendar List View','Default Calendar List View','root/import/calendar-templates/default-calendar-list-view','3','7','3',NULL,0,1,0,0,0,5680,'\n',0,1,0,1258524909,'',0),('iCYOjohB9SKvAPr6bXElKA',1247779898,'3','pbversion0000000000001','approved','Get Hosting','Get Hosting','yns/hosting','3','7','4',NULL,0,1,0,0,0,697,NULL,0,1,0,1247779898,NULL,0),('YP9WaMPJHvCJl-YwrLVcPw',1245376837,'3','pbversion0000000000001','approved','Progress Bar','Progress Bar','admin_progress_bar','3','7','12',NULL,0,1,0,0,0,2586,'\n',0,1,0,1258524906,'',0),('3n3H85BsdeRQ0I08WmvlOg',1245107956,'3','pbversion0000000000001','approved','thingy.css','thingy.css','root/import/thingy-templates/thingy.css','3','7','12',NULL,0,1,0,0,0,4731,NULL,0,1,0,1245445679,NULL,0),('FOvmwGC0GtZo5VTxJIL3OA',1247779862,'3','pbversion0000000000001','approved','Get Documentation','Get Documentation','yns/docs','3','7','4',NULL,0,1,0,0,0,622,NULL,0,1,0,1247779862,NULL,0),('Wl8WZ43g2rK5AYr9o4zY7w',1247779880,'3','pbversion0000000000001','approved','Get Style','Get Style','yns/style','3','7','4',NULL,0,1,0,0,0,607,NULL,0,1,0,1247779880,NULL,0),('FEDP3dk8J3Chw_gyr7_XEQ',1246278679,'3','pbversion0000000000001','approved','navigation.css','navigation.css','navigation.css','3','7','12',NULL,0,1,0,0,0,2676,NULL,0,1,0,1247779656,NULL,0),('f_tn9FfoSfKWX43F83v_3w',1247053009,'3','pbversion0000000000001','approved','Search','Search','root/import/search','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779657,NULL,0),('oGfxez5sksyB_PcaAsEm_Q',1247053097,'3','pbversion0000000000001','approved','SyndicatedContent','SyndicatedContent','root/import/syndicatedcontent','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1247779657,NULL,0),('tPagC0AQErZXjLFZQ6OI1g',1246966459,'3','pbversion0000000000001','approved','ImageAsset','ImageAsset','root/import/imageasset','3','7','12',NULL,0,0,0,0,0,329,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000220',1247488979,'3','pbversion0000000000001','approved','Flash Style 3 Template','Flash Style 3 Template','flash-style-3-template','3','7','12',NULL,0,0,0,0,0,1377,'\r\n\r\n',0,1,0,1258524907,'',0),('PBtmpl0000000000000001',1247535846,'3','pbversion0000000000001','approved','Admin Console','Admin Console','admin_console2','3','7','12',NULL,0,1,0,0,0,5858,'\n',0,1,0,1258524909,'',0),('GYaFxnMu9UsEG8oanwB6TA',1246965871,'3','pbversion0000000000001','approved','Folder','Folder','root/import/folder','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1247779656,NULL,0),('pbtmpl0000000000000221',1247487940,'3','pbversion0000000000001','approved','Flash Tutorial Template','Flash Tutorial Template','flash-tutorial-template','3','7','12',NULL,0,0,0,0,0,2088,'\r\n\r\n',0,1,0,1258524907,'',0),('VZK3CRgiMb8r4dBjUmCTgQ',1247046242,'3','pbversion0000000000001','approved','Poll','Poll','root/import/poll','3','7','12',NULL,0,0,0,0,0,311,NULL,0,1,0,1247779656,NULL,0),('RrV4aAPnn4dM0ZcU3OXnlw',1258524916,'3','pbversion0000000000001','approved','style','style','root/import/style','3','7','12',NULL,0,0,0,0,0,316,'\r\n',0,1,0,1258524918,NULL,0),('i5kt5aodVs_oepNEkE7Okw',1242312883,'3','pbversion0000000000001','approved','poll.css','poll.css','poll.css','3','7','12',NULL,0,1,0,0,0,499,NULL,0,1,0,1247779656,NULL,0),('tXwf1zaOXTvsqPn6yu-GSw',1246965607,'3','pbversion0000000000001','approved','FileAsset','FileAsset','root/import/fileasset','3','7','12',NULL,0,0,0,0,0,326,NULL,0,1,0,1247779656,NULL,0),('nFen0xjkZn8WkpM93C9ceQ',1247864696,'3','pbversion0000000000001','approved','Shelf (Default)','Shelf (Default)','root/import/shelf-default','3','7','12',NULL,0,1,0,0,0,4327,'\n',0,1,0,1258524908,'',0),('2CS-BErrjMmESOtGT90qOg',1248549087,'3','pbversion0000000000001','approved','Default View Profile Template','Default View Profile Template','root/import/account/profile/default-view-profile-template','3','7','12',NULL,0,1,0,0,0,7546,NULL,0,1,0,1258524907,NULL,1),('MBmWlA_YEA2I6D29OMGtRg',1248549086,'3','pbversion0000000000001','approved','Default Profile Error Template','Default Profile Error Template','root/import/account/profile/default-profile-error-template','3','7','12',NULL,0,1,0,0,0,1211,NULL,0,1,0,1258524907,NULL,0),('gfZOwaTWYjbSoVaQtHBBEw',1249407461,'3','pbversion0000000000001','approved','Inbox Account Layout','Inbox Account Layout','root/import/account/inbox-account-layout','3','7','12',NULL,0,1,0,0,0,3141,'',0,1,0,1258524907,'',0),('0n4HtbXaWa_XJHkFjetnLQ',1248549086,'3','pbversion0000000000001','approved','Default Inbox View Message Template','Default Inbox View Message Template','root/import/account/inbox/default-inbox-view-message-template','3','7','12',NULL,0,1,0,0,0,4962,NULL,0,1,0,1258524907,NULL,0),('ErEzulFiEKDkaCDVmxUavw',1248549086,'3','pbversion0000000000001','approved','Default Inbox Error Template','Default Inbox Error Template','root/import/account/inbox/default-inbox-error-template','3','7','12',NULL,0,1,0,0,0,730,NULL,0,1,0,1258524907,NULL,0),('DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'3','pbversion0000000000001','approved','Default Message Confirm Template','Default Message Confirm Template','root/import/account/inbox/default-message-confirm-template','3','7','12',NULL,0,1,0,0,0,783,NULL,0,1,0,1258524907,NULL,0),('1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'3','pbversion0000000000001','approved','Default Manage Invitations Template','Default Manage Invitations Template','root/import/account/inbox/default-manage-invitations-template','3','7','12',NULL,0,1,0,0,0,9680,'\n\n',0,1,0,1258524907,'',0),('5A8Hd9zXvByTDy4x-H28qw',1248549086,'3','pbversion0000000000001','approved','Default Invitation Confirmation Template','Default Invitation Confirmation Template','root/import/account/inbox/default-invitation-confirmation-template','3','7','12',NULL,0,1,0,0,0,1540,NULL,0,1,0,1258524907,NULL,0),('VBkY05f-E3WJS50WpdKd1Q',1248549087,'3','pbversion0000000000001','approved','Default View Invitation Template','Default View Invitation Template','root/import/account/inbox/default-view-invitation-template','3','7','12',NULL,0,1,0,0,0,3807,NULL,0,1,0,1258524907,NULL,0),('XgcsoDrbC0duVla7N7JAdw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Email Template','Default Invite User Email Template','root/import/account/inbox/default-invite-user-email-template','3','7','12',NULL,0,1,0,0,0,489,NULL,0,1,0,1258524907,NULL,0),('cR0UFm7I1qUI2Wbpj--08Q',1248549086,'3','pbversion0000000000001','approved','Default Invite User Form Template','Default Invite User Form Template','root/import/account/inbox/default-invite-user-form-template','3','7','12',NULL,0,1,0,0,0,3933,NULL,0,1,0,1258524907,NULL,0),('SVIhz68689hwUGgcDM-gWw',1248549086,'3','pbversion0000000000001','approved','Default Invite User Confirm Template','Default Invite User Confirm Template','root/import/account/inbox/default-invite-user-confirm-template','3','7','12',NULL,0,1,0,0,0,817,NULL,0,1,0,1258524908,NULL,0),('zrNpGbT3odfIkg6nFSUy8Q',1249407461,'3','pbversion0000000000001','approved','Friends Layout Template','Friends Layout Template','root/import/account/friends/friends-layout-template','3','7','12',NULL,0,1,0,0,0,2552,'\n',0,1,0,1258524908,'',0),('1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'3','pbversion0000000000001','approved','Default Friends View Template','Default Friends View Template','root/import/account/friends/default-friends-view-template','3','7','12',NULL,0,1,0,0,0,8014,NULL,0,1,0,1258524908,NULL,0),('AZFU33p0jpPJ-E6qLSWZng',1248549086,'3','pbversion0000000000001','approved','Default Friends Edit Template','Default Friends Edit Template','root/import/account/friends/default-friends-edit-template','3','7','12',NULL,0,1,0,0,0,9770,NULL,0,1,0,1258524908,NULL,0),('AGJBGviWGAwjnwziiPjvDg',1248549087,'3','pbversion0000000000001','approved','Default Send Request Template','Default Send Request Template','root/import/account/friends/default-send-request-template','3','7','12',NULL,0,1,0,0,0,2757,NULL,0,1,0,1258524908,NULL,0),('7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'3','pbversion0000000000001','approved','Default Friends Error Template','Default Friends Error Template','root/import/account/friends/default-friends-error-template','3','7','12',NULL,0,1,0,0,0,772,NULL,0,1,0,1258524908,NULL,0),('K8F0j_cq_jgo8dvWY_26Ag',1248549086,'3','pbversion0000000000001','approved','Default Friends Confirmation Template','Default Friends Confirmation Template','root/import/account/friends/default-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,938,NULL,0,1,0,1258524908,NULL,0),('G5V6neXIDiFXN05oL-U3AQ',1248549087,'3','pbversion0000000000001','approved','Default Remove Friends Confirmation Template','Default Remove Friends Confirmation Template','root/import/account/friends/default-remove-friends-confirmation-template','3','7','12',NULL,0,1,0,0,0,1162,NULL,0,1,0,1258524908,NULL,0),('9ThW278DWLV0-Svf68ljFQ',1249407460,'3','pbversion0000000000001','approved','Account Layout','Account Layout','root/import/account/user/account-layout','3','7','12',NULL,0,1,0,0,0,1619,'\n',0,1,0,1258524908,'',0),('-zxyB-O50W8YnL39Ouoc4Q',1248563425,'3','pbversion0000000000001','approved','Default My Sales Template','Default My Sales Template','root/import/default-my-sales-template','3','7','12',NULL,0,1,0,0,0,3621,NULL,0,1,0,1258524908,NULL,0),('b4n3VyUIsAHyIvT-W-jziA',1249407461,'3','pbversion0000000000001','approved','Contributions Layout','Contributions Layout','root/import/account/contributions/contributions-layout','3','7','12',NULL,0,1,0,0,0,1644,'\n',0,1,0,1258524909,'',0),('PBtmpl0000000000000056',1248729559,'3','pbversion0000000000001','approved','Default Product','Default Product','default_product','3','7','12',NULL,0,1,0,0,0,13170,'\n\n',0,1,0,1258524908,'',0),('alraubvBu-YJJ614jAHD5w',1250147475,'3','pbversion0000000000001','approved','matrix-nav-tmpl','matrix-nav-tmpl','new-matrix/matrix-nav-tmpl','3','7','12',NULL,0,1,0,0,0,676,NULL,0,1,0,1258524907,NULL,0),('i9-G00ALhJOr0gMh-vHbKA',1250408924,'3','pbversion0000000000001','approved','Inbox SMS Notification','Inbox SMS Notification','root/import/inbox-sms-notification','3','7','4',NULL,0,0,0,0,0,446,NULL,0,1,0,1258524907,NULL,0),('matrixtmpl000000000002',1251054814,'3','pbversion0000000000001','approved','Matrix Default Compare','Matrix Default Compare','matrix-default-compare-template','3','7','12',NULL,0,0,0,0,0,21189,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1258524906,'',0),('ohjyzab5i-yW6GOWTeDUHg',1251425384,'3','pbversion0000000000001','approved','Default Manage Ad Sku Template','Default Manage Ad Sku Template','root/import/ad-sku/default-manage-ad-sku-template','3','7','12',NULL,0,0,0,0,0,2618,NULL,0,1,0,1258524906,NULL,0),('AldPGu0u-jm_5xK13atCSQ',1251419124,'3','pbversion0000000000001','approved','Default Purchase Ad Sku Template','Default Purchase Ad Sku Template','root/import/ad-sku/default-purchase-ad-sku-template','3','7','12',NULL,0,0,0,0,0,3882,NULL,0,1,0,1258524906,NULL,0),('5bnNzteN7w3NnK9mF4XiCg',1250243000,'3','pbversion0000000000001','approved','Survey','Survey','root/import/survey','3','7','12',NULL,0,0,0,0,0,317,NULL,0,1,0,1253052788,NULL,0),('PBtmpl0000000000000063',1250243000,'3','pbversion0000000000001','approved','Default Overview Report','Default Overview Report','root/import/survey/default-overview-report','3','7','12',NULL,0,1,0,0,0,5596,NULL,0,1,0,1258524908,NULL,0),('PBtmpl0000000000000062',1250243000,'3','pbversion0000000000001','approved','Default Gradebook Report','Default Gradebook Report','root/import/survey/default-gradebook-report','3','7','12',NULL,0,1,0,0,0,4820,NULL,0,1,0,1258524908,NULL,0),('PBtmpl0000000000000061',1250243000,'3','pbversion0000000000001','approved','Default Survey','Default Survey','root/import/survey/default-survey','3','7','12',NULL,0,1,0,0,0,2867,NULL,0,1,0,1258524908,NULL,0),('CxMpE_UPauZA3p8jdrOABw',1250243000,'3','pbversion0000000000001','approved','Default Questions','Default Questions','root/import/survey/default-questions','3','7','12',NULL,0,1,0,0,0,17294,NULL,0,1,0,1258524908,NULL,0),('1oBRscNIcFOI-pETrCOspA',1250243000,'3','pbversion0000000000001','approved','Default Section Edit','Default Section Edit','root/import/survey/default-section-edit','3','7','12',NULL,0,1,0,0,0,13450,NULL,0,1,0,1258524908,NULL,0),('wAc4azJViVTpo-2NYOXWvg',1250243000,'3','pbversion0000000000001','approved','Default Question Edit','Default Question Edit','root/import/survey/default-question-edit','3','7','12',NULL,0,1,0,0,0,12656,NULL,0,1,0,1258524906,NULL,0),('AjhlNO3wZvN5k4i4qioWcg',1250243000,'3','pbversion0000000000001','approved','Default Answer Edit','Default Answer Edit','root/import/survey/default-answer-edit','3','7','12',NULL,0,1,0,0,0,9539,NULL,0,1,0,1258524906,NULL,0),('qsG6B24a0SC5KrhQjmdZBw',1250243000,'3','pbversion0000000000001','approved','survey.css','survey.css','survey.css','3','7','12',NULL,0,1,0,0,0,5192,NULL,0,1,0,1253052788,NULL,0),('RSAMkc6WQmfRE3TOr1_3Mw',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,399,NULL,0,1,0,1253052788,NULL,0),('ExpireIncResptmpl00001',1250243000,'3','pbversion0000000000001','approved','ExpireIncompleteSurveyResponses','ExpireIncompleteSurveyResponses','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses','3','7','12',NULL,0,1,0,0,0,809,NULL,0,1,0,1258524907,NULL,0),('7F-BuEHi7t9bPi008H8xZQ',1250243000,'3','pbversion0000000000001','approved','Default Survey Summary','Default Survey Summary','root/import/survey/default-survey-summary','3','7','12',NULL,0,1,0,0,0,2281,NULL,0,1,0,1253052789,NULL,0),('S3zpVitAmhy58CAioH359Q',1250243000,'3','pbversion0000000000001','approved','Default Test Results','Default Test Results','root/import/survey/default-test-results','3','7','12',NULL,0,1,0,0,0,6153,'',0,1,0,1258524906,'',0),('kwTL1SWCk0GlpiJ5zAAEPQ',1250243000,'3','pbversion0000000000001','approved','surveyedit.css','surveyedit.css','root/import/survey/surveyedit.css','3','7','12',NULL,0,1,0,0,0,5215,NULL,0,1,0,1253052789,NULL,0),('nWNVoMLrMo059mDRmfOp9g',1250243000,'3','pbversion0000000000001','approved','Default Feedback','Default Feedback','root/import/survey/default-feedback','3','7','12',NULL,0,1,0,0,0,1232,NULL,0,1,0,1258524908,NULL,0),('matrixtmpl000000000003',1252087641,'3','pbversion0000000000001','approved','Matrix Default Detailed Listing','Matrix Default Detailed Listing','matrix-default-detailed-listing','3','7','12',NULL,0,0,0,0,0,15768,'\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1258524907,'',0),('newslettercs0000000001',1252682678,'3','pbversion0000000000001','approved','Newsletter Manager (default)',' Newsletter Manager','newslettercstemplate','3','7','3',NULL,0,0,0,0,0,2763,'\n',0,1,0,1253052788,'',0),('1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'3','pbversion0000000000001','approved','Default Contributions View','Default Contributions View','root/import/account/contributions/default-contributions-view','3','7','12',NULL,0,1,0,0,0,7747,'\n',0,1,0,1258524909,'',0),('0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'3','pbversion0000000000001','approved','Story Archive Asset List','Story Archive Asset List','root/import/storymanager/keywordlist','3','7','4',NULL,0,0,0,0,0,576,NULL,0,1,0,1258524908,NULL,0),('hkj6WeChxFyqfP85UlRP8w',1250243000,'3','pbversion0000000000001','approved','matrix.css','matrix.css','new-matrix/matrix.css','3','7','12',NULL,0,1,0,0,0,16408,NULL,0,1,0,1253052788,NULL,0),('TKmhv8boP3TD2xwSwUBq0g',1250243000,'3','pbversion0000000000001','approved','Default ThingyRecord View','Default ThingyRecord View','home/thinyrecord-templates/default-thingyrecord-view','3','7','3',NULL,0,1,0,0,0,1762,NULL,0,1,0,1258524908,NULL,0),('75CmQgpcCSkdsL-oawdn3Q',1253555614,'3','pbversion0000000000001','approved','Default Edit Profile Template','Default Edit Profile Template','root/import/account/profile/default-edit-profile-template','3','7','12',NULL,0,1,0,0,0,3273,'\n\n\n\n',0,1,0,1258524907,'',0),('d8jMMMRddSQ7twP4l1ZSIw',1253555614,'3','pbversion0000000000001','approved','Default Survey Take','Default Survey Take','root/import/survey/default-survey-take','3','7','12',NULL,0,1,0,0,0,3929,'\n\n\n\n',0,1,0,1258524908,'',0),('N716tpSna0iIQTKxS4gTWA',1253652848,'3','pbversion0000000000001','approved','Default Account Layout','Default Account Layout','root/import/account/default-account-layout2','3','7','12',NULL,0,1,0,0,0,1381,'\n',0,1,0,1258524909,'',0),('fowHfgOkJtAxdst7rugTog',1252595993,'3','pbversion0000000000001','approved','Story Manager','Story Manager','root/import/storymanager','3','7','12',NULL,0,1,0,0,0,339,'\r\n',0,1,0,1253676393,NULL,0),('3QpYtHrq_jmAk1FNutQM5A',1253636379,'3','pbversion0000000000001','approved','Story Template','Story Template','root/import/storymanager/storytemplate','3','7','4',NULL,0,0,0,0,0,6518,'\n\n\n',0,1,0,1253676393,'',0),('yxD5ka7XHebPLD-LXBwJqw',1253635396,'3','pbversion0000000000001','approved','StoryArchive','StoryArchive','root/import/storymanager/storyarchive','3','7','4',NULL,0,0,0,0,0,3075,'',0,1,0,1258524908,'',0),('E3tzZjzhmYoNlAyP2VW33Q',1253635296,'3','pbversion0000000000001','approved','Edit Story','Edit Story','root/import/storymanager/editstory','3','7','4',NULL,0,0,0,0,0,5900,'',0,1,0,1258524908,'',0),('TbDcVLbbznPi0I0rxQf2CQ',1253636379,'3','pbversion0000000000001','approved','Story Template Topic','Story Template Topic','root/import/storymanager/storytemplatetopic','3','7','4',NULL,0,0,0,0,0,7029,'\n\n\n\n\n',0,1,0,1258524908,'',0),('iCM9pRY5yYyjufROgaCDlg',1253305659,'3','pbversion0000000000001','approved','storyManager.css','storyManager.css','storymanager.css','3','7','12',NULL,0,1,0,0,0,4530,NULL,0,1,0,1253676393,NULL,0),('limMkk80fMB3fqNZVf162w',1253507213,'3','pbversion0000000000001','approved','Default Asset Subscription','Default Asset Subscription','root/import/default-asset-subscription','3','7','3',NULL,0,1,0,0,0,546,NULL,0,1,0,1253676393,NULL,0),('VyCINX2KixKYr2pzQGX9Mg',1254881103,'3','pbversion0000000000001','approved','layout.css','layout.css','layout.css','3','7','12',NULL,0,1,0,0,0,1388,'\r\n',0,1,0,1254881107,NULL,0),('CarouselTmpl0000000001',1254881103,'3','pbversion0000000000001','approved','Default Carousel','Default Carousel','root/import/carousel/carousel-default','3','7','12',NULL,0,0,0,0,0,2819,'\n\n\n',0,1,0,1258524907,'',0),('TvOZs8U1kRXLtwtmyW75pg',1256092368,'3','pbversion0000000000001','approved','Article','Article','root/import/article','3','7','12',NULL,0,0,0,0,0,322,'\r\n',0,1,0,1256092370,NULL,0),('zb_OPKNqcTuIjdvvbEkRjw',1256092368,'3','pbversion0000000000001','approved','article.css','article.css','article.css','3','7','12',NULL,0,1,0,0,0,733,'\r\n',0,1,0,1256092370,NULL,0),('brxm_faNdZX5tRo3p50g3g',1256092368,'3','pbversion0000000000001','approved','Map Templates','Map Templates','home/map/map-templates','3','7','3',NULL,0,0,0,0,0,336,'\r\n',0,1,0,1256092370,NULL,0),('PBrichedit000000000001',1256092369,'3','pbversion0000000000001','approved','Content Manager\'s Rich Edit','Content Manager\'s Rich Edit','content_managers_rich_edit','3','7','12',NULL,0,0,0,0,0,572,'\r\n',0,1,0,1256092370,NULL,0),('FJbUTvZ2nUTn65LpW6gjsA',1256092369,'3','pbversion0000000000001','approved','Profile Account Layout','Profile Account Layout','root/import/account/profile/profile-account-layout','3','7','12',NULL,0,1,0,0,0,4101,'',0,1,0,1258524906,'',0),('pbrobot000000000000001',1256092369,'3','pbversion0000000000001','approved','robots.txt','robots.txt','robots.txt','3','7','12',NULL,0,0,0,0,0,474,NULL,0,1,0,1256092370,NULL,0),('4qh0kIsFUdd4Ox-Iu1JZgg',1257311886,'3','pbversion0000000000001','approved','EMS','EMS','root/import/ems','3','7','12',NULL,0,1,0,0,0,310,'\r\n',0,1,0,1257311889,NULL,0),('OOyMH33plAy6oCj_QWrxtg',1257311886,'3','pbversion0000000000001','approved','Lookup Registrant (Default)','Lookup Registrant (Default)','root/import/ems/lookup-registrant-default','3','7','12',NULL,0,1,0,0,0,7091,'\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1257311889,'',0),('PsFn7dJt4wMwBa8hiE3hOA',1257311886,'3','pbversion0000000000001','approved','Print Badge (Default)','Print Badge (Default)','root/import/ems/print-badge-default','3','7','12',NULL,0,1,0,0,0,2304,NULL,0,1,0,1257311889,NULL,0),('yBwydfooiLvhEFawJb0VTQ',1257311887,'3','pbversion0000000000001','approved','Print Ticket (Default)','Print Ticket (Default)','root/import/ems/print-ticket-default','3','7','12',NULL,0,1,0,0,0,2368,NULL,0,1,0,1257311889,NULL,0),('PBEmsBadgeTemplate0000',1257311887,'3','pbversion0000000000001','approved','Default EMS Badge Template','Default EMS Badge Template','default_emsbadge','3','7','4',NULL,0,0,0,0,0,2563,NULL,0,1,0,1257311889,NULL,0),('S2_LsvVa95OSqc66ITAoig',1257311887,'3','pbversion0000000000001','approved','EMS Schedule Listing (default)','EMS Schedule Listing (default)','root/import/ems/ems-schedule-listing-default2','3','7','12',NULL,0,1,0,0,0,14244,'\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1257311889,'',0),('hreA_bgxiTX-EzWCSZCZJw',1257311887,'3','pbversion0000000000001','approved','Print Remaining Tickets Template (default)','Print Remaining Tickets Template (default)','root/import/ems/default-print-remaining-tickets-template','3','7','12',NULL,0,1,0,0,0,2326,'\r\n',0,1,0,1257311889,NULL,0),('9j0_Z1j3Jd0QBbY2akb6qw',1257311887,'3','pbversion0000000000001','approved','Default Map View','Default Map View','home/map/map-templates/default-map-view','3','7','3',NULL,0,1,0,0,0,1289,'',0,1,0,1258524908,'',0),('-K8Hj45mbelljN9-0CXZxg',1257311887,'3','pbversion0000000000001','approved','DataForm','DataForm','root/import/dataform','3','7','12',NULL,0,0,0,0,0,336,NULL,0,1,0,1257311888,NULL,0),('PBtmpl0000000000000020',1257311887,'3','pbversion0000000000001','approved','Mail Form','Mail Form','mail_form','3','7','12',NULL,0,1,0,0,0,4556,'\n',0,1,0,1257311888,'',0),('PBtmpl0000000000000085',1257311888,'3','pbversion0000000000001','approved','Default Email','Default Email','default_email','3','7','12',NULL,0,1,0,0,0,2008,NULL,0,1,0,1257311888,NULL,0),('PBtmpl0000000000000104',1257311888,'3','pbversion0000000000001','approved','Default Acknowledgement','Default Acknowledgement','default_acknowledgement','3','7','12',NULL,0,1,0,0,0,1736,'',0,1,0,1257311888,'',0),('PBtmpl0000000000000021',1257311888,'3','pbversion0000000000001','approved','Data List','Data List','data_list','3','7','12',NULL,0,1,0,0,0,4024,'',0,1,0,1257311888,'',0),('PBtmpl0000000000000116',1257311888,'3','pbversion0000000000001','approved','Tab Form','Tab Form','tab_form','3','7','12',NULL,0,1,0,0,0,5667,'\n',0,1,0,1257311888,'',0),('PBtmpl0000000000000141',1257311888,'3','pbversion0000000000001','approved','Default DataForm','Default DataForm','pbtmpl0000000000000141','3','7','12',NULL,0,1,0,0,0,5973,'\n',0,1,0,1257311888,'',0),('2GxjjkRuRkdUg_PccRPjpA',1257311888,'3','pbversion0000000000001','approved','Select Gateway (Default)','Select Gateway (Default)','shopping-cart-collateral-items/select-gateway-default','3','7','3',NULL,0,1,0,0,0,614,'\r\n',0,1,0,1257311889,NULL,0),('_aE16Rr1-bXBf8SIaLZjCg',1257311888,'3','pbversion0000000000001','approved','picklanguage','picklanguage','media/picklanguage','3','7','12',NULL,0,1,0,0,0,617,'\r\n',0,1,0,1257311889,NULL,0),('P_4uog81vSUK4KxuW_4GUA',1258524916,'3','pbversion0000000000001','approved','css','css','css','3','7','12',NULL,0,1,0,0,0,298,'\r\n',0,1,0,1258524918,NULL,0),('PBtmpl0000000000000060',1258524916,'3','pbversion0000000000001','approved','Fail Safe','Fail Safe','fail_safe','3','7','12',NULL,0,1,0,0,0,2013,NULL,0,1,0,1258524918,NULL,0),('PBtmpl0000000000000111',1258524916,'3','pbversion0000000000001','approved','Make Page Printable','Make Page Printable','make_page_printable','3','7','12',NULL,0,1,0,0,0,3579,NULL,0,1,0,1258524918,NULL,0),('PBtmpl0000000000000137',1258524916,'3','pbversion0000000000001','approved','Admin Console Style','Admin Console','admin_console','3','7','12',NULL,0,1,0,0,0,1272,NULL,0,1,0,1258524918,NULL,0),('PBtmpl0000000000000132',1258524916,'3','pbversion0000000000001','approved','Empty','Empty','empty','3','7','12',NULL,0,1,0,0,0,296,NULL,0,1,0,1258524918,NULL,0),('PBtmplBlankStyle000001',1258524916,'3','pbversion0000000000001','approved','WebGUI 6 Blank Style','WebGUI 6 Blank Style','pbtmplblankstyle000001','3','7','12',NULL,0,1,0,0,0,1636,NULL,0,1,0,1258524918,NULL,0),('uCn31PzislTZlgt_79j7cQ',1258524916,'3','pbversion0000000000001','approved','style.css','style.css','css/style.css','3','7','12',NULL,0,1,0,0,0,1065,'\r\n',0,1,0,1258524918,NULL,0),('H_-8zjtWsO1FUpQqNtkxNQ',1258524916,'3','pbversion0000000000001','approved','wg-base.css','wg-base.css','css/wg-base.css','3','7','12',NULL,0,1,0,0,0,1465,'\r\n',0,1,0,1258524918,NULL,0),('PBtmpl0000000000000117',1259133274,'3','pbversion0000000000001','approved','DropMenu','DropMenu','dropmenu','3','7','12',NULL,0,1,0,0,0,2566,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000136',1259133274,'3','pbversion0000000000001','approved','Synopsis','Synopsis','synopsis2','3','7','12',NULL,0,1,0,0,0,1641,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000093',1259133274,'3','pbversion0000000000001','approved','crumbTrail','crumbTrail','crumbtrail2','3','7','12',NULL,0,1,0,0,0,1405,NULL,0,1,0,1259133277,NULL,0),('GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'3','pbversion0000000000001','approved','Syndicated Articles','Syndicated Articles','syndicated_articles','3','7','12',NULL,0,1,0,0,0,2288,NULL,0,1,0,1259133277,NULL,0),('-PkdI8l1idu-8gDX3iOdcw',1259133274,'3','pbversion0000000000001','approved','One Over Two','One Over Two','one_over_two','3','7','12',NULL,0,1,0,0,0,5991,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000103',1259133275,'3','pbversion0000000000001','approved','Article With Image','Article With Image','article-with-image','3','7','12',NULL,0,1,0,0,0,1961,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000024',1259133275,'3','pbversion0000000000001','approved','File','File','file','3','7','12',NULL,0,1,0,0,0,894,NULL,0,1,0,1259133277,NULL,0),('XdlKhCDvArs40uqBhvzR3w',1259133275,'3','pbversion0000000000001','approved','Article With Pagination','Article With Pagination','article-with-pagination','3','7','12',NULL,0,1,0,0,0,3090,'\n',0,1,0,1259133277,NULL,0),('PBnav00000000indentnav',1259133275,'3','pbversion0000000000001','approved','Indent Nav','Indent Nav','indent_nav','3','7','12',NULL,0,0,0,0,0,1877,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000124',1259133275,'3','pbversion0000000000001','approved','Tabs','Tabs','tabs','3','7','12',NULL,0,1,0,0,0,1678,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000131',1259133275,'3','pbversion0000000000001','approved','Right Column','Right Column','right_column','3','7','12',NULL,0,1,0,0,0,4643,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000134',1259133275,'3','pbversion0000000000001','approved','Hierarchical Top Nav','Hierarchical Top Nav','import/hierarchical-top-nav','3','7','12',NULL,0,1,0,0,0,3913,'\n\n\n\n\n\n',0,1,0,1259133277,'',0),('PBtmpl0000000000000088',1259133275,'3','pbversion0000000000001','approved','Image','Image','image','3','7','12',NULL,0,1,0,0,0,778,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000078',1259133275,'3','pbversion0000000000001','approved','File Folder','File Folder','file_folder','3','7','12',NULL,0,1,0,0,0,3708,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000055',1259133275,'3','pbversion0000000000001','approved','Default Poll','Default Poll','default_poll','3','7','12',NULL,0,1,0,0,0,2928,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000065',1259133275,'3','pbversion0000000000001','approved','Default Syndicated Content','Default Syndicated Content','default_syndicated_content','3','7','12',NULL,0,1,0,0,0,2246,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000054',1259133276,'3','pbversion0000000000001','approved','Default Page','Default Page','default_page','3','7','12',NULL,0,1,0,0,0,2912,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000108',1259133276,'3','pbversion0000000000001','approved','horizontalMenu','horizontalMenu','horizontalmenu','3','7','12',NULL,0,1,0,0,0,1888,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000115',1259133276,'3','pbversion0000000000001','approved','Linked Image with Caption','Linked Image with Caption','linked_image_with_caption','3','7','12',NULL,0,1,0,0,0,2246,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000109',1259133276,'3','pbversion0000000000001','approved','One Over Three','One Over Three','one_over_three','3','7','12',NULL,0,1,0,0,0,7556,'',0,1,0,1259133277,'',0),('VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'3','pbversion0000000000001','approved','Three Columns','Three Columns','three-columns','3','7','12',NULL,0,1,0,0,0,5620,'',0,1,0,1259133277,'',0),('PBtmpl0000000000000002',1259133276,'3','pbversion0000000000001','approved','Default Article','Default Article','default_article','3','7','12',NULL,0,1,0,0,0,2070,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000123',1259133276,'3','pbversion0000000000001','approved','Item','Item','item','3','7','12',NULL,0,1,0,0,0,2111,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000200',1259133276,'3','pbversion0000000000001','approved','Default Search','Default Search','default_search2','3','7','12',NULL,0,0,0,0,0,3874,NULL,0,1,0,1279073450,NULL,0),('PBtmpl0000000000000135',1259133276,'3','pbversion0000000000001','approved','Side By Side','Side By Side','side_by_side','3','7','12',NULL,0,1,0,0,0,4241,'\n',0,1,0,1259133277,'',0),('PBnav00000000000bullet',1259133276,'3','pbversion0000000000001','approved','Bulleted List','Bulleted List','bulleted_list','3','7','12',NULL,0,0,0,0,0,2638,'\n\n',0,1,0,1259133277,'',0),('MK4fCNoyrx5SE8eyDfOpxg',1259133276,'3','pbversion0000000000001','approved','Flash File','Flash File','flash-file','3','7','12',NULL,0,1,0,0,0,1731,NULL,0,1,0,1259133277,NULL,0),('PBtmpl0000000000000130',1259133276,'3','pbversion0000000000001','approved','Tree Navigation','Tree Navigation','root/import/navigation/tree-navigation','3','7','12',NULL,0,1,0,0,0,3424,'\n\n\n',0,1,0,1259133277,'',0),('2rC4ErZ3c77OJzJm7O5s3w',1260934195,'3','pbversion0000000000001','approved','EMS Badge Listing (default)','EMS Badge Listing (default)','root/import/ems/ems-badge-listing-default','3','7','12',NULL,0,1,0,0,0,10962,'\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1260934196,'',0),('BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'3','pbversion0000000000001','approved','Badge Builder (Default)','Badge Builder (Default)','root/import/ems/badge-builder-default','3','7','12',NULL,0,1,0,0,0,37098,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1263962529,'',0),('mRtqRuVikSe82BQsYBlD0A',1263962529,'3','pbversion0000000000001','approved','Bare Image','Bare Image','bare_image','3','7','12',NULL,0,1,0,0,0,558,NULL,0,1,0,1263962529,NULL,0),('A16v-YjWAShXWvSACsraeg',1263962529,'3','pbversion0000000000001','approved','StoryTopic','StoryTopic','root/import/storymanager/storytopic','3','7','4',NULL,0,0,0,0,0,2223,'',0,1,0,1263962529,'',0),('aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'3','pbversion0000000000001','approved','Shop Account Layout','Shop Account Layout','root/import/account/shop/shop-account-layout','3','7','12',NULL,0,1,0,0,0,3174,'\n',0,1,0,1263962529,'',0),('CalendarEventEdit00001',1269401468,'3','pbversion0000000000001','approved','Default Calendar Event Edit','Default Calendar Event Edit','root/import/calendar-templates/default-calendar-event-edit','3','7','12',NULL,0,0,0,0,0,17613,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n',0,1,0,1269401469,'',0),('1z9J1O08n_7gVVlBwSRBJQ',1269401468,'3','pbversion0000000000001','approved','Auth','Auth','root/import/auth','3','7','12',NULL,0,1,0,0,0,311,NULL,0,1,0,1269401469,NULL,0),('xSmREZO3GNzK3M5PaueOOQ',1269401468,'3','pbversion0000000000001','approved','LDAP/Account','LDAP/Account','root/import/auth/ldap/account','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000004',1269401468,'3','pbversion0000000000001','approved','Default LDAP Account Display Template','Default LDAP Account Display Template','default_ldap_account_display_template','3','7','12',NULL,0,1,0,0,0,1348,NULL,0,1,0,1269401469,NULL,0),('0bx-xoL8TSXXubFuqKAoVQ',1269401468,'3','pbversion0000000000001','approved','LDAP/Create','LDAP/Create','root/import/auth/ldap/create','3','7','12',NULL,0,0,0,0,0,344,NULL,0,1,0,1269401469,NULL,0),('taX2UYkFF21ALpFZY2rhMw',1269401468,'3','pbversion0000000000001','approved','LDAP/Login','LDAP/Login','root/import/auth/ldap/login','3','7','12',NULL,0,0,0,0,0,341,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000006',1269401468,'3','pbversion0000000000001','approved','Default LDAP Login Template','Default LDAP Login Template','default_ldap_login_template','3','7','12',NULL,0,1,0,0,0,1945,NULL,0,1,0,1269401469,NULL,0),('K0q_N885Httqev1VCqUWxg',1269401468,'3','pbversion0000000000001','approved','WebGUI/Account','WebGUI/Account','root/import/auth/webgui/account','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000010',1269401468,'3','pbversion0000000000001','approved','Default WebGUI Account Display Template','Default WebGUI Account Display Template','default_webgui_account_display_template','3','7','12',NULL,0,1,0,0,0,2743,NULL,0,1,0,1269401469,NULL,0),('fq1ZkYhH24R5tb96kuT10Q',1269401468,'3','pbversion0000000000001','approved','WebGUI/Create','WebGUI/Create','root/import/auth/webgui/create','3','7','12',NULL,0,0,0,0,0,350,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000015',1269401468,'3','pbversion0000000000001','approved','Default WebGUI Welcome Message Template','Default WebGUI Welcome Message Template','root/import/auth/webgui/create/default-webgui-welcome-message-template','3','7','12',NULL,0,1,0,0,0,696,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000016',1269401468,'3','pbversion0000000000001','approved','Default WebGUI Account Activation Template','Default WebGUI Account Activation Template','root/import/auth/webgui/create/default-webgui-account-activation-template','3','7','3',NULL,0,1,0,0,0,601,NULL,0,1,0,1269401469,NULL,0),('oHk7fAFhEEkB7dHzi0QOQA',1269401468,'3','pbversion0000000000001','approved','WebGUI/Expired','WebGUI/Expired','root/import/auth/webgui/expired','3','7','12',NULL,0,0,0,0,0,353,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000012',1269401468,'3','pbversion0000000000001','approved','Default WebGUI Password Reset Template','Default WebGUI Password Reset Template','default_webgui_password_reset_template','3','7','12',NULL,0,1,0,0,0,2055,NULL,0,1,0,1269401469,NULL,0),('9M-lrlPQWeeNWfvnDnK_Xg',1269401469,'3','pbversion0000000000001','approved','WebGUI/Login','WebGUI/Login','root/import/auth/webgui/login','3','7','12',NULL,0,0,0,0,0,347,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000013',1269401469,'3','pbversion0000000000001','approved','Default WebGUI Login Template','Default WebGUI Login Template','default_webgui_login_template','3','7','12',NULL,0,1,0,0,0,2230,NULL,0,1,0,1269401469,NULL,0),('_gBYAdTcbkiyamnqi2Xskg',1269401469,'3','pbversion0000000000001','approved','WebGUI/Recovery','WebGUI/Recovery','root/import/auth/webgui/recovery','3','7','12',NULL,0,0,0,0,0,356,NULL,0,1,0,1269401469,NULL,0),('PBtmpl0000000000000014',1269401469,'3','pbversion0000000000001','approved','Default WebGUI Password Recovery Template','Default WebGUI Password Recovery Template','default_webgui_password_recovery_template','3','7','12',NULL,0,1,0,0,0,3029,NULL,0,1,0,1269401469,NULL,0),('0iMMbGN3BevuCBHjjLiQNA',1269401469,'3','pbversion0000000000001','approved','WebGUI/Deactivate','WebGUI/Deactivate','root/import/auth/webgui/deactivate','3','7','12',NULL,0,1,0,0,0,361,NULL,0,1,0,1269401469,NULL,0),('zaHUYsE_PgKk8hnVd8ffEQ',1269401469,'3','pbversion0000000000001','approved','WebGUI Deactivate Account Template','WebGUI Deactivate Account Template','default_webgui_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,859,NULL,0,1,0,1269401469,NULL,0),('6A4yIjWwJfIE0Ep-I0jutg',1269401469,'3','pbversion0000000000001','approved','LDAP/Deactivate','LDAP/Deactivate','root/import/auth/ldap/deactivate','3','7','12',NULL,0,1,0,0,0,355,NULL,0,1,0,1269401469,NULL,0),('_P4PMiraGsLTfOjK4fYQPQ',1269401469,'3','pbversion0000000000001','approved','LDAP Deactivate Account Template','LDAP Deactivate Account Template','default_ldap_deactivate_account_template','3','7','12',NULL,0,1,0,0,0,851,NULL,0,1,0,1269401469,NULL,0),('matrixtmpl000000000001',1269401469,'3','pbversion0000000000001','approved','Matrix Default View','Matrix Default View','matrix-default-view-template','3','7','12',NULL,0,0,0,0,0,22177,'\n\n\n\n\n\n\n',0,1,0,1269401469,'',0),('GRUNFctldUgop-qRLuo_DA',1269401469,'3','pbversion0000000000001','approved','Default Survey Edit','Default Survey Edit','root/import/survey/default-survey-edit','3','7','12',NULL,0,1,0,0,0,6580,NULL,0,1,0,1269401469,NULL,0),('_XfvgNH__bY1ykMiKYSobQ',1270612323,'3','pbversion0000000000001','approved','account.css','account.css','root/import/account/account.css','3','7','12',NULL,0,1,0,0,0,42943,NULL,0,1,0,1270612332,NULL,0),('qxd0WpRGqDPWP8WBicYvEA',1271820952,'3','pbversion0000000000001','approved','dragdropsorting.js','dragdropsorting.js','root/import/gallery-templates/dragdropsorting.js','3','7','12',NULL,0,1,0,0,0,12499,NULL,0,1,0,1271820953,NULL,0),('oHh0UqAJeY7u2n--WD-BAA',1271820952,'3','pbversion0000000000001','approved','Default Edit Map Point','Default Edit Map Point','home/map/map-templates/default-edit-map-point','3','7','3',NULL,0,1,0,0,0,2080,'\n',0,1,0,1271820953,NULL,0),('u9vfx33XDk5la1-QC5FK7g',1271820953,'3','pbversion0000000000001','approved','Default Map Point View','Default Map Point View','home/map/map-templates/default-map-point-view','3','7','3',NULL,0,1,0,0,0,2053,'\n',0,1,0,1271820953,NULL,0),('aNmgn0cd6tldmC1FpW4KbA',1273032714,'3','pbversion0000000000001','approved','Shop','Shop','shopping-cart-collateral-items','3','7','3',NULL,0,1,0,0,0,324,NULL,0,0,0,1273032723,NULL,0),('2q5fxatSFLgIhXaUX-oSvg',1273032714,'3','pbversion0000000000001','approved','bottom-left.jpg','bottom-left.jpg','shopping-cart-collateral-items/bottom-left.jpg','3','7','3',NULL,0,1,0,0,0,32254,NULL,0,0,0,1273032723,NULL,0),('_d5WTkKjnwct-_Dk7gZHvQ',1273032714,'3','pbversion0000000000001','approved','bottom-right.jpg','bottom-right.jpg','shopping-cart-collateral-items/bottom-right.jpg','3','7','3',NULL,0,1,0,0,0,32258,NULL,0,0,0,1273032723,NULL,0),('Iz2mUR3jCPKyemwAea4b2g',1273032714,'3','pbversion0000000000001','approved','input_bg.jpg','input_bg.jpg','shopping-cart-collateral-items/input_bg.jpg','3','7','3',NULL,0,1,0,0,0,30076,NULL,0,0,0,1273032723,NULL,0),('JU9bjsLRoWj7GVHs__prig',1273032714,'3','pbversion0000000000001','approved','top-left.jpg','top-left.jpg','shopping-cart-collateral-items/top-left.jpg','3','7','3',NULL,0,1,0,0,0,32207,NULL,0,0,0,1273032723,NULL,0),('noOlnjQGexHg8c4bGVUo9g',1273032714,'3','pbversion0000000000001','approved','top-right.jpg','top-right.jpg','shopping-cart-collateral-items/top-right.jpg','3','7','3',NULL,0,1,0,0,0,32245,NULL,0,0,0,1273032723,NULL,0),('aIpCmr9Hi__vgdZnDTz1jw',1273032715,'3','pbversion0000000000001','approved','Cart (Default)','Cart (Default)','default-shopping-cart-template','3','7','3',NULL,0,1,0,0,0,19335,' ',0,1,0,1273032723,'',0),('XNd7a_g_cTvJVYrVHcx2Mw',1273032715,'3','pbversion0000000000001','approved','Address (Default)','Address (Default)','shopping-cart-collateral-items/address-default','3','7','3',NULL,0,1,0,0,0,5814,'\r\n',0,1,0,1273032723,'',0),('2gtFt7c0qAFNU3BG_uvNvg',1273032715,'3','pbversion0000000000001','approved','My Purchases (Default)','My Purchases (Default)','shopping-cart-collateral-items/my-purchases-default','3','7','3',NULL,0,1,0,0,0,3045,'\n',0,1,0,1273032723,'',0),('bPz1yk6Y9uwMDMBcmMsSCg',1273032715,'3','pbversion0000000000001','approved','Email Receipt (Default)','Email Receipt (Default)','shopping-cart-collateral-items/email-receipt-default','3','7','3',NULL,0,1,0,0,0,4632,NULL,0,1,0,1273032723,NULL,0),('vrKXEtluIhbmAS9xmPukDA',1273032715,'3','pbversion0000000000001','approved','Donation (Default)','Donation (Default)','root/import/default-donation-template','3','7','12',NULL,0,1,0,0,0,2486,'\r\n',0,0,0,1273032723,'',0),('63ix2-hU0FchXGIWkG3tow',1273032715,'3','pbversion0000000000001','approved','Flat Discount (Default)','Flat Discount (Default)','root/import/flat-discount-default','3','7','12',NULL,0,1,0,0,0,1265,NULL,0,1,0,1273032723,NULL,0),('eqb9sWjFEVq0yHunGV8IGw',1273032715,'3','pbversion0000000000001','approved','Subscription (Default)','Subscription (Default)','root/import/subscription-default','3','7','12',NULL,0,1,0,0,0,2850,'\n',0,1,0,1273032723,'',0),('3womoo7Teyy2YKFa25-MZg',1273032715,'3','pbversion0000000000001','approved','Address Book (Default)','Address Book (Default)','shopping-cart-collateral-items/address-book-default','3','7','3',NULL,0,1,0,0,0,3120,'\n',0,1,0,1273032723,'',0),('EBlxJpZQ9o-8VBOaGQbChA',1273032715,'3','pbversion0000000000001','approved','MiniCart','MiniCart','shopping-cart-collateral-items/minicart','3','7','3',NULL,0,1,0,0,0,2611,'',0,1,0,1273032723,'',0),('g8W53Pd71uHB9pxaXhWf_A',1273032715,'3','pbversion0000000000001','approved','My Purchases Detail (Default)','My Purchases Detail (Default)','shopping-cart-collateral-items/my-purchases-detail-default','3','7','3',NULL,0,1,0,0,0,8065,'\n',0,1,0,1273032723,'',0),('jEz8iTGNWEt2I05IhVV19Q',1273032715,'3','pbversion0000000000001','approved','Operation/RedeemSubscription','Operation/RedeemSubscription','root/import/operation/redeemsubscription','3','7','12',NULL,0,0,0,0,0,390,NULL,0,1,0,1273032723,NULL,0),('PBtmpl0000000000000053',1273032715,'3','pbversion0000000000001','approved','Subscription code redemption','Subscription code redemption','subscription_code_redemption','3','7','12',NULL,0,1,0,0,0,575,NULL,0,1,0,1273032723,NULL,0),('itransact_credentials1',1273032715,'3','pbversion0000000000001','approved','ITransact Credentials (Default)','ITransact Credentials (Default)','shopping-cart-collateral-items/itransact-credentials','3','7','4',NULL,0,0,0,0,0,10445,' \n\n\n',0,1,0,1273032723,'',0),('D6cJpRcey35aSkh9Q_FPUQ',1273032715,'3','pbversion0000000000001','approved','Default EU User Screen','Default EU User Screen','root/import/default-eu-user-screen','3','7','12',NULL,0,1,0,0,0,1605,NULL,0,1,0,1273032723,NULL,0),('30h5rHxzE_Q0CyI3Gg7EJw',1273032715,'3','pbversion0000000000001','approved','Cash Summary Screen (Default)','Cash Summary Screen (Default)','shopping-cart-collateral-items/cash-summary','3','7','4',NULL,0,0,0,0,0,8335,' \n',0,1,0,1273032723,'',0),('jysVZeUR0Bx2NfrKs5sulg',1273032715,'3','pbversion0000000000001','approved','Ogone Summary Screen (Default)','Ogone Summary Screen (Default)','shopping-cart-collateral-items/ogone-summary','3','7','4',NULL,0,0,0,0,0,8805,' \r\n',0,1,0,1273032723,'',0),('300AozDaeveAjB_KN0ljlQ',1273032715,'3','pbversion0000000000001','approved','PayPal Standard Summary Screen (Default)','PayPal Standard Summary Screen (Default)','shopping-cart-collateral-items/paypal-std-summary','3','7','4',NULL,0,0,0,0,0,8830,' \r\n',0,1,0,1273032723,'',0),('GqnZPB0gLoZmqQzYFaq7bg',1273032716,'3','pbversion0000000000001','approved','PayPal Express Checkout Summary Screen (Default)','PayPal Express Checkout Summary Screen (Default)','shopping-cart-collateral-items/paypal-express-summary','3','7','4',NULL,0,0,0,0,0,8849,' \r\n',0,1,0,1273032723,'',0),('t87D1138NhPHhA23-hozBA',1273032716,'3','pbversion0000000000001','approved','CrystalX','CrystalX','crystalx','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('QtBumey5ffc-xffRp1-7Aw',1273032716,'3','pbversion0000000000001','approved','img','img','crystalx/img','3','7','3',NULL,0,1,0,0,0,310,NULL,0,1,0,1273032724,NULL,0),('-0sK2rX1cwQt1ipUSqsiQQ',1273032716,'3','pbversion0000000000001','approved','bg.gif','bg.gif','crystalx/img/bg.gif','3','7','3',NULL,0,1,0,0,0,1440,NULL,0,1,0,1273032724,NULL,0),('hS_eOaVz9Qb5ixndK9EXAw',1273032716,'3','pbversion0000000000001','approved','header.jpg','header.jpg','crystalx/img/header.jpg','3','7','3',NULL,0,1,0,0,0,8038,NULL,0,1,0,1273032724,NULL,0),('k2p-Be8C98pf2cRq7E-JHg',1273032716,'3','pbversion0000000000001','approved','tab_link.gif','tab_link.gif','crystalx/img/tab_link.gif','3','7','3',NULL,0,1,0,0,0,507,NULL,0,1,0,1273032724,NULL,0),('aYG4fjbMPbC4LCuuMp4gGA',1273032716,'3','pbversion0000000000001','approved','tab_hover.gif','tab_hover.gif','crystalx/img/tab_hover.gif','3','7','3',NULL,0,1,0,0,0,538,NULL,0,1,0,1273032724,NULL,0),('F122Ey0NtVAw6Lfv1M6G_Q',1273032716,'3','pbversion0000000000001','approved','ico_archive.gif','ico_archive.gif','crystalx/img/ico_archive.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('qmXHKrQ6EDLSOGkrEKRUDA',1273032716,'3','pbversion0000000000001','approved','bg_page_in.jpg','bg_page_in.jpg','crystalx/img/bg_page_in.jpg','3','7','3',NULL,0,1,0,0,0,3242,NULL,0,1,0,1273032724,NULL,0),('4qZgXjPPO4fwV879yu5XUg',1273032716,'3','pbversion0000000000001','approved','bg_page.JPG','bg_page.JPG','crystalx/img/bg_page.jpg','3','7','3',NULL,0,1,0,0,0,1229,NULL,0,1,0,1273032724,NULL,0),('mb-xeAugm5GJdvu-Wh0MtQ',1273032717,'3','pbversion0000000000001','approved','search_submit.gif','search_submit.gif','crystalx/img/search_submit.gif','3','7','3',NULL,0,1,0,0,0,2108,NULL,0,1,0,1273032724,NULL,0),('84Y9CwgzP6eNU7wZnk019Q',1273032717,'3','pbversion0000000000001','approved','ico_date.gif','ico_date.gif','crystalx/img/ico_date.gif','3','7','3',NULL,0,1,0,0,0,416,NULL,0,1,0,1273032724,NULL,0),('ikXTtJKZfHVxqw-47E4AQA',1273032717,'3','pbversion0000000000001','approved','ico_user.gif','ico_user.gif','crystalx/img/ico_user.gif','3','7','3',NULL,0,1,0,0,0,407,NULL,0,1,0,1273032724,NULL,0),('DhRWPTgzhvju_-TbMN3CwA',1273032717,'3','pbversion0000000000001','approved','ico_comments.gif','ico_comments.gif','crystalx/img/ico_comments.gif','3','7','3',NULL,0,1,0,0,0,427,NULL,0,1,0,1273032724,NULL,0),('6njI-pZz2bwsjWh-Q1_11g',1273032717,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list2.gif','3','7','3',NULL,0,1,0,0,0,412,NULL,0,1,0,1273032724,NULL,0),('_Hz1Gnd3yEnJzVS7l7nJMQ',1273032717,'3','pbversion0000000000001','approved','content_all_bg.PNG','content_all_bg.PNG','crystalx/img/content_all_bg.png','3','7','3',NULL,0,1,0,0,0,8683,NULL,0,1,0,1273032724,NULL,0),('VOOrXK5dFnkGih7aTkuDWA',1273032717,'3','pbversion0000000000001','approved','search.PNG','search.PNG','crystalx/img/search.png','3','7','3',NULL,0,1,0,0,0,2190,NULL,0,1,0,1273032724,NULL,0),('ruf-QejOkUHDRtfgakHlbA',1273032717,'3','pbversion0000000000001','approved','col_title_bg_long.GIF','col_title_bg_long.GIF','crystalx/img/col_title_bg_long.gif','3','7','3',NULL,0,1,0,0,0,1265,NULL,0,1,0,1273032724,NULL,0),('FSHy5KjQjkt599PHS41seA',1273032717,'3','pbversion0000000000001','approved','footer.jpg','footer.jpg','crystalx/img/footer.jpg','3','7','3',NULL,0,1,0,0,0,4571,NULL,0,1,0,1273032724,NULL,0),('nuYYXAz4KNNxgfumfnpo_g',1273032718,'3','pbversion0000000000001','approved','ico_top.gif','ico_top.gif','crystalx/img/ico_top.gif','3','7','3',NULL,0,1,0,0,0,834,NULL,0,1,0,1273032724,NULL,0),('Mr7ljjoy6n4fZojpQWajKQ',1273032718,'3','pbversion0000000000001','approved','ico_links.gif','ico_links.gif','crystalx/img/ico_links.gif','3','7','3',NULL,0,1,0,0,0,419,NULL,0,1,0,1273032724,NULL,0),('ApkqpDOrJDxK3QrWBGSRIg',1273032718,'3','pbversion0000000000001','approved','ico_archive2.gif','ico_archive2.gif','crystalx/img/ico_archive2.gif','3','7','3',NULL,0,1,0,0,0,432,NULL,0,1,0,1273032724,NULL,0),('AzzTY0Lay1f_YGeQJFnQCA',1273032718,'3','pbversion0000000000001','approved','ico_list.gif','ico_list.gif','crystalx/img/ico_list.gif','3','7','3',NULL,0,1,0,0,0,411,NULL,0,1,0,1273032724,NULL,0),('OiJNwP1gAlcva8_yOtL4gA',1273032718,'3','pbversion0000000000001','approved','CrystalX_style','CrystalX_style','crystalx_style','3','7','3','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.',0,1,0,0,0,3468,NULL,0,1,0,1273032724,NULL,0),('JOuCU4x5BJfVHfkfMkVQdQ',1273032718,'3','pbversion0000000000001','approved','crystalx.css','crystalx.css','crystalx/crystalx.css','3','7','3',NULL,0,1,0,0,0,15657,NULL,0,1,0,1273032724,NULL,0),('Am1J-meNBmhqFfEIWy6Gag',1273032718,'3','pbversion0000000000001','approved','crystalX_Navigation','crystalX_Navigation','crystalx/crystalx_navigation','3','7','3',NULL,0,1,0,0,0,407,NULL,0,1,0,1273032724,NULL,0),('gaIOm5cr2TkT9Fk6QmZWug',1273032718,'3','pbversion0000000000001','approved','crystalX_navi','crystalX_navi','crystalx/crystalx_navi','3','7','3',NULL,0,1,0,0,0,7196,'\n\n\n\n',0,1,0,1273032724,'',0),('w0QifHLhsrzeOpFKl-DX-Q',1273032718,'3','pbversion0000000000001','approved','crystalx_navi.css','crystalx_navi.css','crystalx/crystalx_navi.css','3','7','3',NULL,0,1,0,0,0,10488,NULL,0,1,0,1273032724,NULL,0),('x_hiUi1XZloBvV47Obnu8Q',1273032718,'3','pbversion0000000000001','approved','crystalX_NavigationTrail','crystalX_NavigationTrail','crystalx/crystalx_navigationtrail','3','7','12',NULL,0,1,0,0,0,422,NULL,0,1,0,1273032724,NULL,0),('hpCk0B3vQzgc-QJhSol41w',1273032718,'3','pbversion0000000000001','approved','crystalX_navitrail','crystalX_navitrail','crystalx/crystalx_navitrail','3','7','12',NULL,0,1,0,0,0,1104,NULL,0,1,0,1273032724,NULL,0),('UUwEL6hLEPdrnkZnKRzFYQ',1273032718,'3','pbversion0000000000001','approved','Site Search','Site Search','crystalx/site-search','3','7','3',NULL,0,1,0,0,0,892,NULL,0,1,0,1273032724,NULL,0),('OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'3','pbversion0000000000001','approved','crystalx_search','crystalx_search','crystalx/crystalx_search','3','7','3',NULL,0,1,0,0,0,2754,NULL,0,1,0,1273032724,NULL,0),('stevestyle000000000002',1273032718,'3','pbversion0000000000001','approved','Style 02','Style 02','style_02','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles',0,0,0,0,0,5450,NULL,0,1,0,1273032723,NULL,0),('CQp-RFA2pMh5lFSggPPPYg',1273032719,'3','pbversion0000000000001','approved','[Style] Underground','[Style] Underground','style-underground','3','7','3',NULL,0,0,0,0,0,452,NULL,0,1,0,1273032724,NULL,0),('_Mi_NTd3x8UB96LWezWHnw',1273032719,'3','pbversion0000000000001','approved','Images','Images','style-underground/images','3','7','3',NULL,0,0,0,0,0,328,NULL,0,1,0,1273032724,NULL,0),('A_5LVQQWR73QZR8FFbny_w',1273032719,'3','pbversion0000000000001','approved','bg.gif','bg.gif','style-underground/images/bg.gif','3','7','3',NULL,0,1,0,0,0,612,NULL,0,0,0,1273032724,NULL,0),('wywIfa_VuTsq0c5Ed-W-MA',1273032719,'3','pbversion0000000000001','approved','bullet.gif','bullet.gif','style-underground/images/bullet.gif','3','7','3',NULL,0,1,0,0,0,686,NULL,0,0,0,1273032724,NULL,0),('xmykMFjri1O2NrYHbeToVQ',1273032719,'3','pbversion0000000000001','approved','footerbg.gif','footerbg.gif','style-underground/images/footerbg.gif','3','7','3',NULL,0,1,0,0,0,460,NULL,0,0,0,1273032724,NULL,0),('0IIGNBs_-INzqBC5VLeJgw',1273032719,'3','pbversion0000000000001','approved','headerbg.gif','headerbg.gif','style-underground/images/headerbg.gif','3','7','3',NULL,0,1,0,0,0,530,NULL,0,0,0,1273032724,NULL,0),('FXmePdyS0YKuZ1VCGGpK9w',1273032719,'3','pbversion0000000000001','approved','quote.gif','quote.gif','style-underground/images/quote.gif','3','7','3',NULL,0,1,0,0,0,685,NULL,0,0,0,1273032724,NULL,0),('66qCywiE_fiL9u5YIaJhgw',1273032719,'3','pbversion0000000000001','approved','tableft.gif','tableft.gif','style-underground/images/tableft.gif','3','7','3',NULL,0,1,0,0,0,720,NULL,0,0,0,1273032724,NULL,0),('n5VpG4lFsOG1elaWDQbilw',1273032719,'3','pbversion0000000000001','approved','tabright.gif','tabright.gif','style-underground/images/tabright.gif','3','7','3',NULL,0,1,0,0,0,2135,NULL,0,0,0,1273032724,NULL,0),('g3JH1PRq6m6Bj_PnGpcrSQ',1273032719,'3','pbversion0000000000001','approved','CSS','CSS','style-underground/css','3','7','3',NULL,0,0,0,0,0,319,NULL,0,1,0,1273032724,NULL,0),('egpnaaFqWmJwYTZ5CvFH9g',1273032719,'3','pbversion0000000000001','approved','Underground.css','Underground.css','style-underground/css/underground.css','3','7','3',NULL,0,1,0,0,0,13097,NULL,0,1,0,1273032724,NULL,0),('BBpxqoSseIor5C9ei9JEFQ',1273032719,'3','pbversion0000000000001','approved','Underground WebGUI.css','Underground WebGUI.css','style-underground/css/underground-webgui.css','3','7','3',NULL,0,1,0,0,0,520,NULL,0,1,0,1273032724,NULL,0),('G0hl4VilbFKipToyxKqFrg',1273032719,'3','pbversion0000000000001','approved','Prototypes','Prototypes','style-underground/prototypes','3','7','3',NULL,0,0,0,0,0,429,NULL,0,1,0,1273032725,NULL,0),('GWU2qZqe6yEuAKG-5HtBdg',1273032719,'3','pbversion0000000000001','approved','Templates','Templates','style-underground/templates','3','7','3',NULL,0,0,0,0,0,337,NULL,0,1,0,1273032725,NULL,0),('Qk24uXao2yowR6zxbVJ0xA',1273032719,'3','pbversion0000000000001','approved','[style] Underground','[style] Underground','style-underground/style-underground','3','7','3','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.',0,1,0,0,0,4340,NULL,0,1,0,1273032725,NULL,0),('39KNX53B4nYJAyIE1lu8ZQ',1273032720,'3','pbversion0000000000001','approved','[nav] Underground Top Navigation','[nav] Underground Top Navigation','style-underground/nav-underground-top-navigation','3','7','3',NULL,0,1,0,0,0,1137,NULL,0,1,0,1273032725,NULL,0),('ztfi__vHJLsQDsMenrEn-w',1273032720,'3','pbversion0000000000001','approved','[nav] Underground Side Navigation','[nav] Underground Side Navigation','style-underground/nav-underground-side-navigation','3','7','3',NULL,0,1,0,0,0,1148,NULL,0,1,0,1273032725,NULL,0),('8qyrDCNeggB4dzKiOoRuiQ',1273032720,'3','pbversion0000000000001','approved','[admintoggle] Underground Admin Toggle','[admintoggle] Underground Admin Toggle','style-underground/templates/admintoggle-underground-admin-toggle','3','7','3',NULL,0,1,0,0,0,520,NULL,0,1,0,1273032725,NULL,0),('M1NyNeS5jpdIsiIWFiJprw',1273032720,'3','pbversion0000000000001','approved','View My Account','View My Account','style-underground/templates/view-my-account','3','7','3',NULL,0,1,0,0,0,461,NULL,0,1,0,1273032725,NULL,0),('AsfpsOpsGzZCb9m7MyxPuw',1273032720,'3','pbversion0000000000001','approved','Navigation','Navigation','style-underground/navigation','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1273032725,NULL,0),('n-Vr_wgxOkwiHGt1nJto9w',1273032720,'3','pbversion0000000000001','approved','Top Navigation','Top Navigation','style-underground/top-navigation','3','7','3',NULL,0,1,0,0,0,396,NULL,0,1,0,1273032725,NULL,0),('jmqLxnoWb6p92Cr12lf1hw',1273032720,'3','pbversion0000000000001','approved','Side Navigation','Side Navigation','style-underground/side-navigation','3','7','3',NULL,0,1,0,0,0,402,NULL,0,1,0,1273032725,NULL,0),('8E2UOnj_XPEghTj7nfVM0g',1273032720,'3','pbversion0000000000001','approved','Search','Search','style-underground/search','3','7','3',NULL,0,1,0,0,0,345,NULL,0,1,0,1273032725,NULL,0),('Q4uX_C557arTp6D_jwB1jQ',1273032720,'3','pbversion0000000000001','approved','Wiki','Wiki','root/import/wiki','3','12','12',NULL,0,0,0,0,0,312,NULL,0,1,0,1273032723,NULL,0),('WikiRCTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Recent Changes','Default Recent Changes','default-wiki-recent-changes','3','7','12',NULL,0,0,0,0,0,1645,NULL,0,1,0,1273032723,NULL,0),('WikiFrontTmpl000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Front Page','Default Wiki Front Page','default-wiki-front-page','3','7','12',NULL,0,0,0,0,0,3699,NULL,0,1,0,1273032723,NULL,0),('WikiSearchTmpl00000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Search','Default Wiki Search','default-wiki-search','3','7','12',NULL,0,0,0,0,0,2432,'\n\n',0,1,0,1273032723,NULL,0),('WikiPHTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Page History','Default Page History','default-wiki-page-history','3','7','12',NULL,0,0,0,0,0,653,NULL,0,1,0,1273032723,NULL,0),('WikiPageTmpl0000000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page','Default Wiki Page','default-wiki-page','3','7','12',NULL,0,0,0,0,0,6212,'\n\n\n\n\n\n\n\n',0,1,0,1273032723,'',0),('WikiPageEditTmpl000001',1273032720,'3','pbversion0000000000001','approved','Default Wiki Page Edit','Default Wiki Page Edit','default-wiki-page-edit','3','7','12',NULL,0,0,0,0,0,2550,NULL,0,1,0,1273032723,NULL,0),('WikiMPTmpl000000000001',1273032720,'3','pbversion0000000000001','approved','Default Most Popular','Default Most Popular','default-wiki-most-popular','3','7','12',NULL,0,0,0,0,0,1029,NULL,0,1,0,1273032723,NULL,0),('stevestyle000000000003',1273032720,'3','pbversion0000000000001','approved','Style 03','Style 03','style_03','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.',0,0,0,0,0,3491,NULL,0,1,0,1273032723,NULL,0),('1qFjOEiILIwr1xB5_ebppQ',1273032721,'3','pbversion0000000000001','approved','Greenportal','Greenportal','greenportal','3','7','3',NULL,0,1,0,0,0,319,NULL,0,1,0,1273032725,NULL,0),('xD76UfQ_JnSgTLBNvytcpQ',1273032721,'3','pbversion0000000000001','approved','greenportal_image','greenportal_image','greenportal_image','3','7','12',NULL,0,1,0,0,0,344,NULL,0,1,0,1273032725,NULL,0),('pAXR7Kby4O-dSxOwLp1GaA',1273032721,'3','pbversion0000000000001','approved','menu_top.png','menu_top.png','greenportal_image/menu_top.png','3','7','12',NULL,0,1,0,0,0,7649,NULL,0,1,0,1273032725,NULL,0),('TthzMLO4n3qxy59QZ5YBHg',1273032721,'3','pbversion0000000000001','approved','menu_dark.png','menu_dark.png','greenportal_image/menu_dark.png','3','7','12',NULL,0,1,0,0,0,2641,NULL,0,1,0,1273032725,NULL,0),('3n31SQjYa150TBrRBgMPhA',1273032721,'3','pbversion0000000000001','approved','menu_light.png','menu_light.png','greenportal_image/menu_light.png','3','7','12',NULL,0,1,0,0,0,2195,NULL,0,1,0,1273032725,NULL,0),('R4RxDufGbbIzEmpcoEcLrw',1273032721,'3','pbversion0000000000001','approved','logo.jpg','logo.jpg','greenportal_image/logo.jpg','3','7','12',NULL,0,1,0,0,0,41449,NULL,0,1,0,1273032725,NULL,0),('xyyn5mz3xGyvrcI1rY8C-w',1273032721,'3','pbversion0000000000001','approved','greenportal.css','greenportal.css','greenportal.css','3','7','12',NULL,0,1,0,0,0,6872,NULL,0,1,0,1273032725,NULL,0),('KKt0VB_eoQxw9xEsHsAhag',1273032721,'3','pbversion0000000000001','approved','Greenportal_style','Greenportal_style','greenportal_style','3','7','12','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/',0,1,0,0,0,2252,NULL,0,1,0,1273032725,NULL,0),('h0bOzz7WvdaVZXsjpwtkww',1273032721,'3','pbversion0000000000001','approved','greenportal_Navigation','greenportal_Navigation','greenportal_navigation','3','7','3',NULL,0,1,0,0,0,394,NULL,0,1,0,1273032725,NULL,0),('_z3ukLCqvoaUygfsbbkBzw',1273032721,'3','pbversion0000000000001','approved','Greenportal_menu','Greenportal_menu','greenportal_menu','3','7','3',NULL,0,1,0,0,0,2014,NULL,0,1,0,1273032725,NULL,0),('qFOfW1sKyOTnGNcP6BXbwg',1273032721,'3','pbversion0000000000001','approved','greenportal_NavigationTop','greenportal_NavigationTop','greenportal_navigationtop','3','7','12',NULL,0,1,0,0,0,416,NULL,0,1,0,1273032725,NULL,0),('Pt38T5_MWSue2e1N36MLdw',1273032721,'3','pbversion0000000000001','approved','Greenportal_menuTop','Greenportal_menuTop','greenportal_menutop','3','7','12',NULL,0,1,0,0,0,950,NULL,0,1,0,1273032725,NULL,0),('LDcM1Iop17nF2MoSa7zo_Q',1273032721,'3','pbversion0000000000001','approved','Greenportal_dataform','Greenportal_dataform','greenportal_dataform','3','7','3',NULL,0,1,0,0,0,5320,'\r\n\r\n',0,1,0,1273032725,'',0),('hVF1taXj4bfd7DuL4XDMYg',1273032721,'3','pbversion0000000000001','approved','Greenportal_datalist','Greenportal_datalist','greenportal_datalist','3','7','3',NULL,0,1,0,0,0,4140,'\n\n',0,1,0,1273032725,'',0),('x4-2QYRSrIB_BJfnSKKj4w',1273032721,'3','pbversion0000000000001','approved','Greenportal_acknowledgement','Greenportal_acknowledgement','greenportal_acknowledgement','3','7','3',NULL,0,1,0,0,0,1755,'',0,1,0,1273032725,'',0),('423R4Y6XIt3wUzlnLo-chg',1273032721,'3','pbversion0000000000001','approved','Greenportal_forum','Greenportal_forum','greenportal_forum','3','7','3',NULL,0,1,0,0,0,7997,'\r\n\r\n\r\n',0,1,0,1273032725,'',0),('oZ1Mk-zExYUyD-JsjTvaHg',1273032722,'3','pbversion0000000000001','approved','Greenportal_thread','Greenportal_thread','greenportal_thread','3','7','3',NULL,0,1,0,0,0,11119,'\r\n',0,1,0,1273032725,'',0),('mYwS8CZaOLMt0raaKXGZcQ',1273032722,'3','pbversion0000000000001','approved','Greenportal_postform','Greenportal_postform','greenportal_postform','3','7','3',NULL,0,1,0,0,0,4047,'\r\n',0,1,0,1273032725,'',0),('kSGR4OHsKmhLQTuLkisOww',1273032722,'3','pbversion0000000000001','approved','Greenportal_search','Greenportal_search','greenportal_search','3','7','3',NULL,0,1,0,0,0,3685,'',0,1,0,1273032725,'',0),('G5DgNizuG3jXkjPp6UaGrA',1273032722,'3','pbversion0000000000001','approved','Greenportal_Calendar','Greenportal_Calendar','greenportal_calendar','3','7','3',NULL,0,1,0,0,0,352,NULL,0,1,0,1273032725,NULL,0),('Xqc3qPUXoFE8dt9qocdWig',1273032722,'3','pbversion0000000000001','approved','Greenportal_calendarWeek','Greenportal_calendarWeek','greenportal_calendar/greenportal_calendarweek','3','7','3',NULL,0,1,0,0,0,10425,'\r\n',0,1,0,1273032725,'',0),('IBTb7wllSt7RxFmmvm9pkQ',1273032722,'3','pbversion0000000000001','approved','Greenportal_calendarDay','Greenportal_calendarDay','greenportal_calendar/greenportal_calendarday','3','7','3',NULL,0,1,0,0,0,10071,' \r\n\r\n',0,1,0,1273032725,'',0),('Z1EM7JMI_4SkyfaZffSElw',1273032722,'3','pbversion0000000000001','approved','Greenportal_calendarEvent','Greenportal_calendarEvent','greenportal_calendar/greenportal_calendarevent','3','7','3',NULL,0,1,0,0,0,8356,' \r\n\r\n',0,1,0,1273032725,'',0),('fJg7SKpGZwzSNx3_ebki1A',1273032722,'3','pbversion0000000000001','approved','Greenportal_calendarEventEdit','Greenportal_calendarEventEdit','greenportal_calendar/greenportal_calendareventedit','3','7','3',NULL,0,1,0,0,0,8897,'\n\n\n \n\n',0,1,0,1273032725,'',0),('ihf4Rx6p72xn_nVKaIeOaw',1273032722,'3','pbversion0000000000001','approved','Greenportal_calendarSearch','Greenportal_calendarSearch','greenportal_calendar/greenportal_calendarsearch','3','7','3',NULL,0,1,0,0,0,9139,' \r\n\r\n',0,1,0,1273032725,'',0),('jrWJ6nHXkqgFbml7BZ9chw',1273032722,'3','pbversion0000000000001','approved','Greenportal_submission','Greenportal_submission','greenportal_submission','3','7','3',NULL,0,1,0,0,0,20931,'\r\n',0,1,0,1273032725,'',0),('Ys6f3vpe0y1uRcaCJ2TlFw',1273032722,'3','pbversion0000000000001','approved','Greenportal_messageboard','Greenportal_messageboard','greenportal_messageboard','3','7','3',NULL,0,1,0,0,0,5587,'',0,1,0,1273032725,'',0),('stevestyle000000000001',1273032722,'3','pbversion0000000000001','approved','Style 01','Style 01','style_01','3','7','12','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles',0,0,0,0,0,3470,NULL,0,1,0,1273032723,NULL,0),('c8xrwVuu5QE0XtF9DiVzLw',1273032723,'3','pbversion0000000000001','approved','Default Inbox View Template','Default Inbox View Template','root/import/account/inbox/default-inbox-view-template','3','7','12',NULL,0,1,0,0,0,10744,'\n\n',0,1,0,1273032723,'',0),('WikiKeyword00000000001',1274238756,'3','pbversion0000000000001','approved',' Wiki Pages By Keyword (default)',' Wiki Pages By Keyword','wiki-master-by-keyword-template.tmpl','3','7','3',NULL,0,0,0,0,0,1717,NULL,0,1,0,1274238759,NULL,0),('ThingyTmpl000000000004',1277868920,'3','pbversion0000000000001','approved','Default Thingy Search Thing','Default Thingy Search Thing','templates/thingy-default-search-thing','3','7','12',NULL,0,0,0,0,0,9374,'\n\n\n\n\n',0,1,0,1277868929,'',0),('GNOAsX98vCsl0JRwfwL-gg',1277868921,'3','pbversion0000000000001','approved','Collaboration','Collaboration','root/import/collaboration','3','7','12',NULL,0,0,0,0,0,338,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000066',1277868921,'3','pbversion0000000000001','approved','Default USS','Default USS','default_uss','3','7','12',NULL,0,1,0,0,0,4949,'\n\n\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000080',1277868921,'3','pbversion0000000000001','approved','FAQ','FAQ','faqtemplate','3','7','12',NULL,0,1,0,0,0,3916,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000097',1277868921,'3','pbversion0000000000001','approved','Traditional with Thumbnails','Traditional with Thumbnails','traditional_with_thumbnails','3','7','12',NULL,0,1,0,0,0,6623,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000112',1277868921,'3','pbversion0000000000001','approved','Weblog','Weblog','weblog','3','7','12',NULL,0,1,0,0,0,5088,'',0,1,0,1277868927,'',0),('PBtmpl0000000000000121',1277868921,'3','pbversion0000000000001','approved','Photo Gallery','Photo Gallery','photo_gallery','3','7','12',NULL,0,1,0,0,0,3154,'\n\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000067',1277868921,'3','pbversion0000000000001','approved','Default Submission','Default Submission','default_submission','3','7','12',NULL,0,1,0,0,0,22377,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000026',1277868921,'3','pbversion0000000000001','approved','Default Forum','Default Forum','default_forum','3','7','12',NULL,0,1,0,0,0,7866,'\n\n\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000128',1277868921,'3','pbversion0000000000001','approved','Classifieds','Classifieds','classifieds','3','7','12',NULL,0,1,0,0,0,3239,'\n\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000079',1277868921,'3','pbversion0000000000001','approved','Topics','Topics','topics','3','7','12',NULL,0,1,0,0,0,4906,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000083',1277868921,'3','pbversion0000000000001','approved','Link List','Link List','link_list','3','7','12',NULL,0,1,0,0,0,3667,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000082',1277868921,'3','pbversion0000000000001','approved','Unordered List','Unordered List','unordered_list','3','7','12',NULL,0,1,0,0,0,4582,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000133',1277868921,'3','pbversion0000000000001','approved','Guest Book','Guest Book','guest_book','3','7','12',NULL,0,1,0,0,0,3046,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000029',1277868921,'3','pbversion0000000000001','approved','Default Post Form','Default Post Form','default_post_form','3','7','12',NULL,0,1,0,0,0,4073,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000032',1277868921,'3','pbversion0000000000001','approved','Default Thread','Default Thread','default_thread','3','7','12',NULL,0,1,0,0,0,11566,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000027',1277868921,'3','pbversion0000000000001','approved','Default Forum Notification','Default Forum Notification','default_forum_notification','3','7','12',NULL,0,1,0,0,0,3058,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000031',1277868921,'3','pbversion0000000000001','approved','Default Forum Search','Default Forum Search','default_forum_search','3','7','12',NULL,0,1,0,0,0,3818,'',0,1,0,1277868927,'',0),('PBtmpl0000000000000068',1277868921,'3','pbversion0000000000001','approved','Default Submission Form','Default Submission Form','default_submission_form','3','7','12',NULL,0,1,0,0,0,4901,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000099',1277868921,'3','pbversion0000000000001','approved','FAQ Submission Form','FAQ Submission Form','faq_submission_form','3','7','12',NULL,0,1,0,0,0,4192,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000114',1277868922,'3','pbversion0000000000001','approved','Link List Submission Form','Link List Submission Form','link_list_submission_form','3','7','12',NULL,0,1,0,0,0,5352,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000077',1277868922,'3','pbversion0000000000001','approved','Job Listing','Job Listing','job_listing','3','7','12',NULL,0,1,0,0,0,4681,'\n\n\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000098',1277868922,'3','pbversion0000000000001','approved','Job','Job','job','3','7','12',NULL,0,1,0,0,0,19943,'',0,1,0,1277868927,'',0),('PBtmpl0000000000000122',1277868922,'3','pbversion0000000000001','approved','Job Submission Form','Job Submission Form','job_submission_form','3','7','12',NULL,0,1,0,0,0,5971,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000081',1277868922,'3','pbversion0000000000001','approved','Q and A','Q and A','q_and_a','3','7','12',NULL,0,1,0,0,0,4416,'\n',0,1,0,1277868927,'',0),('PBtmpl0000000000000101',1277868922,'3','pbversion0000000000001','approved','Ordered List','Ordered List','ordered_list','3','7','12',NULL,0,1,0,0,0,3720,NULL,0,1,0,1277868927,NULL,0),('PBtmpl0000000000000113',1277868922,'3','pbversion0000000000001','approved','Link','Link','link','3','7','12',NULL,0,1,0,0,0,18836,'',0,1,0,1277868927,'',0),('PBtmpl0000000000000208',1277868922,'3','pbversion0000000000001','approved','Request Tracker','Request Tracker','request-tracker-template','3','7','12',NULL,0,0,0,0,0,6743,'\n\n\n\n\n',0,1,0,1277868928,'',0),('PBtmpl0000000000000209',1277868922,'3','pbversion0000000000001','approved','Request Tracker Thread','Request Tracker Thread','request-tracker-post-template','3','7','12',NULL,0,0,0,0,0,22156,'\n',0,1,0,1277868928,'',0),('PBtmpl0000000000000210',1277868922,'3','pbversion0000000000001','approved','Request Tracker Post Form','Request Tracker Post Form','request-tracker-template2','3','7','12',NULL,0,0,0,0,0,5770,'\n\n\n',0,1,0,1277868928,'',0),('default_post_received1',1277868922,'3','pbversion0000000000001','approved','Default Post Received','Default Post Received','default_post_received','3','7','4',NULL,0,0,0,0,0,541,NULL,0,1,0,1277868928,NULL,0),('default_CS_unsubscribe',1277868922,'3','pbversion0000000000001','approved','Default Collaboration System Unsubscribe','Default Collaboration System Unsubscribe','collaboration_unsubscribe','3','7','4',NULL,0,0,0,0,0,988,NULL,0,1,0,1277868928,NULL,0),('gI_TxK-5S4DNuv42wpImmw',1277868923,'3','pbversion0000000000001','approved','Gallery Templates','Gallery Templates','root/import/gallery-templates','3','7','3',NULL,0,0,0,0,0,362,NULL,0,1,0,1277868928,NULL,0),('jME5BEDYVDlBZ8jIQA9-jQ',1277868923,'3','pbversion0000000000001','approved','Default Gallery Search','Default Gallery Search','root/import/gallery-templates/default-gallery-search','3','7','3',NULL,0,1,0,0,0,11344,'\r\n \r\n',0,1,0,1277868928,'',0),('azCqD0IjdQSlM3ar29k5Sg',1277868923,'3','pbversion0000000000001','approved','Default Gallery List Albums View','Default Gallery List Albums View','root/import/gallery-templates/default-gallery-list-albums-view','3','7','3',NULL,0,1,0,0,0,5772,' \r\n \r\n ',0,1,0,1277868928,'',0),('05FpjceLYhq4csF1Kww1KQ',1277868923,'3','pbversion0000000000001','approved','Default Gallery View Album','Default Gallery View Album','root/import/gallery-templates/default-gallery-view-album','3','7','3',NULL,0,1,0,0,0,7698,' \n \n ',0,1,0,1277868928,'',0),('q5O62aH4pjUXsrQR3Pq4lw',1277868923,'3','pbversion0000000000001','approved','Default Gallery View Album Thumbnails','Default Gallery View Album Thumbnails','root/import/gallery-templates/default-gallery-view-album-thumbnails','3','7','3',NULL,0,1,0,0,0,7494,'\r\n\r\n\r\n\r\n\r\n',0,1,0,1277868928,'',0),('KAMdiUdJykjN02CPHpyZOw',1277868923,'3','pbversion0000000000001','approved','Default Gallery View Album Slideshow','Default Gallery View Album Slideshow','root/import/gallery-templates/default-gallery-view-album-slideshow','3','7','3',NULL,0,1,0,0,0,7792,'\r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n',0,1,0,1277868928,'',0),('OkphOEdaSGTXnFGhK4GT5A',1277868923,'3','pbversion0000000000001','approved','Default Gallery List Files For User','Default Gallery List Files For User','root/import/gallery-templates/default-gallery-list-files-for-user','3','7','3',NULL,0,1,0,0,0,7618,'\n \n',0,1,0,1277868928,'',0),('TEId5V-jEvUULsZA0wuRuA',1277868923,'3','pbversion0000000000001','approved','Default Gallery View Photo','Default Gallery View Photo','root/import/gallery-templates/default-gallery-view-photo','3','7','3',NULL,0,1,0,0,0,15421,'\n\n\n\n',0,1,0,1277868928,'',0),('6X-7Twabn5KKO_AbgK3PEw',1277868923,'3','pbversion0000000000001','approved','Default Gallery Edit Album','Default Gallery Edit Album','root/import/gallery-templates/default-gallery-edit-album','3','7','3',NULL,0,1,0,0,0,7966,'\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n',0,1,0,1277868928,'',0),('7JCTAiu1U_bT9ldr655Blw',1277868923,'3','pbversion0000000000001','approved','Default Gallery Edit Photo','Default Gallery Edit Photo','root/import/gallery-templates/default-gallery-edit-photo','3','7','3',NULL,0,1,0,0,0,7124,'\n\n\n\n',0,1,0,1277868928,'',0),('0X4Q3tBWUb_thsVbsYz9xQ',1277868923,'3','pbversion0000000000001','approved','Default Gallery Add Archive','Default Gallery Add Archive','root/import/gallery-templates/default-gallery-add-archive','3','7','3',NULL,0,1,0,0,0,3650,' \r\n\r\n ',0,1,0,1277868928,'',0),('m3IbBavqzuKDd2PGGhKPlA',1277868923,'3','pbversion0000000000001','approved','Default Gallery Make Shortcut','Default Gallery Make Shortcut','root/import/gallery-templates/default-gallery-make-shortcut','3','7','3',NULL,0,1,0,0,0,4843,'\n\n\n\n',0,1,0,1277868928,'',0),('UTNFeV7B_aSCRmmaFCq4Vw',1277868923,'3','pbversion0000000000001','approved','Default Gallery Delete Album','Default Gallery Delete Album','root/import/gallery-templates/default-gallery-delete-album','3','7','3',NULL,0,1,0,0,0,4444,'\n \n\n\n',0,1,0,1277868928,'',0),('zcX-wIUct0S_np14xxOA-A',1277868923,'3','pbversion0000000000001','approved','Default Gallery Delete File','Default Gallery Delete File','root/import/gallery-templates/default-gallery-delete-file','3','7','3',NULL,0,1,0,0,0,4466,'\n \n\n\n',0,1,0,1277868928,'',0),('MBZK_LPVzqhb4TV4mMRTJg',1277868923,'3','pbversion0000000000001','approved','admin_ie7.css','admin_ie7.css','root/import/gallery-templates/admin_ie7.css','3','7','3',NULL,0,1,0,0,0,380,NULL,0,1,0,1277868928,NULL,0),('_hELmIJfgbAyXFNqPyApxQ',1277868923,'3','pbversion0000000000001','approved','admin.css','admin.css','root/import/gallery-templates/admin.css','3','7','3',NULL,0,1,0,0,0,3751,NULL,0,1,0,1277868928,NULL,0),('_9_eiaPgxzF_x_upt6-PNQ',1277868924,'3','pbversion0000000000001','approved','gallery.css','gallery.css','root/import/gallery-templates/gallery.css','3','7','3',NULL,0,1,0,0,0,18687,NULL,0,1,0,1277868928,NULL,0),('kaPRSaf8UKiskiGEgJgLAw',1277868924,'3','pbversion0000000000001','approved','images','images','root/import/gallery-templates/images','3','7','3',NULL,0,0,0,0,0,340,NULL,0,1,0,1277868928,NULL,0),('bANo8aiAPA7aY_oQZKxIWw',1277868924,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss.gif','3','7','3',NULL,0,1,0,0,0,1389,NULL,0,1,0,1277868928,NULL,0),('2ci_v2d4x4uvyjTRlC49OA',1277868924,'3','pbversion0000000000001','approved','moveDown.gif','moveDown.gif','root/import/gallery-templates/images/movedown.gif','3','7','3',NULL,0,1,0,0,0,784,NULL,0,1,0,1277868928,NULL,0),('O-EsSzKgAk1KolFT-x_KsA',1277868924,'3','pbversion0000000000001','approved','moveUp.gif','moveUp.gif','root/import/gallery-templates/images/moveup.gif','3','7','3',NULL,0,1,0,0,0,772,NULL,0,1,0,1277868928,NULL,0),('fdd8tGExyVwHyrB8RBbKXg',1277868924,'3','pbversion0000000000001','approved','next.gif','next.gif','root/import/gallery-templates/images/next.gif','3','7','3',NULL,0,1,0,0,0,1676,NULL,0,1,0,1277868928,NULL,0),('BpisgHl4ZDcSECJp6oib1w',1277868924,'3','pbversion0000000000001','approved','play.gif','play.gif','root/import/gallery-templates/images/play.gif','3','7','3',NULL,0,1,0,0,0,2113,NULL,0,1,0,1277868928,NULL,0),('zshreRgPAXtnF0DtVbQ1Yg',1277868924,'3','pbversion0000000000001','approved','previous.gif','previous.gif','root/import/gallery-templates/images/previous.gif','3','7','3',NULL,0,1,0,0,0,1682,NULL,0,1,0,1277868928,NULL,0),('POVcY79vIqAHR8OfGt36aw',1277868924,'3','pbversion0000000000001','approved','pagination_button.jpg','pagination_button.jpg','root/import/gallery-templates/images/pagination_button.jpg','3','7','12',NULL,0,1,0,0,0,1050,NULL,0,0,0,1277868928,NULL,0),('hIB-z34r8Xl-vYVYCkKr-w',1277868924,'3','pbversion0000000000001','approved','bar-btn-r.jpg','bar-btn-r.jpg','root/import/gallery-templates/images/bar-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,830,NULL,0,0,0,1277868928,NULL,0),('-mPUoFlYcjqjPUPRLAlxNQ',1277868924,'3','pbversion0000000000001','approved','search-field-r.jpg','search-field-r.jpg','root/import/gallery-templates/images/search-field-r.jpg','3','7','12',NULL,0,1,0,0,0,848,NULL,0,0,0,1277868928,NULL,0),('MDpUOR-N8KMyt1J7Hh_h4w',1277868925,'3','pbversion0000000000001','approved','bar-btn.jpg','bar-btn.jpg','root/import/gallery-templates/images/bar-btn.jpg','3','7','12',NULL,0,1,0,0,0,708,NULL,0,0,0,1277868928,NULL,0),('YfXKByTwDZVituMc4h13Dg',1277868925,'3','pbversion0000000000001','approved','pagination_bg.jpg','pagination_bg.jpg','root/import/gallery-templates/images/pagination_bg.jpg','3','7','12',NULL,0,1,0,0,0,1131,NULL,0,0,0,1277868928,NULL,0),('esko_HSU0Gh-uJZ1h3xRmQ',1277868925,'3','pbversion0000000000001','approved','search-field-l.jpg','search-field-l.jpg','root/import/gallery-templates/images/search-field-l.jpg','3','7','12',NULL,0,1,0,0,0,874,NULL,0,0,0,1277868928,NULL,0),('oSqpGswzpBG_ErdfYwIO8A',1277868925,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg.jpg','3','7','12',NULL,0,1,0,0,0,692,NULL,0,0,0,1277868928,NULL,0),('MXJklShZvLLB_DSnZQmXrQ',1277868925,'3','pbversion0000000000001','approved','title_bg.jpg','title_bg.jpg','root/import/gallery-templates/images/title_bg.jpg','3','7','12',NULL,0,1,0,0,0,1658,NULL,0,0,0,1277868928,NULL,0),('BthxD5oJ0idmsyI3ioA2FA',1277868925,'3','pbversion0000000000001','approved','bar-btn-l.jpg','bar-btn-l.jpg','root/import/gallery-templates/images/bar-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,845,NULL,0,0,0,1277868928,NULL,0),('aZ-1HYQamkRHYXvzAra8WQ',1277868925,'3','pbversion0000000000001','approved','search-field.jpg','search-field.jpg','root/import/gallery-templates/images/search-field.jpg','3','7','12',NULL,0,1,0,0,0,750,NULL,0,0,0,1277868928,NULL,0),('eRkb94OYcS5AdcrrerOP5Q',1277868925,'3','pbversion0000000000001','approved','rss.gif','rss.gif','root/import/gallery-templates/images/rss2.gif','3','7','12',NULL,0,1,0,0,0,1391,NULL,0,0,0,1277868928,NULL,0),('TbnkjAJQEASORXIpYqDkcA',1277868925,'3','pbversion0000000000001','approved','blank-image.jpg','blank-image.jpg','root/import/gallery-templates/images/blank-image.jpg','3','7','12',NULL,0,1,0,0,0,3084,NULL,0,0,0,1277868928,NULL,0),('er-3faBjY-hhlDcc5aKqdQ',1277868925,'3','pbversion0000000000001','approved','top_bg.jpg','top_bg.jpg','root/import/gallery-templates/images/top_bg2.jpg','3','7','12',NULL,0,1,0,0,0,693,NULL,0,0,0,1277868928,NULL,0),('8bFsu2FJUqHRUiHcozcVFw',1277868925,'3','pbversion0000000000001','approved','sub-btn-l.jpg','sub-btn-l.jpg','root/import/gallery-templates/images/sub-btn-l.jpg','3','7','12',NULL,0,1,0,0,0,844,NULL,0,0,0,1277868928,NULL,0),('34Aayx5eA320D8VfhdfDBw',1277868925,'3','pbversion0000000000001','approved','sub-btn-r.jpg','sub-btn-r.jpg','root/import/gallery-templates/images/sub-btn-r.jpg','3','7','12',NULL,0,1,0,0,0,824,NULL,0,0,0,1277868928,NULL,0),('TlhKOVmWblZOsAdqmhEpeg',1277868925,'3','pbversion0000000000001','approved','sub-btn.jpg','sub-btn.jpg','root/import/gallery-templates/images/sub-btn.jpg','3','7','12',NULL,0,1,0,0,0,702,NULL,0,0,0,1277868929,NULL,0),('Nx0ypjO3cN6QdZUBUEE0lA',1277868926,'3','pbversion0000000000001','approved','pic-title-bg.jpg','pic-title-bg.jpg','root/import/gallery-templates/images/pic-title-bg.jpg','3','7','12',NULL,0,1,0,0,0,865,NULL,0,0,0,1277868929,NULL,0),('CmFZLN7iPS7XXvUEsxKPKA',1277868926,'3','pbversion0000000000001','approved','row-2.jpg','row-2.jpg','root/import/gallery-templates/images/row-2.jpg','3','7','12',NULL,0,1,0,0,0,806,NULL,0,0,0,1277868929,NULL,0),('v_XBgwwZqgW1D5s4y05qfg',1277868926,'3','pbversion0000000000001','approved','addtl-info.gif','addtl-info.gif','root/import/gallery-templates/images/addtl-info.gif','3','7','12',NULL,0,1,0,0,0,914,NULL,0,0,0,1277868929,NULL,0),('4TdAkKoQbSCvI7QWcW889A',1277868926,'3','pbversion0000000000001','approved','row-1.jpg','row-1.jpg','root/import/gallery-templates/images/row-1.jpg','3','7','12',NULL,0,1,0,0,0,791,NULL,0,0,0,1277868929,NULL,0),('SAgK6eDPCG1cgkJ59WapHQ',1277868926,'3','pbversion0000000000001','approved','prev-btn.gif','prev-btn.gif','root/import/gallery-templates/images/prev-btn.gif','3','7','12',NULL,0,1,0,0,0,2015,NULL,0,0,0,1277868929,NULL,0),('XJYLuvGy9ubF7JNKyINtpA',1277868926,'3','pbversion0000000000001','approved','play-btn.gif','play-btn.gif','root/import/gallery-templates/images/play-btn.gif','3','7','12',NULL,0,1,0,0,0,2543,NULL,0,0,0,1277868929,NULL,0),('RWj7hyv2SpZuXxwj1Wocug',1277868926,'3','pbversion0000000000001','approved','next-btn.gif','next-btn.gif','root/import/gallery-templates/images/next-btn.gif','3','7','12',NULL,0,1,0,0,0,2045,NULL,0,0,0,1277868929,NULL,0),('aq8QElnlm3YufAoxRz9Pcg',1277868926,'3','pbversion0000000000001','approved','data-bg.jpg','data-bg.jpg','root/import/gallery-templates/images/data-bg.jpg','3','7','12',NULL,0,1,0,0,0,821,NULL,0,0,0,1277868929,NULL,0),('i6-BofrJJYozovlzFBByXg',1277868926,'3','pbversion0000000000001','approved','first-photo-button.png','first-photo-button.png','root/import/gallery-templates/images/first-photo-button.png','3','7','3',NULL,0,1,0,0,0,1069,NULL,0,1,0,1277868929,NULL,0),('fU_OZCmtdFNJ8a6bMve8ng',1277868926,'3','pbversion0000000000001','approved','previous-photo-button.png','previous-photo-button.png','root/import/gallery-templates/images/previous-photo-button.png','3','7','3',NULL,0,1,0,0,0,943,NULL,0,1,0,1277868929,NULL,0),('YXCtusAxb4vzZ5sTnUA5DA',1277868926,'3','pbversion0000000000001','approved','next-photo-button.png','next-photo-button.png','root/import/gallery-templates/images/next-photo-button.png','3','7','3',NULL,0,1,0,0,0,955,NULL,0,1,0,1277868929,NULL,0),('k_xuE82wwp8gFVl9aaaG8g',1277868926,'3','pbversion0000000000001','approved','last-photo-button.png','last-photo-button.png','root/import/gallery-templates/images/last-photo-button.png','3','7','3',NULL,0,1,0,0,0,1072,NULL,0,1,0,1277868929,NULL,0),('NPM_WItpM5IzLWBhWjYfCA',1277868926,'3','pbversion0000000000001','approved','photo-navigation-spacer.png','photo-navigation-spacer.png','root/import/gallery-templates/images/photo-navigation-spacer.png','3','7','3',NULL,0,1,0,0,0,569,NULL,0,1,0,1277868929,NULL,0),('mM3bjP_iG9sv5nQb4S17tQ',1277868926,'3','pbversion0000000000001','approved','Default Gallery View Album RSS','Default Gallery View Album RSS','root/import/gallery-templates/default-gallery-album-rss','3','7','3',NULL,0,1,0,0,0,1243,NULL,0,1,0,1277868929,NULL,0),('ilu5BrM-VGaOsec9Lm7M6Q',1277868926,'3','pbversion0000000000001','approved','Default Gallery List Albums RSS','Default Gallery List Albums RSS','root/import/gallery-templates/default-gallery-list-albums-rss','3','7','3',NULL,0,1,0,0,0,1252,NULL,0,1,0,1277868929,NULL,0),('-ANLpoTEP-n4POAdRxCzRw',1277868926,'3','pbversion0000000000001','approved','Default Gallery List Files For User RSS','Default Gallery List Files For User RSS','root/import/gallery-templates/default-gallery-list-files-for-user-rss','3','7','3',NULL,0,1,0,0,0,1284,NULL,0,1,0,1277868929,NULL,0),('OxJWQgnGsgyGohP2L3zJPQ',1277868926,'3','pbversion0000000000001','approved','Default Gallery Edit Comment','Default Gallery Edit Comment','root/import/gallery-templates/default-gallery-edit-comment','3','7','3',NULL,0,1,0,0,0,5463,'',0,1,0,1277868929,'',0),('7fE8md51vTCcuJFOvxNaGA',1277868926,'3','pbversion0000000000001','approved','thumbnails.js','thumbnails.js','root/import/gallery-templates/thumbnails.js','3','7','3',NULL,0,1,0,0,0,5881,NULL,0,1,0,1277868929,NULL,0),('1oGhfj00KkCzP1ez01AfKA',1277868927,'3','pbversion0000000000001','approved','slideshow.js','slideshow.js','root/import/gallery-templates/slideshow.js','3','7','3',NULL,0,1,0,0,0,10453,NULL,0,1,0,1277868929,NULL,0),('3qiVYhNTXMVC5hfsumVHgg',1277868927,'3','pbversion0000000000001','approved','browserdetect.js','browserdetect.js','root/import/gallery-templates/browserdetect.js','3','7','3',NULL,0,1,0,0,0,4375,NULL,0,1,0,1277868929,NULL,0),('THQhn1C-ooj-TLlEP7aIJQ',1277868927,'3','pbversion0000000000001','approved','gallery-ie.css','gallery-ie.css','root/import/gallery-templates/gallery-ie.css','3','7','3',NULL,0,1,0,0,0,623,NULL,0,1,0,1277868929,NULL,0),('mfHGkp6t9gdclmzN33OEnw',1277868927,'3','pbversion0000000000001','approved','Default Twitter Choose Username','Default Twitter Choose Username','root/import/auth/twitter/chooseusername/default-twitter-choose-username','3','7','12',NULL,0,1,0,0,0,1074,NULL,0,1,0,1277868929,NULL,0),('U78V5IJHVljvRTb6ydsTHg',1279073449,'3','pbversion0000000000001','approved','Greenportal_calendarMonth','Greenportal_calendarMonth','greenportal_calendar/greenportal_calendarmonth','3','7','3',NULL,0,1,0,0,0,12201,'\n\n\n\n\n\n\n',0,1,0,1279073450,'',0),('CalendarMonth000000001',1279073449,'3','pbversion0000000000001','approved','Default Calendar Month','Default Calendar Month','root/import/calendar-templates/default-calendar-month','3','7','12',NULL,0,0,0,0,0,15953,'\n\n\n\n\n',0,1,0,1279073450,'',0),('StockDataTMPL000000001',1279073449,'3','pbversion0000000000001','approved','StockData Default View','StockData Default View','stockdatatmpl000000001','3','7','12',NULL,0,1,0,0,0,9005,'\n',0,1,0,1279073450,'',0),('8tqyQx-LwYUHIWOlKPjJrA',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Template','EMS Event Submission Template','root/import/ems/ems-event-submission','3','7','12',NULL,0,1,0,0,0,4932,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1279073450,'',0),('DoVNijm6lMDE0cYrtvEbDQ',1279073449,'3','pbversion0000000000001','approved','EMS Event Submission Main Template','EMS Event Submission Main Template','root/import/ems/ems-event-submission-main','3','7','12',NULL,0,1,0,0,0,6936,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,1,0,1279073450,'',0),('6uQEULvXFgCYlRWnYzZsuA',1279073450,'3','pbversion0000000000001','approved','Default Inbox Send Message Template','Default Inbox Send Message Template','root/import/account/inbox/default-inbox-send-message-template','3','7','12',NULL,0,1,0,0,0,8982,'\n\n\n\n\n',0,1,0,1279073450,'',0),('PBtmpl0000000000000005',1279073450,'3','pbversion0000000000001','approved','Default LDAP Anonymous Registration Template','Default LDAP Anonymous Registration Template','default_ldap_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,5866,'\n\n',0,1,0,1279073450,'',0),('PBtmpl0000000000000011',1279073450,'3','pbversion0000000000001','approved','Default WebGUI Anonymous Registration Template','Default WebGUI Anonymous Registration Template','default_webgui_anonymous_registration_template','3','7','12',NULL,0,1,0,0,0,6628,'\n\n',0,1,0,1279073450,'',0),('ktSvKU8riGimhcsxXwqvPQ',1279073450,'3','pbversion0000000000001','approved','EMS Event Submission Queue','EMS Event Submission Queue','root/import/ems/ems-event-submission-queue','3','7','12',NULL,0,1,0,0,0,7250,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n',0,1,0,1279073450,'',0),('matrixtmpl000000000005',1279073450,'3','pbversion0000000000001','approved','Matrix Default Search','Matrix Default Search','matrix-search-template','3','7','12',NULL,0,0,0,0,0,10259,'\n\n\n\n\n\n\n\n\n\n',0,1,0,1279073450,'',0); -ALTER TABLE `assetData` ENABLE KEYS; -ALTER TABLE `assetIndex` DISABLE KEYS; -INSERT INTO `assetIndex` VALUES ('PBasset000000000000003','Media','','media',1147642437,1147642437,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Media Media media','000001000003'),('PBtmpl0000000000000112','Weblog','','weblog',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Weblog Weblog weblog Collaboration','000001000001000008000004'),('PBtmplBlankStyle000001','WebGUI 6 Blank Style','','pbtmplblankstyle000001',1133743239,1258524916,'3','7','12','WebGUI::Asset::Template',0,'WebGUI 6 Blank Style WebGUI 6 Blank Style pbtmplblankstyle000001 style','000001000001000043000005'),('PBtmpl0000000000000079','Topics','','topics',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Topics Topics topics Collaboration','000001000001000008000009'),('PBtmpl0000000000000097','Traditional with Thumbnails','','traditional_with_thumbnails',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Traditional with Thumbnails Traditional with Thumbnails traditional with thumbnails Collaboration','000001000001000008000003'),('PBtmpl0000000000000082','Unordered List','','unordered_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Unordered List Unordered List unordered list Collaboration','000001000001000008000011'),('PBtmpl0000000000000124','Tabs','','tabs',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Tabs Tabs tabs Navigation','000001000001000025000004'),('GNvjCFQWjY2AF2uf0aCM8Q','Syndicated Articles','','syndicated_articles',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Syndicated Articles Syndicated Articles syndicated articles SyndicatedContent','000001000001000045000002'),('PBtmpl0000000000000136','Synopsis','','synopsis2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'Synopsis Synopsis synopsis2 Navigation','000001000001000025000007'),('PBtmpl0000000000000116','Tab Form','','tab_form',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Tab Form Tab Form tab form DataForm','000001000001000010000005'),('GRUNFctldUgop-qRLuo_DA','Default Survey Edit','','root/import/survey/default-survey-edit',1227254010,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Edit Default Survey Edit root import survey default survey edit Survey/Edit','000001000001000044000004'),('ProjectManagerTMPL0004','Default Project Manager Edit Task','','default-pm-template-edit-task',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Edit Task Default Project Manager Edit Task default pm template edit task ProjectManager_editTask','000001000001000031000002000001'),('ProjectManagerTMPL0002','Default Project Display','','default-pm-template-project-display',1147642415,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Project Display Default Project Display default pm template project display ProjectManager_project','000001000001000031000004000001'),('PBtmpl0000000000000137','Admin Console Style','','admin_console',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Style Admin Console admin console style','000001000001000043000003'),('StockDataTMPL000000001','StockData Default View','','stockdatatmpl000000001',1133743239,1279073449,'3','7','12','WebGUI::Asset::Template',0,'StockData Default View StockData Default View stockdatatmpl000000001 StockData','000001000001000041000002'),('PBtmpl0000000000000135','Side By Side','','side_by_side',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Side By Side Side By Side side by side Layout','000001000001000019000001'),('PBtmpl0000000000000200','Default Search','','default_search2',1147642427,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Search Default Search default search2 Search','000001000001000036000001'),('PBtmpl0000000000000101','Ordered List','','ordered_list',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Ordered List Ordered List ordered list Collaboration','000001000001000008000024'),('PBtmpl0000000000000121','Photo Gallery','','photo_gallery',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Photo Gallery Photo Gallery photo gallery Collaboration','000001000001000008000005'),('PBtmpl0000000000000081','Q and A','','q_and_a',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Q and A Q and A q and a Collaboration','000001000001000008000023'),('WVtmpl0000000000000001','Random Thread Macro Default Template','','randomthread-template',1133743240,1147642426,'3','7','12','WebGUI::Asset::Template',0,'Random Thread Macro Default Template Random Thread Macro Default Template randomthread template Macro/RandomThread','000001000001000021000010000001'),('PBtmpl0000000000000131','Right Column','','right_column',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Right Column Right Column right column Layout','000001000001000019000002'),('PBtmpl0000000000000094','News','','plainblacknews',1124395696,1220655703,'3','7','12','WebGUI::Asset::Template',0,'News News plainblacknews Layout','000001000001000019000005'),('matrixtmpl000000000005','Matrix Default Search','','matrix-search-template',1133743239,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Search Matrix Default Search matrix search template Matrix/Search','000001000001000022000005'),('MultiSearchTmpl0000001','MultiSearch Default Display','','multisearchtmpl0000001',1133743239,1230269962,'3','7','12','WebGUI::Asset::Template',0,'MultiSearch Default Display MultiSearch Default Display multisearchtmpl0000001 MultiSearch','000001000001000024000001'),('matrixtmpl000000000002','Matrix Default Compare','','matrix-default-compare-template',1133743238,1251054814,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Compare Matrix Default Compare matrix default compare template Matrix/Compare','000001000001000022000001'),('PBtmpl0000000000000111','Make Page Printable','','make_page_printable',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Make Page Printable Make Page Printable make page printable style','000001000001000043000002'),('PBtmpl0000000000000020','Mail Form','','mail_form',1124395696,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Mail Form Mail Form mail form DataForm','000001000001000010000001'),('PBtmpl0000000000000113','Link','','link',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link Link link Collaboration/Thread','000001000001000008000025'),('PBtmpl0000000000000083','Link List','','link_list',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Link List Link List link list Collaboration','000001000001000008000010'),('PBtmpl0000000000000114','Link List Submission Form','','link_list_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Link List Submission Form Link List Submission Form link list submission form Collaboration/PostForm','000001000001000008000019'),('PBtmpl0000000000000115','Linked Image with Caption','','linked_image_with_caption',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Linked Image with Caption Linked Image with Caption linked image with caption Article','000001000001000004000003'),('PBtmpl0000000000000098','Job','','job',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Job job Collaboration/Thread','000001000001000008000021'),('PBtmpl0000000000000077','Job Listing','','job_listing',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Listing Job Listing job listing Collaboration','000001000001000008000020'),('PBtmpl0000000000000122','Job Submission Form','','job_submission_form',1124395696,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Job Submission Form Job Submission Form job submission form Collaboration/PostForm','000001000001000008000022'),('PBtmpl0000000000000103','Article With Image','','article-with-image',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Image Article With Image article with image Article','000001000001000004000001'),('PBtmpl0000000000000092','Horizontal Login Box','','horizontal_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Horizontal Login Box Horizontal Login Box horizontal login box Macro/L_loginBox','000001000001000021000009000001'),('PBtmpl0000000000000108','horizontalMenu','','horizontalmenu',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'horizontalMenu horizontalMenu horizontalmenu Navigation','000001000001000025000002'),('PBtmpl0000000000000088','Image','','image',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Image Image image ImageAsset','000001000001000017000001'),('IOB0000000000000000002','Default InOutBoard Report Template','','iob-report-template',1133743239,1166019641,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Report Template Default InOutBoard Report Template iob report template InOutBoard/Report','000001000001000018000001'),('IOB0000000000000000001','Default InOutBoard Template','','iob-template',1133743239,1169795123,'3','7','12','WebGUI::Asset::Template',0,'Default InOutBoard Template Default InOutBoard Template iob template InOutBoard','000001000001000018000002'),('PBtmpl0000000000000123','Item','','item',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Item Item item Article','000001000001000004000004'),('PBtmpl0000000000000024','File','','file',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File File file FileAsset','000001000001000013000001'),('PBtmpl0000000000000078','File Folder','','file_folder',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'File Folder File Folder file folder Folder','000001000001000014000001'),('PBtmpl0000000000000107','File with size','','file_with_size',1124395696,1147642420,'3','7','12','WebGUI::Asset::Template',0,'File with size File with size file with size Macro/File','000001000001000021000004000003'),('PBtmpl0000000000000133','Guest Book','','guest_book',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Guest Book Guest Book guest book Collaboration','000001000001000008000012'),('PBtmpl0000000000000117','DropMenu','','dropmenu',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'DropMenu DropMenu dropmenu Navigation','000001000001000025000003'),('PBtmpl0000000000000130','Tree Navigation','','root/import/navigation/tree-navigation',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Tree Navigation Tree Navigation root import navigation tree navigation Navigation','000001000001000025000005'),('PBtmpl0000000000000060','Fail Safe','','fail_safe',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Fail Safe Fail Safe fail safe style','000001000001000043000001'),('PBtmpl0000000000000080','FAQ','','faqtemplate',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ FAQ faqtemplate Collaboration','000001000001000008000002'),('PBtmpl0000000000000099','FAQ Submission Form','','faq_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'FAQ Submission Form FAQ Submission Form faq submission form Collaboration/PostForm','000001000001000008000018'),('PBtmpl0000000000000010','Default WebGUI Account Display Template','','default_webgui_account_display_template',1124395696,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Account Display Template Default WebGUI Account Display Template default webgui account display template Auth/WebGUI/Account','000001000001000005000004000001'),('PBtmpl0000000000000013','Default WebGUI Login Template','','default_webgui_login_template',1124395696,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Login Template Default WebGUI Login Template default webgui login template Auth/WebGUI/Login','000001000001000005000007000001'),('PBtmpl0000000000000012','Default WebGUI Password Reset Template','','default_webgui_password_reset_template',1124395696,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Reset Template Default WebGUI Password Reset Template default webgui password reset template Auth/WebGUI/Expired','000001000001000005000006000001'),('PBtmpl0000000000000057','Default WebGUI Yes/No Prompt','','default_webgui_yes/no_prompt',1124395696,1147642418,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Yes/No Prompt Default WebGUI Yes/No Prompt default webgui yes no prompt prompt','000001000001000032000001'),('PBtmpl0000000000000066','Default USS','','default_uss',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default USS Default USS default uss Collaboration','000001000001000008000001'),('TimeTrackingTMPL000001','Default Time Tracking User View','','default-tt-template-user',1147642417,1201205738,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking User View Default Time Tracking User View default tt template user TimeTracking_user','000001000001000048000003000001'),('TimeTrackingTMPL000003','Default Time Tracking Row Template','','default-tt-template-row',1147642417,1229311434,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Row Template Default Time Tracking Row Template default tt template row TimeTracking_row','000001000001000048000002000001'),('TimeTrackingTMPL000002','Default Time Tracking Manager View','','default-tt-template-manager',1147642417,1147642417,'3','7','12','WebGUI::Asset::Template',0,'Default Time Tracking Manager View Default Time Tracking Manager View default tt template manager TimeTracking_manager','000001000001000048000001000001'),('X7DrzUcj8pOKFa_6k9D5iw','Newsletter','','root/import/newsletter',1185754569,1222804045,'3','12','3','WebGUI::Asset::Wobject::Folder',1,'Newsletter Newsletter root import newsletter','000001000001000026'),('PBtmpl0000000000000065','Default Syndicated Content','','default_syndicated_content',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Syndicated Content Default Syndicated Content default syndicated content SyndicatedContent','000001000001000045000001'),('CxMpE_UPauZA3p8jdrOABw','Default Questions','','root/import/survey/default-questions',1227556536,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Questions Default Questions root import survey default questions Survey/Take','000001000001000044000006'),('PBtmpl0000000000000059','Default SQL Report','','default_sql_report',1124395696,1229907401,'3','7','12','WebGUI::Asset::Template',0,'Default SQL Report Default SQL Report default sql report SQLReport','000001000001000040000001'),('PBtmpl0000000000000067','Default Submission','','default_submission',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Default Submission default submission Collaboration/Thread','000001000001000008000006'),('PBtmpl0000000000000068','Default Submission Form','','default_submission_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Submission Form Default Submission Form default submission form Collaboration/PostForm','000001000001000008000017'),('ProjectManagerTMPL0003','Default Project Manager Gantt Chart','','default-pm-template-gantt-chart',1147642415,1159989349,'3','7','12','WebGUI::Asset::Template',0,'Default Project Manager Gantt Chart Default Project Manager Gantt Chart default pm template gantt chart ProjectManager_gantt','000001000001000031000003000001'),('ProjectManagerTMPL0001','Default Project Management System Dashboard','','default-pm-template-dashboard',1147642415,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Project Management System Dashboard Default Project Management System Dashboard default pm template dashboard ProjectManager_dashboard','000001000001000031000001000001'),('PBtmpl0000000000000055','Default Poll','','default_poll',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Default Poll Default Poll default poll Poll','000001000001000027000001'),('PBtmpl0000000000000029','Default Post Form','','default_post_form',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Post Form Default Post Form default post form Collaboration/PostForm','000001000001000008000013'),('PBtmpl0000000000000056','Default Product','','default_product',1124395696,1248729559,'3','7','12','WebGUI::Asset::Template',0,'Default Product Default Product default product Product','000001000001000028000001'),('PBtmpl0000000000000033','Default HTTP Proxy','','default_http_proxy',1124395696,1230159454,'3','7','12','WebGUI::Asset::Template',0,'Default HTTP Proxy Default HTTP Proxy default http proxy HttpProxy','000001000001000016000001'),('PBtmpl0000000000000004','Default LDAP Account Display Template','','default_ldap_account_display_template',1124395696,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Account Display Template Default LDAP Account Display Template default ldap account display template Auth/LDAP/Account','000001000001000005000001000001'),('PBtmpl0000000000000006','Default LDAP Login Template','','default_ldap_login_template',1124395696,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Login Template Default LDAP Login Template default ldap login template Auth/LDAP/Login','000001000001000005000003000001'),('PBtmpl0000000000000044','Default Login Box','','default_login_box',1124395696,1148579524,'3','7','12','WebGUI::Asset::Template',0,'Default Login Box Default Login Box default login box Macro/L_loginBox','000001000001000021000009000002'),('PBtmpl0000000000000047','Default Message Board','','default_message_board',1124395696,1147642414,'3','7','12','WebGUI::Asset::Template',0,'Default Message Board Default Message Board default message board MessageBoard','000001000001000023000001'),('PBtmpl0000000000000054','Default Page','','default_page',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Page Default Page default page Layout','000001000001000019000003'),('Q4uX_C557arTp6D_jwB1jQ','Wiki','','root/import/wiki',1165460175,1273032720,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Wiki Wiki root import wiki','000001000001000054'),('BmLaN4rmAANkCglXUViEbg','Resource','','root/import/projectmanager/resource',1157679165,1222803871,'3','12','12','WebGUI::Asset::Wobject::Folder',1,'Resource Resource root import projectmanager resource','000001000001000031000005'),('PBtmpl0000000000000039','Default File Macro','','default_file_macro',1124395696,1154535073,'3','7','12','WebGUI::Asset::Template',0,'Default File Macro Default File Macro default file macro Macro/File','000001000001000021000004000001'),('PBtmpl0000000000000026','Default Forum','','default_forum',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Default Forum default forum Collaboration','000001000001000008000007'),('PBtmpl0000000000000031','Default Forum Search','','default_forum_search',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Search Default Forum Search default forum search Collaboration/Search','000001000001000008000016'),('PBtmpl0000000000000093','crumbTrail','','crumbtrail2',1124395696,1259133274,'3','7','12','WebGUI::Asset::Template',0,'crumbTrail crumbTrail crumbtrail2 Navigation','000001000001000025000001'),('DashboardViewTmpl00001','Dashboard Default View','','dashboard-default-view-template',1133743239,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Dashboard Default View Dashboard Default View dashboard default view template Dashboard','000001000001000009000001'),('PBtmpl0000000000000021','Data List','','data_list',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Data List Data List data list DataForm/List','000001000001000010000004'),('PBtmpl0000000000000104','Default Acknowledgement','','default_acknowledgement',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default Acknowledgement Default Acknowledgement default acknowledgement DataForm','000001000001000010000003'),('PBtmpl0000000000000002','Default Article','','default_article',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Default Article Default Article default article Article','000001000001000004000002'),('PBtmpl0000000000000141','Default DataForm','','pbtmpl0000000000000141',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default DataForm Default DataForm pbtmpl0000000000000141 DataForm','000001000001000010000006'),('WikiRCTmpl000000000001','Default Recent Changes','','default-wiki-recent-changes',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Recent Changes Default Recent Changes default wiki recent changes WikiMaster_recentChanges','000001000001000054000001'),('PBtmpl0000000000000128','Classifieds','','classifieds',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Classifieds Classifieds classifieds Collaboration','000001000001000008000008'),('PBtmpl0000000000000134','Hierarchical Top Nav','','import/hierarchical-top-nav',1124395696,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Hierarchical Top Nav Hierarchical Top Nav import hierarchical top nav Navigation','000001000001000025000006'),('PBtmplHelp000000000001','Help','','help',1124395706,1147642410,'3','7','12','WebGUI::Asset::Template',0,'Help Help help AdminConsole','000001000001000003000002'),('PBtmpl0000000000000208','Request Tracker','','request-tracker-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Request Tracker request tracker template Collaboration','000001000001000008000026'),('wAc4azJViVTpo-2NYOXWvg','Default Question Edit','','root/import/survey/default-question-edit',1226009650,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Question Edit Default Question Edit root import survey default question edit Survey/Edit','000001000001000044000008'),('1z9J1O08n_7gVVlBwSRBJQ','Auth','','root/import/auth',1222803099,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Auth Auth root import auth','000001000001000005'),('zyWi26q9na-iiZqL4yedog','Macro','','root/import/macro',1222803114,1222803114,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Macro Macro root import macro','000001000001000021'),('PBtmpl0000000000000209','Request Tracker Thread','','request-tracker-post-template',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Thread Request Tracker Thread request tracker post template Collaboration/Thread','000001000001000008000027'),('PBtmpl0000000000000109','One Over Three','','one_over_three',1124395696,1259133276,'3','7','12','WebGUI::Asset::Template',0,'One Over Three One Over Three one over three Layout','000001000001000019000004'),('PBtmpl0000000000000001','Admin Console','','admin_console2',1124395696,1247535846,'3','7','12','WebGUI::Asset::Template',0,'Admin Console Admin Console admin console2 AdminConsole','000001000001000003000001'),('LBuiKzg2mWwmOPS9AgV3bg','Get Translated','Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of exper','yns/translated',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Translated Get Translated yns translated Let our team of professional translators bring your site to new customers by translating your content into additional languages Our translation services are never machine automated They\'re always done by professional translators that have years of experience reading writing and speaking many languages ','000001000002000002000007'),('jTNggl7AoVSUc_ZzrvuCmw','Get Promoted','Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate pro','yns/promotion',1147642517,1147642517,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Promoted Get Promoted yns promotion Now that you have a brilliant WebGUI site you need to get people to visit it We can help there too Our marketing specialists can work with you to develop and execute the right combination of search engine placement advertising buys and affilliate programs to ensure your site gets the traffic it needs ','000001000002000002000008'),('Wl8WZ43g2rK5AYr9o4zY7w','Get Style','Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site. ','yns/style',1147642516,1247779880,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Style Get Style yns style Not a designer No problem Plain Black\'s professional design team can make your site look great Our team is fast easy to work with and can even migrate your existing content into your new WebGUI site ','000001000002000002000006'),('ix1p0AbwKAz8QWB-T-HHfg','Get Support','Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of s','yns/support',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Support Get Support yns support Plain Black provides support packages to fit any budget or need Start out with online support which costs only $500 per year And grow support as your needs grow We build custom support packages to match our client\'s needs And no matter what level of support you purchase you get WebGUI Documentation included in your purchase ','000001000002000002000003'),('iCYOjohB9SKvAPr6bXElKA','Get Hosting','Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with host','yns/hosting',1147642516,1247779898,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Hosting Get Hosting yns hosting Who better to host your WebGUI sites than Plain Black Let us deal with upgrades security and server management Doing so lets you focus on building your WebGUI site which is where your time and expertise should be spent And when you sign up with hosting online support is included ','000001000002000002000004'),('4Yfz9hqBqM8OYMGuQK8oLw','Get Features','What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to cu','yns/features',1147642516,1147642516,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Features Get Features yns features What\'s that you say WebGUI\'s thousands of features are still missing some important ones No problem our professional development team can add any features you need for your site We\'ve built hundreds of custom apps for people From simple macros to custom single sign on systems to applications that will manage your entire company our team can do it ','000001000002000002000005'),('Vzv1pWpg_w6R_o-b0rM2qQ','Ad','','home/ad2',1147642515,1147642515,'3','7','4','WebGUI::Asset::File',1,'Ad Ad home ad2','000001000002000001000002'),('FOvmwGC0GtZo5VTxJIL3OA','Get Documentation','WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization. ','yns/docs',1147642515,1247779862,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Get Documentation Get Documentation yns docs WebGUI Documentation is the ultimate compendium to WebGUI This is a must for anyone working in WebGUI and Plain Black offers vast bulk discounts so you can give it to everyone in your organization ','000001000002000002000002'),('6QuS-0rosuZTdTv11fobig','Talk to the Experts','Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us tod','yns/experts',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Talk to the Experts Talk to the Experts yns experts Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful We bend over backwards to make sure you\'re a success Contact us today to see how we can help you ','000001000002000002000001'),('NK8bqlwVRILJknqeCDPBHg','Getting Started (part 2)','\n\nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n \n\nNow that you\'re logged in, we recommend ','getting_started/getting-started-part2',1147642515,1147642515,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started part 2 Getting Started part 2 getting started getting started part2 Now you should log in and go into admin mode The default username is admin and the default password is 123qwe but you probably customized both of those when you visited this site for the very first time Now that you\'re logged in we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account Don\'t worry if you lock yourself out you can always contact Plain Black® support to get instructions to get back in NOTE If you appear to be get logged out while moving between pages this is most likely your browser displaying a cached version of the page Click on your browser\'s refresh button to correct the problem No doubt after you enabled admin mode you saw a menu along the left side of the screen that\'s called the Admin Bar Use that to add content and access administrative functions You\'re now ready to begin exploring your new WebGUI site For more information about services related to WebGUI click here Enjoy your new WebGUI site ','000001000002000001000003'),('m4YJFaqzultnB_sj1Uq0aw','Ad','','home/ad',1147642514,1147642514,'3','7','4','WebGUI::Asset::File',1,'Ad Ad home ad','000001000002000008'),('IWFxZDyGhQ3-SLZhELa3qw','Key Benefits','\n\nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n \n\nWorkflow &','home/key-benefits',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Key Benefits Key Benefits home key benefits Easy To Use WebGUI is absolutely easy to use WebGUI 7 has a completely revamped user interface to make it even easier to use There are lots of visual cues consistent icons helper apps and a huge repository of built-in help files Workflow Versioning Never again worry about content getting put on your site that you don\'t want there Never again lose your old content after making an edit And never again push out new changes until you\'re absolutely ready to release them WebGUI\'s workflow and versioning system is fast flexible powerful and easy to use Everything\'s a Template Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you With WebGUI everything a site visitor can see is a customizable template so you can make it look exactly how you want Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant Localization WebGUI\'s entire user interface is set up to be internationalized Visit one of the WebGUI Worldwide member sites to get translations for your language Stay there to get support and services in your native language Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant On top of that WebGUI allows you to customize dates currency and weights to match your locale Pluggable By Design With WebGUI 7 you have many plug-in points to add your own functionality And best of all the API is stable and standardized Write it today and it will still work years from now and survive all upgrades ','000001000002000009'),('bX5rYxb6tZ9docY6sUhBlw','Getting Started','\n\nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n \nNOTE: Click on the green start icon on t','getting_started/getting-started',1147642514,1147642514,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Getting Started Getting Started getting started getting started If you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine® Great job To get started with managing content watch the short instructional video below NOTE Click on the green start icon on the video to begin your tutorial ','000001000002000001000001'),('Szs5eev3OMssmnsyLRZmWA','Tell A Friend','Tell a friend about WebGUI.','tell_a_friend/tell_a_friend',1124395696,1213317790,'3','7','3','WebGUI::Asset::Wobject::DataForm',1,'Tell A Friend Tell A Friend tell a friend tell a friend Tell a friend about WebGUI','000001000002000004000001'),('OhdaFLE7sXOzo_SIP2ZUgA','Welcome','The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy eno','home/welcome',1147642513,1147642513,'3','7','4','WebGUI::Asset::Wobject::Article',1,'Welcome Welcome home welcome The WebGUI Content Engine® is a powerful and easy to use system for managing web sites and building web applications It provides thousands of features out of the box and lots of plug-in points so you can extend it to match your needs It\'s easy enough for the average business user but powerful enough for any large enterprise There are thousands of small and large businesses schools universities governments associations clubs churches projects and communities using WebGUI all over the world today A brief list of some of them can be found here Your site should be on that list If you\'re new to WebGUI click here to learn how to get started If you\'re getting up to speed check out some ways you can do more faster If this is all old hat to you then check out the latest news No matter what level you\'re at tell your friends about WebGUI ','000001000002000007'),('7-0-style0000000000071','wg.jpg','','style3/wg.jpg',1147642511,1147642511,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style3 wg.jpg','000001000001000053000022'),('7-0-style0000000000068','spacer.gif','','style3/spacer.gif',1147642510,1147642510,'3','7','12','WebGUI::Asset::File::Image',1,'spacer.gif spacer.gif style3 spacer.gif','000001000001000053000019'),('7-0-style0000000000070','Style3 Coolmenu','','style3_coolmenu',1147642510,1147642510,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu style3 coolmenu','000001000001000053000021'),('7-0-style0000000000066','nav_bg_on.jpg','','style3/nav_bg_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg_on.jpg nav_bg_on.jpg style3 nav bg on.jpg','000001000001000053000017'),('7-0-style0000000000064','nav_bg2.jpg','','style3/nav_bg2.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2.jpg nav_bg2.jpg style3 nav bg2.jpg','000001000001000053000015'),('7-0-style0000000000065','nav_bg2_on.jpg','','style3/nav_bg2_on.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg2_on.jpg nav_bg2_on.jpg style3 nav bg2 on.jpg','000001000001000053000016'),('7-0-style0000000000067','pb.jpg','','style3/pb.jpg',1147642509,1147642509,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style3 pb.jpg','000001000001000053000018'),('7-0-style0000000000063','nav_bg1_on.jpg','','style3/nav_bg1_on.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1_on.jpg nav_bg1_on.jpg style3 nav bg1 on.jpg','000001000001000053000014'),('7-0-style0000000000060','main_top_bg.jpg','','style3/main_top_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'main_top_bg.jpg main_top_bg.jpg style3 main top bg.jpg','000001000001000053000011'),('7-0-style0000000000062','nav_bg1.jpg','','style3/nav_bg1.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg1.jpg nav_bg1.jpg style3 nav bg1.jpg','000001000001000053000013'),('7-0-style0000000000061','nav_bg.jpg','','style3/nav_bg.jpg',1147642508,1147642508,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style3 nav bg.jpg','000001000001000053000012'),('7-0-style0000000000059','main_top.jpg','','style3/main_top.jpg',1147642507,1213386091,'3','7','12','WebGUI::Asset::File::Image',1,'main_top.jpg main_top.jpg style3 main top.jpg','000001000001000053000010'),('7-0-style0000000000057','main_bg.jpg','','style3/main_bg.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style3 main bg.jpg','000001000001000053000008'),('7-0-style0000000000058','main_bottom.jpg','','style3/main_bottom.jpg',1147642507,1147642507,'3','7','12','WebGUI::Asset::File::Image',1,'main_bottom.jpg main_bottom.jpg style3 main bottom.jpg','000001000001000053000009'),('7-0-style0000000000055','header_left.jpg','','style3/header_left.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_left.jpg header_left.jpg style3 header left.jpg','000001000001000053000006'),('7-0-style0000000000056','header_right.jpg','','style3/header_right.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_right.jpg header_right.jpg style3 header right.jpg','000001000001000053000007'),('7-0-style0000000000054','header_bg.jpg','','style3/header_bg.jpg',1147642506,1147642506,'3','7','12','WebGUI::Asset::File::Image',1,'header_bg.jpg header_bg.jpg style3 header bg.jpg','000001000001000053000005'),('7-0-style0000000000052','footer_bg.jpg','','style3/footer_bg.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_bg.jpg footer_bg.jpg style3 footer bg.jpg','000001000001000053000003'),('7-0-style0000000000053','footer_right.jpg','','style3/footer_right.jpg',1147642505,1147642505,'3','7','12','WebGUI::Asset::File::Image',1,'footer_right.jpg footer_right.jpg style3 footer right.jpg','000001000001000053000004'),('7-0-style0000000000046','rightCol_bg.jpg','','style2/rightcol_bg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'rightCol_bg.jpg rightCol_bg.jpg style2 rightcol bg.jpg','000001000001000052000015'),('7-0-style0000000000049','WebGUI 7 Style 3','','root/import/webgui-7-style-3',1147642504,1224117144,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 3 WebGUI 7 Style 3 root import webgui 7 style 3','000001000001000053'),('7-0-style0000000000048','wg.jpg','','style2/wg.jpg',1147642504,1147642504,'3','7','12','WebGUI::Asset::File::Image',1,'wg.jpg wg.jpg style2 wg.jpg','000001000001000052000017'),('7-0-style0000000000045','pb_wg_bg.jpg','','style2/pb_wg_bg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg_bg.jpg pb_wg_bg.jpg style2 pb wg bg.jpg','000001000001000052000014'),('7-0-style0000000000044','pb_wg.jpg','','style2/pb_wg.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb_wg.jpg pb_wg.jpg style2 pb wg.jpg','000001000001000052000013'),('7-0-style0000000000043','pb.jpg','','style2/pb.jpg',1147642503,1147642503,'3','7','12','WebGUI::Asset::File::Image',1,'pb.jpg pb.jpg style2 pb.jpg','000001000001000052000012'),('7-0-style0000000000042','page_title_bg.jpg','','style2/page_title_bg.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title_bg.jpg page_title_bg.jpg style2 page title bg.jpg','000001000001000052000011'),('7-0-style0000000000041','page_title.jpg','','style2/page_title.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'page_title.jpg page_title.jpg style2 page title.jpg','000001000001000052000010'),('7-0-style0000000000040','navbar_right.jpg','','style2/navbar_right.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_right.jpg navbar_right.jpg style2 navbar right.jpg','000001000001000052000009'),('7-0-style0000000000039','navbar_left.jpg','','style2/navbar_left.jpg',1147642502,1147642502,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_left.jpg navbar_left.jpg style2 navbar left.jpg','000001000001000052000008'),('7-0-style0000000000036','main_bg.jpg','','style2/main_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style2 main bg.jpg','000001000001000052000005'),('7-0-style0000000000038','navbar_bg.jpg','','style2/navbar_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'navbar_bg.jpg navbar_bg.jpg style2 navbar bg.jpg','000001000001000052000007'),('7-0-style0000000000035','leftCol_header02.jpg','','style2/leftcol_header02.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header02.jpg leftCol_header02.jpg style2 leftcol header02.jpg','000001000001000052000004'),('7-0-style0000000000037','nav_bg.jpg','','style2/nav_bg.jpg',1147642501,1147642501,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style2 nav bg.jpg','000001000001000052000006'),('7-0-style0000000000032','context_bg.jpg','','style2/context_bg.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'context_bg.jpg context_bg.jpg style2 context bg.jpg','000001000001000052000001'),('7-0-style0000000000031','WebGUI 7 Style 2','','root/import/webgui-7-style-2',1147642500,1147642500,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 2 WebGUI 7 Style 2 root import webgui 7 style 2','000001000001000052'),('7-0-style0000000000033','css02.css','','style2/css02.css',1147642500,1147642500,'3','7','12','WebGUI::Asset::Snippet',0,'css02.css css02.css style2 css02.css body html height:100 body background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg repeat-y right margin:0px rightColumn width:20 height:100 background eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg repeat-y right text-align:center rightColumn pb_wg_bg background url(\'^FileUrl(style2/pb_wg_bg.jpg repeat-x width:100 text-align:left rightColumn pb_wg background url(\'^FileUrl(style2/pb_wg.jpg left no-repeat height:53px leftColumn width:80 background white url(\'^FileUrl(style2/context_bg.jpg repeat-y right leftColumn header width:100 background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg right no-repeat height:86px position:relative leftColumn header title leftColumn header title_bg color:white font-size:36pt font-weight:bold font-family:arial font-variant:small-caps letter-spacing:12px top:15px left:5px position:absolute z-index:10 leftColumn header title a color:white text-decoration:none leftColumn header title_bg color:black z-index:5 top:17px left:7px leftColumn context background fff url(\'^FileUrl(style2/context_bg.jpg repeat-y right width:95 font-family:verdana font-size:9pt color:#242424 moz-box-sizing:border-box position:relative padding-left:1 padding-right:1 padding-bottom:15px leftColumn context a color:#7C9AB0 font-weight:bold leftColumn context a:hover text-decoration:none leftColumn pageTitleBG background url(\'^FileUrl(style2/page_title_bg.jpg repeat-x width:100 leftColumn pageTitleBG pageTitle background url(\'^FileUrl(style2/page_title.jpg right no-repeat width:100 height:50px leftColumn pageTitleBG pageTitle h2 font-size:14pt color:#696969 font-family:arial font-weight:normal margin:0px padding-top:2px padding-left:25px letter-spacing:3px rightColumn nav width:85 background b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg repeat-x top border-right:solid 848484 1px margin-left:auto margin-right:auto text-align:left padding-left:3px padding-top:7px padding-bottom:7px rightColumn nav a color:white font-size:8pt font-weight:bold text-decoration:none font-family:arial line-height:8pt rightColumn nav selectedMenuItem color:yellow loginStyles font-size:8pt font-family:arial padding-bottom:25px loginStyles a color:#89ACCF font-weight:bold border-bottom:solid transparent 2px text-decoration:none loginStyles a:hover border-bottom:dotted B2C9D9 2px copyright border-top:solid silver 3px background-color:gray font-family:arial font-size:9pt color:silver text-align:center ','000001000001000052000002'),('7-0-style0000000000034','leftCol_header.jpg','','style2/leftcol_header.jpg',1147642500,1147642500,'3','7','12','WebGUI::Asset::File::Image',1,'leftCol_header.jpg leftCol_header.jpg style2 leftcol header.jpg','000001000001000052000003'),('stevenav00000000000001','Style 01 Nav','','style1_nav',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav Style 01 Nav style1 nav Navigation','000001000001000051000027'),('PBnav000000style01lvl2','Style 01 Nav lvl2','','style1_nav_lvl2',1147642499,1147642499,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Nav lvl2 untitled style1 nav lvl2 Navigation','000001000001000051000028'),('7-0-style0000000000030','webgui_btn.jpg','','style1/webgui_btn.jpg',1147642499,1147642499,'3','7','12','WebGUI::Asset::File::Image',1,'webgui_btn.jpg webgui_btn.jpg style1 webgui btn.jpg','000001000001000051000029'),('7-0-style0000000000026','RootTab Level 1','','roottab_level1',1147642499,1147642499,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 1 RootTab Level 1 roottab level1','000001000001000051000025'),('7-0-style0000000000024','orange_left01.jpg','','style1/orange_left01.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'orange_left01.jpg orange_left01.jpg style1 orange left01.jpg','000001000001000051000023'),('7-0-style0000000000023','nav_on.jpg','','style1/nav_on.jpg',1147642498,1147642498,'3','7','12','WebGUI::Asset::File::Image',1,'nav_on.jpg nav_on.jpg style1 nav on.jpg','000001000001000051000022'),('7-0-style0000000000025','RootTab Level 0','','roottab_level0',1147642498,1147642498,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab Level 0 RootTab Level 0 roottab level0','000001000001000051000024'),('7-0-style0000000000019','nav2_off_right.jpg','','style1/nav2_off_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_right.jpg nav2_off_right.jpg style1 nav2 off right.jpg','000001000001000051000018'),('7-0-style0000000000020','nav2_on_left.jpg','','style1/nav2_on_left.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_left.jpg nav2_on_left.jpg style1 nav2 on left.jpg','000001000001000051000019'),('7-0-style0000000000022','nav_bg.jpg','','style1/nav_bg.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav_bg.jpg nav_bg.jpg style1 nav bg.jpg','000001000001000051000021'),('7-0-style0000000000021','nav2_on_right.jpg','','style1/nav2_on_right.jpg',1147642497,1147642497,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_on_right.jpg nav2_on_right.jpg style1 nav2 on right.jpg','000001000001000051000020'),('7-0-style0000000000017','nav2_off_center.jpg','','style1/nav2_off_center.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_center.jpg nav2_off_center.jpg style1 nav2 off center.jpg','000001000001000051000016'),('7-0-style0000000000016','nav2_center_on.jpg','','style1/nav2_center_on.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_center_on.jpg nav2_center_on.jpg style1 nav2 center on.jpg','000001000001000051000015'),('7-0-style0000000000018','nav2_off_left.jpg','','style1/nav2_off_left.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav2_off_left.jpg nav2_off_left.jpg style1 nav2 off left.jpg','000001000001000051000017'),('7-0-style0000000000015','nav1_on_right.jpg','','style1/nav1_on_right.jpg',1147642496,1147642496,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_right.jpg nav1_on_right.jpg style1 nav1 on right.jpg','000001000001000051000014'),('7-0-style0000000000014','nav1_on_left.jpg','','style1/nav1_on_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on_left.jpg nav1_on_left.jpg style1 nav1 on left.jpg','000001000001000051000013'),('7-0-style0000000000013','nav1_on.jpg','','style1/nav1_on.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_on.jpg nav1_on.jpg style1 nav1 on.jpg','000001000001000051000012'),('7-0-style0000000000011','nav1_off_left.jpg','','style1/nav1_off_left.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_left.jpg nav1_off_left.jpg style1 nav1 off left.jpg','000001000001000051000010'),('7-0-style0000000000012','nav1_off_right.jpg','','style1/nav1_off_right.jpg',1147642495,1147642495,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_right.jpg nav1_off_right.jpg style1 nav1 off right.jpg','000001000001000051000011'),('7-0-style0000000000009','nav1_off.jpg','','style1/nav1_off.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off.jpg nav1_off.jpg style1 nav1 off.jpg','000001000001000051000008'),('7-0-style0000000000010','nav1_off_center.jpg','','style1/nav1_off_center.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_off_center.jpg nav1_off_center.jpg style1 nav1 off center.jpg','000001000001000051000009'),('7-0-style0000000000008','nav1_center_on.jpg','','style1/nav1_center_on.jpg',1147642494,1147642494,'3','7','12','WebGUI::Asset::File::Image',1,'nav1_center_on.jpg nav1_center_on.jpg style1 nav1 center on.jpg','000001000001000051000007'),('7-0-style0000000000006','main_bg.gif','','style1/main_bg.gif',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.gif main_bg.gif style1 main bg.gif','000001000001000051000005'),('7-0-style0000000000007','main_bg.jpg','','style1/main_bg.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'main_bg.jpg main_bg.jpg style1 main bg.jpg','000001000001000051000006'),('7-0-style0000000000004','gui_bottom.jpg','','style1/gui_bottom.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'gui_bottom.jpg gui_bottom.jpg style1 gui bottom.jpg','000001000001000051000003'),('7-0-style0000000000005','header.jpg','','style1/header.jpg',1147642493,1147642493,'3','7','12','WebGUI::Asset::File::Image',1,'header.jpg header.jpg style1 header.jpg','000001000001000051000004'),('7-0-style0000000000001','WebGUI 7 Style 1','','root/import/webgui-7-style-1',1147642492,1147642492,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI 7 Style 1 WebGUI 7 Style 1 root import webgui 7 style 1','000001000001000051'),('7-0-style0000000000002','body_bg.jpg','','style1/body_bg.jpg',1147642492,1147642492,'3','7','12','WebGUI::Asset::File::Image',1,'body_bg.jpg body_bg.jpg style1 body bg.jpg','000001000001000051000001'),('7-0-style0000000000003','css01.css','','style1/css01.css',1147642492,1147642492,'3','7','12','WebGUI::Asset::Snippet',0,'css01.css css01.css style1 css01.css body html text-align:center margin:0px height:100 background-color:#494949 main width:800px background url(\'^FileUrl(style1/main_bg.jpg repeat-y height:100 margin-left:auto margin-right:auto margin-top:0px margin-bottom:0px position:relative body > main height:auto min-height:100 main mainHeader width:800px height:133px background url(\'^FileUrl(style1/header.jpg top left no-repeat margin-bottom:0px position:relative main mainHeader title position:absolute top:23px left:145px font-size:32pt font-family:arial color:white font-weight:bold main mainHeader title a color:white text-decoration:none main mainContent background url(\'^FileUrl(style1/orange_left01.jpg left top no-repeat width:100 height:100 margin-top:0px text-align:left border:solid red 0px main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent mainText a:link color:#FF7F23 main mainContent mainText a:visited color:#D25900 LEVEL 1 AND 2 NAVIGATION main mainNav_1 main mainNav_2 border-bottom:dashed DADADA 1px width:621px height:25px text-align:left position:relative margin-left:137px clear:both main mainNav_1 a:link main mainNav_1 a:visited main mainNav_2 a:link main mainNav_2 a:visited color:white text-decoration:none top:5px position:relative moz-box-sizing:border-box main mainNav_1 a:hover,#main mainNav_2 a:hover color:black main mainNav_1 div left main mainNav_2 div left width:12px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_left.jpg no-repeat top left main mainNav_2 div left background url(\'^FileUrl(style1/nav2_off_left.jpg no-repeat top left main mainNav_1 div center main mainNav_2 div center height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_center.jpg repeat-x top left color:white font-family:arial verdana font-size:8pt main mainNav_2 div center background url(\'^FileUrl(style1/nav2_off_center.jpg repeat-x top left main mainNav_1 div right main mainNav_2 div right width:10px height:25px display:block float:left background url(\'^FileUrl(style1/nav1_off_right.jpg no-repeat top left main mainNav_2 div right background url(\'^FileUrl(style1/nav2_off_right.jpg no-repeat top left main mainNav_1 div.navOn left background url(\'^FileUrl(style1/nav1_on_left.jpg no-repeat top left main mainNav_1 div.navOn center background url(\'^FileUrl(style1/nav1_center_on.jpg repeat-x top left main mainNav_1 div.navOn right background url(\'^FileUrl(style1/nav1_on_right.jpg no-repeat top left main mainNav_2 div.navOn left background url(\'^FileUrl(style1/nav2_on_left.jpg no-repeat top left main mainNav_2 div.navOn center background url(\'^FileUrl(style1/nav2_center_on.jpg repeat-x top left main mainNav_2 div.navOn right background url(\'^FileUrl(style1/nav2_on_right.jpg no-repeat top left main mainNav_1 div.navOn a:link main mainNav_1 div.navOn a:visited main mainNav_2 div.navOn a:link main mainNav_2 div.navOn a:visited color:black ENDOF LEVEL 1 AND 2 NAVIGATION main crumbTrail margin-left:177px margin-bottom:0px color:gray font-size:8pt font-weight:bold main crumbTrail a.crumbTrail:visited main crumbTrail a.crumbTrail:link color:silver font-size:8pt font-family:arial text-decoration:none font-weight:normal main crumbTrail a.crumbTrail:hover color:gray main mainText padding-left:150px font-family:verdana font-size:9pt width:600px margin-top:0px main gui bottom:0px left:0px position:absolute width:135px font-size:8pt color:black font-family:arial text-align:right main gui loginBox padding-right:12px moz-box-sizing:border-box width:100px float:right margin-bottom:10px main gui loginBox loginBoxField width:75px main gui loginBox loginBoxButton background-color:#D65501 color:white border:solid white 2px margin-top:4px font-variant:small-caps main gui a color:white copyright color:#fff position:absolute top:110px right:40px font-family:verdana font-size:8pt font-weight:bold background-color:#2D2D2D opacity:0.4 moz-opacity:0.4 khtml-opacity:0.4 padding:2px html copyright background transparent ','000001000001000051000002'),('7F-BuEHi7t9bPi008H8xZQ','Default Survey Summary','','root/import/survey/default-survey-summary',1239248021,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Summary Default Survey Summary root import survey default survey summary Survey/Summary','000001000001000044000012'),('CSN-ZON7Uwv8kxf3F1fh5Q','ZipArchiveAsset','','root/import/ziparchiveasset',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ZipArchiveAsset ZipArchiveAsset root import ziparchiveasset','000001000001000055'),('TCtybxdqmdwdvRn555zpCQ','RichEdit','','root/import/richedit',1147642484,1147642484,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RichEdit RichEdit root import richedit','000001000001000034'),('NywJYmGWe1f6EBXJnWg9Xg','Profile','','root/import/profile',1222803606,1222803638,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import profile','000001000001000030'),('9wKWdum0_8z-OhhquWLtSQ','WeatherData','','root/import/weatherdata',1147642483,1147642483,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WeatherData WeatherData root import weatherdata','000001000001000050'),('AgyFhx3eXlfZXNp2MkrsiQ','Edit','','root/import/profile/edit',1147642477,1222803665,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Edit Edit root import profile edit','000001000001000030000001'),('F7MAQ-cpuvQ1KuC7J4P5zQ','View','','root/import/profile/view',1147642477,1222803673,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'View View root import profile view','000001000001000030000002'),('oGfxez5sksyB_PcaAsEm_Q','SyndicatedContent','','root/import/syndicatedcontent',1147642482,1247053097,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SyndicatedContent SyndicatedContent root import syndicatedcontent','000001000001000045'),('5bnNzteN7w3NnK9mF4XiCg','Survey','','root/import/survey',1147642481,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Survey Survey root import survey','000001000001000044'),('Efe2W0UgrSRDltNJ87jlfg','StockData','','root/import/stockdata',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'StockData StockData root import stockdata','000001000001000041'),('bbiA9Zq5Gy2oCFBlILO3QA','SQLReport','','root/import/sqlreport',1147642480,1147642480,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'SQLReport SQLReport root import sqlreport','000001000001000040'),('RrV4aAPnn4dM0ZcU3OXnlw','style','','root/import/style',1147642480,1258524916,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'style style root import style','000001000001000043'),('Ik9HHky10DIyFTKehUD1dw','Prompt','','root/import/prompt',1147642479,1222803478,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Prompt Prompt root import prompt','000001000001000032'),('f_tn9FfoSfKWX43F83v_3w','Search','','root/import/search',1147642479,1247053009,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Search Search root import search','000001000001000036'),('Da6KWn805L4B5e4HFgQRQA','Shortcut','','root/import/shortcut',1147642479,1147642479,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shortcut Shortcut root import shortcut','000001000001000039'),('TYo2Bwl7aafzTtdHlS-arQ','Product','','root/import/product',1147642478,1211664878,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Product Product root import product','000001000001000028'),('VZK3CRgiMb8r4dBjUmCTgQ','Poll','','root/import/poll',1147642477,1247046242,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Poll Poll root import poll','000001000001000027'),('jEz8iTGNWEt2I05IhVV19Q','Operation/RedeemSubscription','','root/import/operation/redeemsubscription',1147642477,1273032715,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Operation/RedeemSubscription Operation/RedeemSubscription root import operation redeemsubscription','000001000001000038000016'),('BFfNj5wA9bDw8H3cnr8pTw','Navigation','','root/import/navigation',1147642475,1247046273,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation root import navigation','000001000001000025'),('bBzO4CWjqU_ile3gf5Iypw','MultiSearch','','root/import/multisearch',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MultiSearch MultiSearch root import multisearch','000001000001000024'),('cj2y4papTVGZRFdwTI-_fw','MessageBoard','','root/import/messageboard',1147642475,1147642475,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'MessageBoard MessageBoard root import messageboard','000001000001000023'),('3womoo7Teyy2YKFa25-MZg','Address Book (Default)','','shopping-cart-collateral-items/address-book-default',1212098997,1273032715,'3','7','3','WebGUI::Asset::Template',0,'Address Book Default Address Book Default shopping cart collateral items address book default Shop/AddressBook','000001000001000038000013'),('g8W53Pd71uHB9pxaXhWf_A','My Purchases Detail (Default)','','shopping-cart-collateral-items/my-purchases-detail-default',1213184121,1273032715,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Detail Default My Purchases Detail Default shopping cart collateral items my purchases detail default Shop/MyPurchasesDetail','000001000001000038000015'),('-WM2dt0ZGpDasuL2wWocxg','ProjectManager','','root/import/projectmanager',1222803056,1222803056,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ProjectManager ProjectManager root import projectmanager','000001000001000031'),('LdiozcIUciWuvt3Z-na5Ww','Matrix','','root/import/matrix',1147642474,1232673968,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Matrix Matrix root import matrix','000001000001000022'),('default_post_received1','Default Post Received','','default_post_received',1222708029,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Post Received Default Post Received default post received Collaboration/PostReceived','000001000001000008000029'),('aNNC62qLAS6TB-0_MCYjsw','Layout','','root/import/layout',1147642471,1246969327,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Layout Layout root import layout','000001000001000019'),('GYaFxnMu9UsEG8oanwB6TA','Folder','','root/import/folder',1147642470,1246965871,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Folder Folder root import folder','000001000001000014'),('N13SD1Fpqk00UgBt1Z8ivQ','HttpProxy','','root/import/httpproxy',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'HttpProxy HttpProxy root import httpproxy','000001000001000016'),('tPagC0AQErZXjLFZQ6OI1g','ImageAsset','','root/import/imageasset',1147642470,1246966459,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ImageAsset ImageAsset root import imageasset','000001000001000017'),('3uuBf8cYuj1sew2OJXl9tg','InOutBoard','','root/import/inoutboard',1147642470,1147642470,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'InOutBoard InOutBoard root import inoutboard','000001000001000018'),('PBtmpl0000000000000005','Default LDAP Anonymous Registration Template','','default_ldap_anonymous_registration_template',1124395696,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Default LDAP Anonymous Registration Template Default LDAP Anonymous Registration Template default ldap anonymous registration template Auth/LDAP/Create','000001000001000005000002000001'),('PBtmpl0000000000000011','Default WebGUI Anonymous Registration Template','','default_webgui_anonymous_registration_template',1124395696,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Anonymous Registration Template Default WebGUI Anonymous Registration Template default webgui anonymous registration template Auth/WebGUI/Create','000001000001000005000005000001'),('tXwf1zaOXTvsqPn6yu-GSw','FileAsset','','root/import/fileasset',1147642469,1246965607,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'FileAsset FileAsset root import fileasset','000001000001000013'),('S1A9iAwKcQQ6P20uTqw-Ew','Dashboard','','root/import/dashboard',1147642468,1147642468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Dashboard Dashboard root import dashboard','000001000001000009'),('-K8Hj45mbelljN9-0CXZxg','DataForm',' ','root/import/dataform',1147642468,1257311887,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'DataForm DataForm root import dataform','000001000001000010'),('GNOAsX98vCsl0JRwfwL-gg','Collaboration','','root/import/collaboration',1147642466,1277868921,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Collaboration Collaboration root import collaboration','000001000001000008'),('pbproto000000000000002','Request Tracker','','request-tracker-prototype',1147642465,1163019036,'3','7','12','WebGUI::Asset::Wobject::Collaboration',1,'Request Tracker Request Tracker request tracker prototype','000001000001000033'),('pbtmpl0000000000000220','Flash Style 3 Template','','flash-style-3-template',1147642465,1247488979,'3','7','12','WebGUI::Asset::Template',0,'Flash Style 3 Template Flash Style 3 Template flash style 3 template FileAsset','000001000001000013000002'),('pbtmpl0000000000000221','Flash Tutorial Template','','flash-tutorial-template',1147642465,1247487940,'3','7','12','WebGUI::Asset::Template',0,'Flash Tutorial Template Flash Tutorial Template flash tutorial template FileAsset','000001000001000013000003'),('nbSrhXZQuxIjhWFaFPSuVA','AdminConsole','','root/import/adminconsole',1147642465,1147642465,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminConsole AdminConsole root import adminconsole','000001000001000003'),('TvOZs8U1kRXLtwtmyW75pg','Article','','root/import/article',1147642465,1256092368,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Article Article root import article','000001000001000004'),('PBtmpl0000000000000027','Default Forum Notification','','default_forum_notification',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Forum Notification Default Forum Notification default forum notification Collaboration/Notification','000001000001000008000015'),('-PkdI8l1idu-8gDX3iOdcw','One Over Two','','one_over_two',1247482172,1259133274,'3','7','12','WebGUI::Asset::Template',0,'One Over Two One Over Two one over two Layout','000001000001000019000007'),('FEDP3dk8J3Chw_gyr7_XEQ','navigation.css','','navigation.css',1246278679,1246278679,'3','7','12','WebGUI::Asset::Snippet',0,'navigation.css navigation.css navigation.css Horizontal Menu styles horizontalMenu ul.menu padding 0 margin 0 0 1em list-style none width 100 clear floated li elements overflow auto clear floated li elements horizontalMenu ul.menu li float left horizontalMenu ul.menu li a float left padding 4px 8px margin-right 1px background ddd color 000 text-decoration none horizontalMenu ul.menu li.current a background:#eee horizontalMenu ul.menu li a:hover background:#fff Tabs tabbed navigation styles tabsMenu ul.menu margin 0 0 1em tabsMenu ul.menu li display inline tabsMenu ul.menu li a border 1px solid 999 border-bottom 0 padding 5px 10px 2px color 777 text-decoration:none tabsMenu ul.menu li.current a tabsMenu ul.menu li a:hover border 1px solid 000 border-bottom 0 color 000 Indent Nav styles indentMenu a.level0 margin-left:0px display:block indentMenu a.level1 margin-left:15px display:block indentMenu a.level2 margin-left:30px display:block indentMenu a.level3 margin-left:45px display:block indentMenu a.level4 margin-left:60px display:block ','000001000001000025000028'),('PBnav00000000indentnav','Indent Nav','','indent_nav',1148579525,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Indent Nav Indent Nav indent nav Navigation','000001000001000025000027'),('PBtmpl0000000000000085','Default Email','','default_email',1124395696,1257311888,'3','7','12','WebGUI::Asset::Template',0,'Default Email Default Email default email DataForm','000001000001000010000002'),('PBnav00000000000bullet','Bulleted List','','bulleted_list',1148579524,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Bulleted List Bulleted List bulleted list Navigation','000001000001000025000026'),('StockDataTMPL000000002','StockData Default Display','','stockdatatmpl000000002',1133743239,1229494994,'3','7','12','WebGUI::Asset::Template',0,'StockData Default Display StockData Default Display stockdatatmpl000000002 StockData/Display','000001000001000041000001'),('2OcUWHVsu_L1sDFzIMWYqw','TimeTracking','','root/import/timetracking',1222803070,1222803070,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'TimeTracking TimeTracking root import timetracking','000001000001000048'),('PBtmpl0000000000000014','Default WebGUI Password Recovery Template','','default_webgui_password_recovery_template',1124395696,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Password Recovery Template Default WebGUI Password Recovery Template default webgui password recovery template Auth/WebGUI/Recovery2','000001000001000005000008000001'),('ProjectManagerTMPL0006','Default Resource List','','default-pm-resource-list',1157679165,1157679165,'3','7','12','WebGUI::Asset::Template',0,'Default Resource List Default Resource List default pm resource list ProjectManager_resourceList','000001000001000031000005000001'),('ProjectManagerTMPL0005','Default Resource Popup','','default-pm-resource-popup',1157679165,1229579830,'3','7','12','WebGUI::Asset::Template',0,'Default Resource Popup Default Resource Popup default pm resource popup ProjectManager_resourcePopup','000001000001000031000005000002'),('PBtmpl0000000000000032','Default Thread','','default_thread',1124395696,1277868921,'3','7','12','WebGUI::Asset::Template',0,'Default Thread Default Thread default thread Collaboration/Thread','000001000001000008000014'),('WeatherDataTmpl0000001','WeatherData Default View','','weatherdatatmpl0000001',1133743239,1210711353,'3','7','12','WebGUI::Asset::Template',0,'WeatherData Default View WeatherData Default View weatherdatatmpl0000001 WeatherData','000001000001000050000001'),('PBasset000000000000001','Root','','root',1124395696,1124395696,'3','7','3','WebGUI::Asset',0,'Root Root root','000001'),('PBrichedit000000000001','Content Manager\'s Rich Edit','','content_managers_rich_edit',1124395696,1256092369,'3','7','12','WebGUI::Asset::RichEdit',0,'Content Manager\'s Rich Edit Content Manager\'s Rich Edit content managers rich edit','000001000001000034000001'),('PBrichedit000000000002','Forum Rich Edit','','forum_rich_edit',1124395696,1124395696,'3','7','12','WebGUI::Asset::RichEdit',0,'Forum Rich Edit Forum Rich Edit forum rich edit','000001000001000034000002'),('SynConXSLT000000000001','RSS 0.9 XSLT Stylesheet','','xslt/rss0.9.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.9 XSLT Stylesheet RSS 0.9 XSLT xslt rss0.9.xsl You\'re viewing an RSS version 0.9 feed Please use an RSS feed reader to view this content as intended','000001000001000045000003'),('SynConXSLT000000000002','RSS 0.91 XSLT Stylesheet','','xslt/rss0.91.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 0.91 XSLT Stylesheet RSS 0.91 XSLT xslt rss0.91.xsl You\'re viewing an RSS version 0.91 feed Please use an RSS feed reader to view this content as intended','000001000001000045000004'),('SynConXSLT000000000003','RSS 1.0 XSLT Stylesheet','','xslt/rss1.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 1.0 XSLT Stylesheet RSS 1.0 XSLT xslt rss1.0.xsl You\'re viewing an RSS version 1.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000045000005'),('SynConXSLT000000000004','RSS 2.0 XSLT Stylesheet','','xslt/rss2.0.xsl',1124395707,1124395707,'3','7','12','WebGUI::Asset::Snippet',0,'RSS 2.0 XSLT Stylesheet RSS 2.0 XSLT xslt rss2.0.xsl You\'re viewing an RSS version 2.0 feed Please use an RSS feed reader to view this content as intended ','000001000001000045000006'),('vrKXEtluIhbmAS9xmPukDA','Donation (Default)','','root/import/default-donation-template',1212092352,1273032715,'3','7','12','WebGUI::Asset::Template',0,'Donation Default Donation Default root import default donation template Donation','000001000001000038000010'),('eqb9sWjFEVq0yHunGV8IGw','Subscription (Default)','','root/import/subscription-default',1213182595,1273032715,'3','7','12','WebGUI::Asset::Template',0,'Subscription Default Subscription Default root import subscription default Subscription','000001000001000038000012'),('PBtmpl0000000000000036','Default Admin Toggle Macro','','default_admin_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Admin Toggle Macro Default Admin Toggle Macro default admin toggle macro Macro/AdminToggle','000001000001000021000001000001'),('PBtmpl0000000000000037','Default Account Macro','','default_account_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Account Macro Default Account Macro default account macro Macro/a_account','000001000001000021000002000001'),('PBtmpl0000000000000038','Default Editable Toggle Macro','','default_editable_toggle_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Editable Toggle Macro Default Editable Toggle Macro default editable toggle macro Macro/EditableToggle','000001000001000021000003000001'),('PBtmpl0000000000000040','Default Group Add Macro','','default_group_add_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Add Macro Default Group Add Macro default group add macro Macro/GroupAdd','000001000001000021000005000001'),('PBtmpl0000000000000041','Default Group Delete Macro','','default_group_delete_macro',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Group Delete Macro Default Group Delete Macro default group delete macro Macro/GroupDelete','000001000001000021000006000001'),('PBtmpl0000000000000042','Default Homelink','','default_homelink',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Homelink Default Homelink default homelink Macro/H_homeLink','000001000001000021000007000001'),('PBtmpl0000000000000043','Default LoginToggle','','default_logintoggle',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default LoginToggle Default LoginToggle default logintoggle Macro/LoginToggle','000001000001000021000008000001'),('PBtmpl0000000000000045','Default Make Printable','','default_make_printable',1124395696,1129049186,'3','7','12','WebGUI::Asset::Template',0,'Default Make Printable Default Make Printable default make printable Macro/r_printable','000001000001000021000011000001'),('PBtmpl0000000000000091','File no icon','','file_no_icon',1124395696,1129049189,'3','7','12','WebGUI::Asset::Template',0,'File no icon File no icon file no icon Macro/File','000001000001000021000004000002'),('MK4fCNoyrx5SE8eyDfOpxg','Flash File','','flash-file',1247489252,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Flash File Flash File flash file FileAsset','000001000001000013000004'),('PBtmpl0000000000000132','Empty','','empty',1124395696,1258524916,'3','7','12','WebGUI::Asset::Template',0,'Empty Empty empty style','000001000001000043000004'),('PBtmpl0000000000000140','Default Shortcut','','pbtmpl0000000000000140',1124395696,1129573244,'3','7','12','WebGUI::Asset::Template',0,'Default Shortcut Default Shortcut pbtmpl0000000000000140 Shortcut','000001000001000039000001'),('hkj6WeChxFyqfP85UlRP8w','matrix.css','','new-matrix/matrix.css',1232664229,1250243000,'3','7','12','WebGUI::Asset::Snippet',0,'matrix.css matrix.css new matrix matrix.css wg-clear display inline clear both font-size:0px line-height:0px COLUMN STYLES matrixLeft float:left width:65 padding:1 min-height:1 background-color:#d2d2d2 moz-border-radius:4px webkit-border-radius 4px matrixRight float:left width:25 padding:0px min-height:1 moz-border-radius:4px webkit-border-radius 4px border solid silver 1px background-color:white margin-left:5px DROPSHADOW BUTTONS matrixLeft buttons span background-color:#888 position:relative padding:5px 0px 0px 0px moz-border-radius:4px webkit-border-radius 4px matrixLeft buttons button matrixLeft buttons a#return border:solid 2f495e 2px position:relative background-color:#e1e1e1 padding:auto 3px margin:0px font-size:11px line-height:13px position:relative top:-6px left:-2px height:22px cursor:pointer moz-border-radius:4px webkit-border-radius 4px font-weight:bold text-decoration:none color:#333 matrixLeft buttons a#return font-size:10px padding:3px 10px 2px 10px matrixLeft buttons button:hover matrixLeft buttons a#return:hover border-color:black color:white background-color:#444 WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE matrixLeft matrixListing background-color:white height:300px min-height:300px moz-border-radius:4px webkit-border-radius 4px margin:10px 2px 20px 2px padding:auto 10px matrixLeft matrixListing table border-collapse:collapse margin:0px padding:0px display:block matrixLeft matrixListing table a:link font-size:12px color:#111 matrixLeft matrixListing table a:visited color:#333 font-size:12px text-decoration:none matrixLeft matrixListing table a:hover text-decoration:none GRAY BAR THAT HOLDS THE SORT BUTTONS matrixLeft matrixListing sortButtons background-color:#f1f1f1 border:solid silver 1px moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft 4px webkit-border-radius-topRight 4px border-bottom:solid D2D2D2 2px display:block STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE sortByViews-button sortByCompares-button sortByUpdated-button sortByClicks-button sortByName-button background none white-space:nowrap border-style:none cursor:pointer padding-bottom:4px border-style:none background-color:transparent border-right:solid silver 1px color:#555 sortByViews-button:hover sortByCompares-button:hover sortByUpdated-button:hover sortByClicks-button:hover sortByName-button:hover color:black MATRIX STATISTICS matrixRight mainTitle font-size:20px padding:5px 10px border-bottom solid gray 1px background-color:#d2d2d2 matrixRight textBox border-top:solid silver 1px padding:10px 5px matrixStatistics padding:10px matrixStatistics title font-weight:bold background-color:#f1f1f1 padding:2px 5px font-size:11px moz-border-radius:4px border:solid d2d2d2 1px matrixStatistics statistics margin-bottom:15px matrixStatistics label text-align:right width:100px font-size:10px matrixStatistics data font-size:10px matrixStatistics data a color:#111 matrixStatistics data a:hover text-decoration:none LINKS TO CONTROL ADMIN FUNCTIONS adminLinks background-color:#f1f1f1 adminLinks a:link adminLinks a:visited display:block text-align:center text-decoration:none color:#555 font-weight:normal font-size:10px padding:2px 5px border-top:solid silver 1px adminLinks a:hover color:black adminLinks a.newLink:link adminLinks a.newLink:visited background-color:#3498d1 color:white display:block adminLinks a.newLink:hover background-color:#39a6e5 STYLE FOR THE DETAILED LISTING matrixDetail min-width:1000px matrixDetail editBtns font-size:9px line-height:11px vertical-align:middle font-weight:normal margin-left:10px matrixDetail editBtns a color:black text-decoration:underline matrixDetail editBtns a:hover text-decoration:none matrixDetail stats screenshot float:left margin-right:20px matrixDetail commentsMail strong.title margin-bottom:0px margin-top:20px display:block background-color:#d2d2d2 padding:2px 10px border:solid 1px gray border-bottom-color:silver moz-border-radius-topLeft:4px moz-border-radius-topRight:4px matrixDetail assetAspectComments margin:0px 0px 20px 0px border:solid gray 1px background-color:#f1f1f1 moz-border-radius-bottomLeft:4px moz-border-radius-bottomRight:4px matrixDetail assetAspectComments assetAspectComment border-top:solid silver 1px border-bottom:solid gray 1px padding:3px background-color:#f5f5f5 matrixDetail assetAspectComments assetAspectCommentForm border-top:solid d2d2d2 5px padding:20px matrixDetail stats ul matrixDetail stats ul li list-style-type:none margin:0px padding:0px matrixDetail stats ul li display:block line-height:20px margin:4px 0px matrixDetail stats ul li strong display:block float:left width:130px text-align:right background-color:#f1f1f1 padding-right:5px margin-right:5px moz-border-radius:4px webkit-border-radius:3px font-size:11px border:solid d2d2d2 1px showLink background-color:#e1e1e1 border:2px solid 2F495E moz-border-radius:4px webkit-border-radius:4px padding:3px 10px text-decoration:none color:black showLink:hover hideLink:hover background-color:#555 color:white hideLink background-color:#f1f1f1 border:2px solid 2F495E border-bottom-style:none moz-border-radius-topLeft:4px moz-border-radius-topRight:4px webkit-border-radius-topLeft:4px webkit-border-radius-topRight:4px padding:3px 10px text-decoration:none color:black matrixMail background-color:#f1f1f1 padding:15px border:2px solid 2F495E moz-border-radius:4px moz-border-radius-topLeft:0px webkit-border-radius:4px webkit-border-radius-topLeft:0px margin-top:1px matrixMail tableData padding:5px margin:0px matrixMail input padding:0px margin:0px matrixMail formDescription text-align:right vertical-align:middle padding-right:10px font-weight:bold matrixMail form img margin-top:-18px matrixMail verify_formId height:45px line-height:45px font-size:35px padding:0px margin:0px margin-right:20px matrixRatings width:264px position:relative left:-2px top:12px matrixRatings table margin-left:0px matrixRatings td overflow:hidden matrixRatings formDescription text-align:right background-color:#97BCD1 border:solid 4D606B 1px padding:2px 5px font-weight:bold font-size:10x moz-border-radius:4px webkit-border-radius:4px color:#333 matrixRatings formDescription a:before text-decoration:none matrixRatings formDescription a display:block color:red text-decoration:none matrixRatings formDescription a:hover text-decoration:underline matrixAttributes float:left width:40 min-width:20 max-width:45 margin-right:20px rightDetails float:left width:20 min-width:20 max-width:45 attributes border:solid d2d2d2 1px background-color:#f1f1f1 margin-top:10px moz-border-radius:4px webkit-border-radius:4px padding:10px attributes table border-collapse:collapse padding:0px margin:0px attributes table td padding:2px margin:0px yui-dt0-col-value font-weight:bold font-size:14px padding:3px white-space:no-wrap COMPARISON STYLES compareList table border-collapse:collapse border:solid silver 1px margin-top:5px compareList table th a color:black padding:1px 5px compareList table td background-color:#f1f1f1 border-top:solid gray 1px border-bottom:solid silver 1px compareList yui-dt-liner color:#39A6E5 compareList yui-dt-col-name yui-dt-liner font-style:italic font-size:10px color:#555 compareList yui-dt-col-name yui-dt-liner b font-size:15px font-style:normal padding-right:25px color:black ','000001000001000022000006'),('ZipArchiveTMPL00000001','Default Zip Archive Template','','zip-archive-template',1133743240,1169738426,'3','7','12','WebGUI::Asset::Template',0,'Default Zip Archive Template Default Zip Archive Template zip archive template ZipArchiveAsset','000001000001000055000001'),('PBasset000000000000002','Import Node','','root/import',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Import Node Import root import','000001000001'),('2TqQc4OISddWCZmRY1_m8A','The Latest News','','the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'The Latest News The Latest News the latest news','000001000002000003'),('68sKwDgf9cGH58-NZcU4lg','Home','','home',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Home Home home','000001000002'),('8Bb8gu-me2mhL3ljFyiWLg','What should you do next?','','your_next_step',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'What should you do next Your Next Step your next step','000001000002000002'),('Swf6L8poXKc7hUaNPkBevw','Tell A Friend','','tell_a_friend',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Tell A Friend Tell A Friend tell a friend','000001000002000004'),('_iHetEvMQUOoxS-T2CM0sQ','Getting Started','','getting_started',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Getting Started Getting Started getting started','000001000002000001'),('x3OFY6OJh_qsXkZfPwug4A','Site Map','','site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Site Map Site Map site map','000001000002000006'),('PBnav00000000000000001','crumbTrail','','crumbtrail',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crumbTrail crumbTrail crumbtrail','000001000001000025000008'),('PBnav00000000000000002','SpecificSubMenuVertical','','specificsubmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuVertical SpecificSubMenuVertical specificsubmenuvertical','000001000001000025000017'),('PBnav00000000000000006','SpecificSubMenuHorizontal','','specificsubmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificSubMenuHorizontal SpecificSubMenuHorizontal specificsubmenuhorizontal','000001000001000025000018'),('PBnav00000000000000007','TopLevelMenuVertical','','toplevelmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuVertical TopLevelMenuVertical toplevelmenuvertical','000001000001000025000019'),('PBnav00000000000000008','TopLevelMenuHorizontal','','toplevelmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopLevelMenuHorizontal TopLevelMenuHorizontal toplevelmenuhorizontal','000001000001000025000020'),('PBnav00000000000000009','RootTab','','roottab',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'RootTab RootTab roottab','000001000001000025000021'),('PBnav00000000000000010','TopDropMenu','','topdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'TopDropMenu TopDropMenu topdropmenu','000001000001000025000022'),('PBnav00000000000000011','dtree','','dtree',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'dtree dtree dtree','000001000001000025000023'),('PBnav00000000000000012','coolmenu','','coolmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'coolmenu coolmenu coolmenu','000001000001000025000024'),('PBnav00000000000000013','Synopsis','','synopsis',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Synopsis Synopsis synopsis','000001000001000025000025'),('PBnav00000000000000014','FlexMenu','','flexmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'FlexMenu FlexMenu flexmenu','000001000001000025000009'),('PBnav00000000000000015','currentMenuVertical','','currentmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuVertical currentMenuVertical currentmenuvertical','000001000001000025000010'),('PBnav00000000000000016','currentMenuHorizontal','','currentmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'currentMenuHorizontal currentMenuHorizontal currentmenuhorizontal','000001000001000025000011'),('PBnav00000000000000017','PreviousDropMenu','','previousdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'PreviousDropMenu PreviousDropMenu previousdropmenu','000001000001000025000012'),('PBnav00000000000000018','previousMenuVertical','','previousmenuvertical',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuVertical previousMenuVertical previousmenuvertical','000001000001000025000013'),('PBnav00000000000000019','previousMenuHorizontal','','previousmenuhorizontal',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'previousMenuHorizontal previousMenuHorizontal previousmenuhorizontal','000001000001000025000014'),('PBnav00000000000000020','rootmenu','','rootmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'rootmenu rootmenu rootmenu','000001000001000025000015'),('PBnav00000000000000021','SpecificDropMenu','','specificdropmenu',1124395696,1124395696,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'SpecificDropMenu SpecificDropMenu specificdropmenu','000001000001000025000016'),('pJd5TLAjfWMVXD6sCRLwUg','Site Map','','site_map/site_map',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Site Map Site Map site map site map','000001000002000006000001'),('fK-HMSboA3uu0c1KYkYspA','The Latest News','This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','the_latest_news/the_latest_news',1124395696,1124395696,'3','7','3','WebGUI::Asset::Wobject::SyndicatedContent',1,'The Latest News The Latest News the latest news the latest news This is the latest news from Plain Black and WebGUI pulled directly from the site every hour','000001000002000003000001'),('WikiFrontTmpl000000001','Default Wiki Front Page','','default-wiki-front-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Front Page Default Wiki Front Page default wiki front page WikiMaster_front','000001000001000054000002'),('WikiSearchTmpl00000001','Default Wiki Search','','default-wiki-search',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Search Default Wiki Search default wiki search WikiMaster_search','000001000001000054000003'),('WikiPHTmpl000000000001','Default Page History','','default-wiki-page-history',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Page History Default Page History default wiki page history WikiPage_pageHistory','000001000001000054000004'),('WikiPageTmpl0000000001','Default Wiki Page','','default-wiki-page',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Default Wiki Page default wiki page WikiPage','000001000001000054000005'),('WikiPageEditTmpl000001','Default Wiki Page Edit','','default-wiki-page-edit',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Wiki Page Edit Default Wiki Page Edit default wiki page edit WikiPage_edit','000001000001000054000006'),('WikiMPTmpl000000000001','Default Most Popular','','default-wiki-most-popular',1165460175,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Default Most Popular Default Most Popular default wiki most popular WikiMaster_mostPopular','000001000001000054000007'),('SQLReportDownload00001','SQLReport Download Default Template','','SQLReportDownload0001',1171466654,1171466654,'3','7','12','WebGUI::Asset::Template',0,'SQLReport Download Default Template untitled SQLReportDownload0001 SQLReport/Download','000001000001000040000002'),('newsletter000000000001',' Summary Newsletter (default)','','newsletterdefaulttemplate',1185754569,1185754569,'3','7','3','WebGUI::Asset::Template',0,'Summary Newsletter default Summary Newsletter newsletterdefaulttemplate newsletter','000001000001000026000001'),('newslettersubscrip0001','My Subscriptions (default)','','newslettermysubscriptionstemplate',1185754569,1221692339,'3','7','3','WebGUI::Asset::Template',0,'My Subscriptions default My Subscriptions newslettermysubscriptionstemplate newsletter/mysubscriptions','000001000001000026000003'),('AjhlNO3wZvN5k4i4qioWcg','Default Answer Edit','','root/import/survey/default-answer-edit',1226009658,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Answer Edit Default Answer Edit root import survey default answer edit Survey/Edit','000001000001000044000009'),('QHn6T9rU7KsnS3Y70KCNTg','Account','','root/import/account',1227080251,1233173545,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Account Account root import account','000001000001000002'),('HPDOcsj4gBme8D4svHodBw','Profile','','root/import/account/profile',1225404573,1225404573,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Profile Profile root import account profile','000001000001000002000001'),('WikiKeyword00000000001',' Wiki Pages By Keyword (default)','','wiki-master-by-keyword-template.tmpl',1185754571,1274238756,'3','7','3','WebGUI::Asset::Template',0,'Wiki Pages By Keyword default Wiki Pages By Keyword wiki master by keyword template.tmpl WikiMaster_byKeyword','000001000001000054000008'),('tempspace0000000000000','Tempspace','','tempspace',1185754574,1185754574,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Tempspace Tempspace tempspace','000001000004'),('QpmlAiYZz6VsKBM-_0wXaw','UsersOnline Macro',' ','users-online-macro-templates',1224616691,1224616691,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'UsersOnline Macro UsersOnline Macro users online macro templates','000001000001000021000012'),('h_T2xtOxGRQ9QJOR6ebLpQ','UsersOnline Default View','','users-online-macro-templates/usersonline-default-view',1224616545,1224616545,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Default View UsersOnline Default View users online macro templates usersonline default view Macro/UsersOnline','000001000001000021000012000001'),('4Ekp0kJoJllRRRo_J1Rj6w','UsersOnline Detailed View','','users-online-macro-templates/usersonline-detailed-view',1224616672,1224616672,'3','7','3','WebGUI::Asset::Template',0,'UsersOnline Detailed View UsersOnline Detailed View users online macro templates usersonline detailed view Macro/UsersOnline','000001000001000021000012000002'),('THQhn1C-ooj-TLlEP7aIJQ','gallery-ie.css','','root/import/gallery-templates/gallery-ie.css',1225313951,1277868927,'3','7','3','WebGUI::Asset::Snippet',0,'gallery-ie.css gallery-ie.css root import gallery templates gallery ie.css wgPicture float:left wgAlbum float:left wgGallery pagination li wgGallery pagination a float:left wgGallery container display:inline-block ','000001000001000015000025'),('itransact_credentials1','ITransact Credentials (Default)','','shopping-cart-collateral-items/itransact-credentials',1228953856,1273032715,'3','7','4','WebGUI::Asset::Template',0,'ITransact Credentials Default ITransact Credentials Default shopping cart collateral items itransact credentials Shop/Credentials','000001000001000038000018'),('1oBRscNIcFOI-pETrCOspA','Default Section Edit','','root/import/survey/default-section-edit',1226009642,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Section Edit Default Section Edit root import survey default section edit Survey/Edit','000001000001000044000007'),('gI_TxK-5S4DNuv42wpImmw','Gallery Templates',' ','root/import/gallery-templates',1197330678,1277868923,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Gallery Templates Gallery Templates root import gallery templates','000001000001000015'),('jME5BEDYVDlBZ8jIQA9-jQ','Default Gallery Search','','root/import/gallery-templates/default-gallery-search',1197927169,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Search Default Gallery Search root import gallery templates default gallery search Gallery/Search','000001000001000015000001'),('azCqD0IjdQSlM3ar29k5Sg','Default Gallery List Albums View','','root/import/gallery-templates/default-gallery-list-albums-view',1197881748,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums View Default Gallery List Albums View root import gallery templates default gallery list albums view Gallery/ListAlbums','000001000001000015000002'),('05FpjceLYhq4csF1Kww1KQ','Default Gallery View Album','','root/import/gallery-templates/default-gallery-view-album',1197879361,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Default Gallery View Album root import gallery templates default gallery view album GalleryAlbum/View','000001000001000015000003'),('KAMdiUdJykjN02CPHpyZOw','Default Gallery View Album Slideshow','','root/import/gallery-templates/default-gallery-view-album-slideshow',1197825787,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Slideshow Default Gallery View Album Slideshow root import gallery templates default gallery view album slideshow GalleryAlbum/ViewSlideshow','000001000001000015000005'),('OkphOEdaSGTXnFGhK4GT5A','Default Gallery List Files For User','','root/import/gallery-templates/default-gallery-list-files-for-user',1197825794,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User Default Gallery List Files For User root import gallery templates default gallery list files for user Gallery/ListFilesForUser','000001000001000015000006'),('TEId5V-jEvUULsZA0wuRuA','Default Gallery View Photo','','root/import/gallery-templates/default-gallery-view-photo',1197989443,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Photo Default Gallery View Photo root import gallery templates default gallery view photo GalleryFile/View','000001000001000015000007'),('6X-7Twabn5KKO_AbgK3PEw','Default Gallery Edit Album','','root/import/gallery-templates/default-gallery-edit-album',1197987780,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Album Default Gallery Edit Album root import gallery templates default gallery edit album GalleryAlbum/Edit','000001000001000015000008'),('7JCTAiu1U_bT9ldr655Blw','Default Gallery Edit Photo','','root/import/gallery-templates/default-gallery-edit-photo',1197825824,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Photo Default Gallery Edit Photo root import gallery templates default gallery edit photo GalleryFile/Edit','000001000001000015000009'),('0X4Q3tBWUb_thsVbsYz9xQ','Default Gallery Add Archive','','root/import/gallery-templates/default-gallery-add-archive',1197987372,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Add Archive Default Gallery Add Archive root import gallery templates default gallery add archive GalleryAlbum/AddArchive','000001000001000015000010'),('m3IbBavqzuKDd2PGGhKPlA','Default Gallery Make Shortcut','','root/import/gallery-templates/default-gallery-make-shortcut',1197825845,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Make Shortcut Default Gallery Make Shortcut root import gallery templates default gallery make shortcut GalleryFile/MakeShortcut','000001000001000015000011'),('UTNFeV7B_aSCRmmaFCq4Vw','Default Gallery Delete Album','','root/import/gallery-templates/default-gallery-delete-album',1197825856,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete Album Default Gallery Delete Album root import gallery templates default gallery delete album GalleryAlbum/Delete','000001000001000015000012'),('zcX-wIUct0S_np14xxOA-A','Default Gallery Delete File','','root/import/gallery-templates/default-gallery-delete-file',1197825866,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Delete File Default Gallery Delete File root import gallery templates default gallery delete file GalleryFile/Delete','000001000001000015000013'),('MBZK_LPVzqhb4TV4mMRTJg','admin_ie7.css','','root/import/gallery-templates/admin_ie7.css',1197330678,1277868923,'3','7','3','WebGUI::Asset::Snippet',0,'admin_ie7.css admin_ie7.css root import gallery templates admin ie7.css input.captionEnter margin-left 5px width 92px ','000001000001000015000014'),('bANo8aiAPA7aY_oQZKxIWw','rss.gif','','root/import/gallery-templates/images/rss.gif',1197330678,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss.gif','000001000001000015000017000001'),('2ci_v2d4x4uvyjTRlC49OA','moveDown.gif','','root/import/gallery-templates/images/movedown.gif',1197330678,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'moveDown.gif moveDown.gif root import gallery templates images movedown.gif','000001000001000015000017000002'),('O-EsSzKgAk1KolFT-x_KsA','moveUp.gif','','root/import/gallery-templates/images/moveup.gif',1197330678,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'moveUp.gif moveUp.gif root import gallery templates images moveup.gif','000001000001000015000017000003'),('fdd8tGExyVwHyrB8RBbKXg','next.gif','','root/import/gallery-templates/images/next.gif',1197330839,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'next.gif next.gif root import gallery templates images next.gif','000001000001000015000017000004'),('BpisgHl4ZDcSECJp6oib1w','play.gif','','root/import/gallery-templates/images/play.gif',1197330840,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'play.gif play.gif root import gallery templates images play.gif','000001000001000015000017000005'),('zshreRgPAXtnF0DtVbQ1Yg','previous.gif','','root/import/gallery-templates/images/previous.gif',1197330840,1277868924,'3','7','3','WebGUI::Asset::File::Image',1,'previous.gif previous.gif root import gallery templates images previous.gif','000001000001000015000017000006'),('mM3bjP_iG9sv5nQb4S17tQ','Default Gallery View Album RSS','','root/import/gallery-templates/default-gallery-album-rss',1197879662,1277868926,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album RSS Default Gallery View Album RSS root import gallery templates default gallery album rss GalleryAlbum/ViewRss','000001000001000015000018'),('ilu5BrM-VGaOsec9Lm7M6Q','Default Gallery List Albums RSS','','root/import/gallery-templates/default-gallery-list-albums-rss',1197878780,1277868926,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Albums RSS Default Gallery List Albums RSS root import gallery templates default gallery list albums rss Gallery/ListAlbumsRss','000001000001000015000019'),('-ANLpoTEP-n4POAdRxCzRw','Default Gallery List Files For User RSS','','root/import/gallery-templates/default-gallery-list-files-for-user-rss',1197880641,1277868926,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery List Files For User RSS Default Gallery List Files For User RSS root import gallery templates default gallery list files for user rss Gallery/ListFilesForUserRss','000001000001000015000020'),('OxJWQgnGsgyGohP2L3zJPQ','Default Gallery Edit Comment','','root/import/gallery-templates/default-gallery-edit-comment',1204663962,1277868926,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery Edit Comment Default Gallery Edit Comment root import gallery templates default gallery edit comment GalleryFile/EditComment','000001000001000015000021'),('Tsg7xmPYv782j6IVz7yHFg','Calendar Templates','','root/import/calendar-templates',1204890713,1213244777,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Calendar Templates Calendar Templates root import calendar templates','000001000001000006'),('kj3b-X3i6zRKnhLb4ZiCLw','Default Calendar List View','','root/import/calendar-templates/default-calendar-list-view',1204890713,1243445504,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar List View Default Calendar List View root import calendar templates default calendar list view Calendar/List','000001000001000006000001'),('uRL9qtk7Rb0YRJ41LmHOJw','Default Calendar Print List View','','root/import/calendar-templates/default-calendar-print-list-view',1204890713,1229311072,'3','7','3','WebGUI::Asset::Template',0,'Default Calendar Print List View Default Calendar Print List View root import calendar templates default calendar print list view Calendar/Print/List','000001000001000006000002'),('CalendarWeek0000000001','Default Calendar Week','','root/import/calendar-templates/default-calendar-week',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Week Default Calendar Week root import calendar templates default calendar week Calendar/Week','000001000001000006000003'),('CalendarDay00000000001','Default Calendar Day','','root/import/calendar-templates/default-calendar-day',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Day Default Calendar Day root import calendar templates default calendar day Calendar/Day','000001000001000006000004'),('CalendarEvent000000001','Default Calendar Event','','root/import/calendar-templates/default-calendar-event',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Default Calendar Event root import calendar templates default calendar event Calendar/Event','000001000001000006000005'),('CalendarEventEdit00001','Default Calendar Event Edit','','root/import/calendar-templates/default-calendar-event-edit',1205160982,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Event Edit Default Calendar Event Edit root import calendar templates default calendar event edit Calendar/EventEdit','000001000001000006000006'),('CalendarSearch00000001','Default Calendar Search','','root/import/calendar-templates/default-calendar-search',1204890713,1230358389,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Search Default Calendar Search root import calendar templates default calendar search Calendar/Search','000001000001000006000008'),('CalendarPrintEvent0001','Default Calendar Print Event','','root/import/calendar-templates/default-calendar-print-event',1204890714,1215396964,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Event Default Calendar Print Event root import calendar templates default calendar print event Calendar/Print/Event','000001000001000006000009'),('CalendarPrintMonth0001','Default Calendar Print Month','','root/import/calendar-templates/default-calendar-print-month',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Month Default Calendar Print Month root import calendar templates default calendar print month Calendar/Print/Month','000001000001000006000010'),('CalendarPrintWeek00001','Default Calendar Print Week','','root/import/calendar-templates/default-calendar-print-week',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Week Default Calendar Print Week root import calendar templates default calendar print week Calendar/Print/Week','000001000001000006000011'),('CalendarPrintDay000001','Default Calendar Print Day','','root/import/calendar-templates/default-calendar-print-day',1204890714,1204890714,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Print Day Default Calendar Print Day root import calendar templates default calendar print day Calendar/Print/Day','000001000001000006000012'),('jnYdqDkUR8x7Pv2eGR1qTA','Thingy Templates','','root/import/thingy-templates',1205431513,1216250666,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Thingy Templates Thingy Templates root import thingy templates','000001000001000046'),('ThingyTmpl000000000001','Default Thingy','','templates/thingy-default',1205003608,1237914005,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Default Thingy templates thingy default Thingy','000001000001000046000001'),('ThingyTmpl000000000002','Default Thingy View Thing','','templates/thingy-default-view-thing',1205003676,1222574693,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy View Thing Default Thingy View Thing templates thingy default view thing Thingy/ViewThing','000001000001000046000002'),('ThingyTmpl000000000003','Default Thingy Edit Thing','','templates/thingy-default-edit-thing',1205003711,1224518002,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Edit Thing Default Thingy Edit Thing templates thingy default edit thing Thingy/EditThing','000001000001000046000003'),('ThingyTmpl000000000004','Default Thingy Search Thing','','templates/thingy-default-search-thing',1205158717,1277868920,'3','7','12','WebGUI::Asset::Template',0,'Default Thingy Search Thing Default Thingy Search Thing templates thingy default search thing Thingy/SearchThing','000001000001000046000004'),('7fE8md51vTCcuJFOvxNaGA','thumbnails.js','','root/import/gallery-templates/thumbnails.js',1205443600,1277868926,'3','7','3','WebGUI::Asset::Snippet',0,'thumbnails.js thumbnails.js root import gallery templates thumbnails.js Depends on BrowserDetect.js Make the thumbnails a little bigger while the mouse is over them function scaleThumbUp e anchor IE6 doesn\'t like to do the right thing with the CSS stuff below exclude it if BrowserDetect if BrowserDetect.browser == Explorer BrowserDetect.version < 7 return Make a new image with the same image src as the anchor var oldImage = anchor.getElementsByTagName(\"img\")[0 var newContainer = document.createElement(\"div newContainer.className = thumb-popup newContainer.style.position = absolute newContainer.style.zIndex = 1 var newWidth = oldImage.offsetWidth 3 var newHeight = oldImage.offsetHeight 3 var newLeft = anchor.offsetLeft + anchor.offsetWidth 2 newWidth 2 var newTop = anchor.offsetTop + anchor.offsetHeight 2 newHeight 2 newContainer.style.left = newLeft + px newContainer.style.top = newTop + px newContainer.style.width = newWidth + px newContainer.style.height = newHeight + px var newImage = document.createElement(\"img newImage.src = oldImage.src newImage.style.width = 100 newImage.style.height = 100 newContainer.appendChild newImage Make some text for the caption var caption = document.createElement(\"div caption.appendChild document.createTextNode anchor.title caption.className = caption newContainer.appendChild caption var newBox = document.createElement(\"a newBox.href = anchor.href newBox.style.display = block newBox.style.position = absolute newBox.style.zIndex = 10 newBox.style.left = anchor.offsetLeft + px newBox.style.top = anchor.offsetTop + px newBox.style.height = anchor.offsetHeight + px newBox.style.width = anchor.offsetWidth + px newBox.style.border = 1px solid transparent anchor.parentNode.appendChild newContainer anchor.parentNode.appendChild newBox YAHOO.util.Event.addListener newBox click function window.location.href = anchor.href YAHOO.util.Event.addListener newContainer mouseout scaleThumbDown newBox newContainer caption YAHOO.util.Event.addListener newBox mouseout scaleThumbDown newBox newContainer caption function scaleThumbDown e elements for var i = 0 i < elements.length i++ elements[i].parentNode.removeChild elements[i var anchorTimeout function enterAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout anchorTimeout = setTimeout function scaleThumbUp e anchor 150 function leaveAnchor e anchor if typeof anchorTimeout = undefined clearTimeout anchorTimeout function initThumb var anchors = YAHOO.util.Dom.getElementsByClassName thumb for var i = 0 i < anchors.length i++ YAHOO.util.Event.addListener anchors[i mouseover enterAnchor anchors[i YAHOO.util.Event.addListener anchors[i mouseout leaveAnchor anchors[i YAHOO.util.Event.onDOMReady initThumb ','000001000001000015000022'),('1oGhfj00KkCzP1ez01AfKA','slideshow.js','','root/import/gallery-templates/slideshow.js',1205635970,1277868927,'3','7','3','WebGUI::Asset::Snippet',0,'slideshow.js slideshow.js root import gallery templates slideshow.js if typeof WebGUI == undefined WebGUI = WebGUI.Slideshow config Configure and return a new Slideshow object config is an object with the following properties containerId The ID of the element that contains the Slideshow items Defaults to slideshow-container currentIndex The index of the first item in the Slideshow Defaults to 0 isPlaying If true the slideshow will begin immediately itemClassName The class name of the slideshow items Defaults to slideshow-item nextButtonId The id of the button to go to the next item pauseImageSrc The URL to the pause button image playDelay The delay in milliseconds between slides Defaults to 5000 playImageSrc The URL to the play button image playPauseButtonId The id of the button to toggle between play and pause previousButtonId The id of the button to go to the previous item wrap If true the slideshow will wrap around Control the slideshow To control the slideshow you can use the following methods next Pause the slideshow and go to the next slide previous Pause the slideshow and go to the previous slide play Play the slideshow pause Pause the slideshow togglePlay If it\'s playing pause it If it\'s paused play it WebGUI.Slideshow = function config this.containerId = config config.containerId config.containerId slideshow-container this.currentIndex = config config.currentIndex config.currentIndex 0 this.isPlaying = config config.isPlaying config.isPlaying false this.itemClassName = config config.itemClassName config.itemClassName slideshow-item this.nextButtonId = config config.nextButtonId undefined this.pauseImageSrc = config config.pauseImageSrc undefined this.playDelay = config config.playDelay config.playDelay 5000 this.playImageSrc = config config.playImageSrc undefined this.playPauseButtonId = config config.playPauseButtonId undefined this.previousButtonId = config config.previousButtonId undefined this.wrap = config config.wrap config.wrap false YAHOO.util.Event.onDOMReady this.init this true clearPlayTimeout Clears the timeout to move to the next slide WebGUI.Slideshow.prototype.clearPlayTimeout = function clearTimeout this.playTimeout this.playTimeout = undefined doPlayTick self Performs the action to move to the next slide and start a new timeout self is a new reference to the object to get around the scoping issues with setTimeout WebGUI.Slideshow.prototype.doPlayTick = function self self.showNext self.setPlayTimeout getSlideshowContainer Returns the HTMLElement for the Slideshow container WebGUI.Slideshow.prototype.getSlideshowContainer = function return document.getElementById this.containerId getSlideshowItems Returns an array of HTMLElements for the Slideshow\'s items WebGUI.Slideshow.prototype.getSlideshowItems = function var items = YAHOO.util.Dom.getElementsByClassName this.itemClassName undefined this.getSlideshowContainer return items init Initialize the slideshow Performed after the DOM is ready WebGUI.Slideshow.prototype.init = function Add handlers to buttons if this.playPauseButtonId YAHOO.util.Event.addListener this.playPauseButtonId click this.togglePlay this true if this.nextButtonId YAHOO.util.Event.addListener this.nextButtonId click this.next this true if this.previousButtonId YAHOO.util.Event.addListener this.previousButtonId click this.previous this true Hide all but the currentIndex var items = this.getSlideshowItems for var i = 0 i < items.length i++ if i = this.currentIndex items i style.display = none else items i style.display = block Start it off if necessary if this.isPlaying this.setPlayTimeout this.updatePlayPauseButton next Pause the slideshow and go to the next slide WebGUI.Slideshow.prototype.next = function this.pause this.showNext play Start the slideshow WebGUI.Slideshow.prototype.play = function if this.isPlaying this.isPlaying = true this.setPlayTimeout this.updatePlayPauseButton previous Pause the slideshow and show the previous slide WebGUI.Slideshow.prototype.previous = function this.pause this.showPrevious pause Pause the slideshow WebGUI.Slideshow.prototype.pause = function if this.isPlaying this.isPlaying = false this.clearPlayTimeout this.updatePlayPauseButton setPlayTimeout Sets the timeout to move to the next slide WebGUI.Slideshow.prototype.setPlayTimeout = function var self = this this.playTimeout = setTimeout function self.doPlayTick(self this.playDelay showNext Show the next slide WebGUI.Slideshow.prototype.showNext = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex + 1 Wrap around if this.wrap showIndex >= items.length showIndex = 0 Don\'t allow going past the last item else if showIndex >= items.length return Do the switch if items hideIndex items hideIndex style.display = none if items showIndex items showIndex style.display = block this.currentIndex = showIndex showPrevious Show the previous slide WebGUI.Slideshow.prototype.showPrevious = function var items = this.getSlideshowItems var hideIndex = this.currentIndex var showIndex = this.currentIndex 1 Wrap around if this.wrap showIndex < 0 showIndex = items.length 1 Don\'t allow going past the last item else if showIndex < 0 return Do the switch items hideIndex style.display = none items showIndex style.display = block this.currentIndex = showIndex togglePlay If it\'s paused play it If it\'s playing pause it Return true if the slideshow is now playing WebGUI.Slideshow.prototype.togglePlay = function if this.isPlaying == false this.play return true else this.pause updatePlayPauseButton Update the Play/Pause button to have the correct image WebGUI.Slideshow.prototype.updatePlayPauseButton = function if this.playPauseButtonId if this.isPlaying this.playImageSrc document.getElementById this.playPauseButtonId src = this.pauseImageSrc else if this.pauseImageSrc document.getElementById this.playPauseButtonId src = this.playImageSrc ','000001000001000015000023'),('3qiVYhNTXMVC5hfsumVHgg','browserdetect.js','','root/import/gallery-templates/browserdetect.js',1206743306,1277868927,'3','7','3','WebGUI::Asset::Snippet',0,'browserdetect.js browserdetect.js root import gallery templates browserdetect.js var BrowserDetect = init function this.browser = this.searchString(this.dataBrowser || An unknown browser this.version = this.searchVersion(navigator.userAgent || this.searchVersion(navigator.appVersion || an unknown version this.OS = this.searchString(this.dataOS || an unknown OS searchString function data for var i=0;i','000001000001000015000024'),('usuxw9V3jN4d4pujRiEYxg','css03-ie.css','','style3/css03-ie.css',1209494150,1209494150,'3','7','12','WebGUI::Asset::Snippet',0,'css03-ie.css css03-ie.css style3 css03 ie.css contentArea height:500px padding-bottom:300px ','000001000001000053000023'),('POVcY79vIqAHR8OfGt36aw','pagination_button.jpg','','root/import/gallery-templates/images/pagination_button.jpg',1209499189,1277868924,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_button.jpg pagination_button.jpg root import gallery templates images pagination button.jpg','000001000001000015000017000007'),('hIB-z34r8Xl-vYVYCkKr-w','bar-btn-r.jpg','','root/import/gallery-templates/images/bar-btn-r.jpg',1209499189,1277868924,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-r.jpg bar-btn-r.jpg root import gallery templates images bar btn r.jpg','000001000001000015000017000008'),('-mPUoFlYcjqjPUPRLAlxNQ','search-field-r.jpg','','root/import/gallery-templates/images/search-field-r.jpg',1209499189,1277868924,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-r.jpg search-field-r.jpg root import gallery templates images search field r.jpg','000001000001000015000017000009'),('MDpUOR-N8KMyt1J7Hh_h4w','bar-btn.jpg','','root/import/gallery-templates/images/bar-btn.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn.jpg bar-btn.jpg root import gallery templates images bar btn.jpg','000001000001000015000017000010'),('YfXKByTwDZVituMc4h13Dg','pagination_bg.jpg','','root/import/gallery-templates/images/pagination_bg.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'pagination_bg.jpg pagination_bg.jpg root import gallery templates images pagination bg.jpg','000001000001000015000017000011'),('esko_HSU0Gh-uJZ1h3xRmQ','search-field-l.jpg','','root/import/gallery-templates/images/search-field-l.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'search-field-l.jpg search-field-l.jpg root import gallery templates images search field l.jpg','000001000001000015000017000012'),('oSqpGswzpBG_ErdfYwIO8A','top_bg.jpg','','root/import/gallery-templates/images/top_bg.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg.jpg','000001000001000015000017000013'),('MXJklShZvLLB_DSnZQmXrQ','title_bg.jpg','','root/import/gallery-templates/images/title_bg.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'title_bg.jpg title_bg.jpg root import gallery templates images title bg.jpg','000001000001000015000017000014'),('BthxD5oJ0idmsyI3ioA2FA','bar-btn-l.jpg','','root/import/gallery-templates/images/bar-btn-l.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'bar-btn-l.jpg bar-btn-l.jpg root import gallery templates images bar btn l.jpg','000001000001000015000017000015'),('aZ-1HYQamkRHYXvzAra8WQ','search-field.jpg','','root/import/gallery-templates/images/search-field.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'search-field.jpg search-field.jpg root import gallery templates images search field.jpg','000001000001000015000017000016'),('eRkb94OYcS5AdcrrerOP5Q','rss.gif','','root/import/gallery-templates/images/rss2.gif',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'rss.gif rss.gif root import gallery templates images rss2.gif','000001000001000015000017000017'),('TbnkjAJQEASORXIpYqDkcA','blank-image.jpg','','root/import/gallery-templates/images/blank-image.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'blank-image.jpg blank-image.jpg root import gallery templates images blank image.jpg','000001000001000015000017000018'),('er-3faBjY-hhlDcc5aKqdQ','top_bg.jpg','','root/import/gallery-templates/images/top_bg2.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'top_bg.jpg top_bg.jpg root import gallery templates images top bg2.jpg','000001000001000015000017000019'),('8bFsu2FJUqHRUiHcozcVFw','sub-btn-l.jpg','','root/import/gallery-templates/images/sub-btn-l.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-l.jpg sub-btn-l.jpg root import gallery templates images sub btn l.jpg','000001000001000015000017000020'),('34Aayx5eA320D8VfhdfDBw','sub-btn-r.jpg','','root/import/gallery-templates/images/sub-btn-r.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn-r.jpg sub-btn-r.jpg root import gallery templates images sub btn r.jpg','000001000001000015000017000021'),('TlhKOVmWblZOsAdqmhEpeg','sub-btn.jpg','','root/import/gallery-templates/images/sub-btn.jpg',1209499189,1277868925,'3','7','12','WebGUI::Asset::File::Image',1,'sub-btn.jpg sub-btn.jpg root import gallery templates images sub btn.jpg','000001000001000015000017000022'),('Nx0ypjO3cN6QdZUBUEE0lA','pic-title-bg.jpg','','root/import/gallery-templates/images/pic-title-bg.jpg',1209499189,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'pic-title-bg.jpg pic-title-bg.jpg root import gallery templates images pic title bg.jpg','000001000001000015000017000023'),('CmFZLN7iPS7XXvUEsxKPKA','row-2.jpg','','root/import/gallery-templates/images/row-2.jpg',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import gallery templates images row 2.jpg','000001000001000015000017000024'),('v_XBgwwZqgW1D5s4y05qfg','addtl-info.gif','','root/import/gallery-templates/images/addtl-info.gif',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'addtl-info.gif addtl-info.gif root import gallery templates images addtl info.gif','000001000001000015000017000025'),('4TdAkKoQbSCvI7QWcW889A','row-1.jpg','','root/import/gallery-templates/images/row-1.jpg',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import gallery templates images row 1.jpg','000001000001000015000017000026'),('SAgK6eDPCG1cgkJ59WapHQ','prev-btn.gif','','root/import/gallery-templates/images/prev-btn.gif',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'prev-btn.gif prev-btn.gif root import gallery templates images prev btn.gif','000001000001000015000017000027'),('XJYLuvGy9ubF7JNKyINtpA','play-btn.gif','','root/import/gallery-templates/images/play-btn.gif',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'play-btn.gif play-btn.gif root import gallery templates images play btn.gif','000001000001000015000017000028'),('RWj7hyv2SpZuXxwj1Wocug','next-btn.gif','','root/import/gallery-templates/images/next-btn.gif',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'next-btn.gif next-btn.gif root import gallery templates images next btn.gif','000001000001000015000017000029'),('aq8QElnlm3YufAoxRz9Pcg','data-bg.jpg','','root/import/gallery-templates/images/data-bg.jpg',1209499190,1277868926,'3','7','12','WebGUI::Asset::File::Image',1,'data-bg.jpg data-bg.jpg root import gallery templates images data bg.jpg','000001000001000015000017000030'),('6D4Z-oruXPS6OlH_Kx8pBg','images','','root/import/thingy-templates/images',1209509389,1209509389,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import thingy templates images','000001000001000046000005'),('hQ7z33_jOYkQ8WNX5xy9Sw','style-button.gif','','root/import/thingy-templates/images/style-button.gif',1209509455,1209509455,'3','7','12','WebGUI::Asset::File::Image',1,'style-button.gif style-button.gif root import thingy templates images style button.gif','000001000001000046000005000001'),('vWW_DcHiYSrKZOkkIfEfcQ','row-2.jpg','','root/import/thingy-templates/images/row-2.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-2.jpg row-2.jpg root import thingy templates images row 2.jpg','000001000001000046000005000002'),('_bPYzRA87NTAUIKlfrJMHg','row-1.jpg','','root/import/thingy-templates/images/row-1.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'row-1.jpg row-1.jpg root import thingy templates images row 1.jpg','000001000001000046000005000003'),('nJjZHRwdDs5MAZYsAyioHw','title-bg.jpg','','root/import/thingy-templates/images/title-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'title-bg.jpg title-bg.jpg root import thingy templates images title bg.jpg','000001000001000046000005000004'),('8hxfkrJPeFVRWF5piCNJ1A','field-bg.jpg','','root/import/thingy-templates/images/field-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'field-bg.jpg field-bg.jpg root import thingy templates images field bg.jpg','000001000001000046000005000005'),('Osx7WN52iIKHZFT4vqUBHQ','search-btn.gif','','root/import/thingy-templates/images/search-btn.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'search-btn.gif search-btn.gif root import thingy templates images search btn.gif','000001000001000046000005000006'),('oWff8fGzRdHPyq5VNREe9Q','top-bg.jpg','','root/import/thingy-templates/images/top-bg.jpg',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'top-bg.jpg top-bg.jpg root import thingy templates images top bg.jpg','000001000001000046000005000007'),('uqbkvb1b9443VvfkyRz95w','save-button.gif','','root/import/thingy-templates/images/save-button.gif',1209509433,1209509433,'3','7','12','WebGUI::Asset::File::Image',1,'save-button.gif save-button.gif root import thingy templates images save button.gif','000001000001000046000005000008'),('8YiMkcz32xalkAn3WBLpag','go-btn.gif','','root/import/thingy-templates/images/go-btn.gif',1210181860,1210181860,'3','7','12','WebGUI::Asset::File::Image',1,'go-btn.gif go-btn.gif root import thingy templates images go btn.gif','000001000001000046000005000009'),('3n3H85BsdeRQ0I08WmvlOg','thingy.css','','root/import/thingy-templates/thingy.css',1212091492,1245107956,'3','7','12','WebGUI::Asset::Snippet',0,'thingy.css thingy.css root import thingy templates thingy.css wgThingy margin:5px wgThingy styleButton color:black margin:0px 5px display:block float:left wgThingy spacerOne padding-left:15px wgThingy rowOne wgThingy tr.rowOne td background EEEEEE margin:1px border:solid CDCDCD 1px color:#000 padding:2px wgThingy rowTwo wgThingy tr.rowTwo td background DBDBDB margin:1px border:solid DDDDDD 1px color:#000 padding:2px wgThingsWrapper img display:block vertical-align:middle float:left wgThingsWrapper label font-weight:bold padding-left:15px wgThingy h2.title background 000 height:42px color:white font-size:18px font-weight:bold letter-spacing:1px line-height:42px padding-left:15px margin-bottom:0px wgThingy span.smaller font-size:13px color:white wgThingy controls line-height:35px height:35px background f1f1f1 margin-top:0px margin-bottom:20px padding:0px wgThingy label background:black color:white padding:2px 5px font-family:arial font-size:11px font-weight:bold vertical-align:middle wgThingy label a color:white searchTable input editThing input background white border:solid 555 1px editThing margin-top:15px thingyList thingyList margin:0px padding:0px thingyList position:relative float:left thingyList goButton:link thingyList goButton:visited padding:2px 25px 2px 2px background F1F1F1 url(^FileUrl(root/import/thingy-templates/images/go-btn.gif no-repeat right line-height:20px border:solid a2a2a2 1px color:#a2a2a2 text-decoration:none font-family:verdana arial font-size:10px font-weight:bold margin-left:20px letter-spacing:0px thingyList goButton:hover background-color:white thingyList things padding:0px margin:0px width:300px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 thingyList things a:hover background-color:white ','000001000001000046000006'),('5m5I7__l40C4hhv4ydqAHQ','thingy-ie.css','','root/import/thingy-templates/thingy-ie.css',1210181698,1216227786,'3','7','12','WebGUI::Asset::Snippet',0,'thingy-ie.css thingy-ie.css root import thingy templates thingy ie.css thingyList things padding:0px margin:0px width:200px z-index:5000 position:absolute top:27px left:20px border:solid a2a2a2 1px border-top-style:none thingyList things a:link thingyList things a:visited display:block background-color:#f1f1f1 border-top:solid a2a2a2 1px border-bottom:solid 727272 1px line-height:12px font-size:10px height:12px padding:2px 5px text-decoration:none font-weight:bold color:#a2a2a2 width:190px thingyList things a:hover background-color:white ','000001000001000046000007'),('2rC4ErZ3c77OJzJm7O5s3w','EMS Badge Listing (default)','','root/import/ems/ems-badge-listing-default',1208721232,1260934195,'3','7','12','WebGUI::Asset::Template',0,'EMS Badge Listing default EMS Badge Listing default root import ems ems badge listing default EMS','000001000001000012000003'),('PsFn7dJt4wMwBa8hiE3hOA','Print Badge (Default)','','root/import/ems/print-badge-default',1208558071,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Print Badge Default Print Badge Default root import ems print badge default EMS/PrintBadge','000001000001000012000004'),('yBwydfooiLvhEFawJb0VTQ','Print Ticket (Default)','','root/import/ems/print-ticket-default',1208629936,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Ticket Default Print Ticket Default root import ems print ticket default EMS/PrintTicket','000001000001000012000005'),('63ix2-hU0FchXGIWkG3tow','Flat Discount (Default)','','root/import/flat-discount-default',1209588387,1273032715,'3','7','12','WebGUI::Asset::Template',0,'Flat Discount Default Flat Discount Default root import flat discount default FlatDiscount','000001000001000038000011'),('gbnRhcWNk1iQe32LFEB5eQ','Shelf','','root/import/shelf2',1210779723,1212086102,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shelf Shelf root import shelf2','000001000001000037'),('1XOJDcg_ITRYwVM-QnIcPw','shelf.css','','root/import/shelf2/shelf.css',1210779441,1219175575,'3','7','12','WebGUI::Asset::Snippet',0,'shelf.css shelf.css root import shelf2 shelf.css wgShelf font-size:12px font-family:arial verdana margin:15px 0px wgShelf h2 background black padding:5px padding-left:15px line-height:32px color:white margin:0px height:32px wgShelf wgShelves background F1F1F1 height:29px padding:3px line-height:29px padding-left:30px wgShelf product margin:15px margin-left:0px text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px width 200px display moz-inline-box Moz display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgShelf product thumbnail display:block text-align:left margin:3px float:left wgShelf product link background e1e1e1 height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block wgShelf product link a:link wgShelf product link a:visited color:#000 display:block wgShelf product link a:hover text-decoration:underline wgShelf product price display:block text-align:right font-size:18px font-weight:bold ','000001000001000037000003'),('C5fPz-Wg85vkYRvCdl-Xqw','UserList','','root/import/userlist',1212160830,1212160830,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'UserList UserList root import userlist','000001000001000049'),('aNmgn0cd6tldmC1FpW4KbA','Shop','','shopping-cart-collateral-items',1213122695,1273032714,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Shop Shop shopping cart collateral items','000001000001000038'),('2q5fxatSFLgIhXaUX-oSvg','bottom-left.jpg','','shopping-cart-collateral-items/bottom-left.jpg',1204149033,1273032714,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-left.jpg bottom-left.jpg shopping cart collateral items bottom left.jpg','000001000001000038000001'),('_d5WTkKjnwct-_Dk7gZHvQ','bottom-right.jpg','','shopping-cart-collateral-items/bottom-right.jpg',1204149033,1273032714,'3','7','3','WebGUI::Asset::File::Image',1,'bottom-right.jpg bottom-right.jpg shopping cart collateral items bottom right.jpg','000001000001000038000002'),('Iz2mUR3jCPKyemwAea4b2g','input_bg.jpg','','shopping-cart-collateral-items/input_bg.jpg',1204149033,1273032714,'3','7','3','WebGUI::Asset::File::Image',1,'input_bg.jpg input_bg.jpg shopping cart collateral items input bg.jpg','000001000001000038000003'),('JU9bjsLRoWj7GVHs__prig','top-left.jpg','','shopping-cart-collateral-items/top-left.jpg',1204149033,1273032714,'3','7','3','WebGUI::Asset::File::Image',1,'top-left.jpg top-left.jpg shopping cart collateral items top left.jpg','000001000001000038000004'),('noOlnjQGexHg8c4bGVUo9g','top-right.jpg','','shopping-cart-collateral-items/top-right.jpg',1204149033,1273032714,'3','7','3','WebGUI::Asset::File::Image',1,'top-right.jpg top-right.jpg shopping cart collateral items top right.jpg','000001000001000038000005'),('aIpCmr9Hi__vgdZnDTz1jw','Cart (Default)','','default-shopping-cart-template',1209921197,1273032715,'3','7','3','WebGUI::Asset::Template',0,'Cart Default Cart Default default shopping cart template Shop/Cart','000001000001000038000006'),('4e-_rNs6mSWedZhQ_V5kJA','shelf-ie.css','','root/import/shelf2/shelf-ie.css',1210779672,1210779672,'3','7','12','WebGUI::Asset::Snippet',0,'shelf-ie.css shelf-ie.css root import shelf2 shelf ie.css wgShelf product margin:15px margin-left:0px float:left text-align:left background-color:#f1f1f1 border:solid e1e1e1 1px min-height:100px min-width:200px width:200px height:100px wgShelf product link background url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg no-repeat top right height:30px padding:3px line-height:24px margin-bottom:5px text-align:left display:block ','000001000001000037000004'),('2gtFt7c0qAFNU3BG_uvNvg','My Purchases (Default)','','shopping-cart-collateral-items/my-purchases-default',1211824430,1273032715,'3','7','3','WebGUI::Asset::Template',0,'My Purchases Default My Purchases Default shopping cart collateral items my purchases default Shop/MyPurchases','000001000001000038000008'),('bPz1yk6Y9uwMDMBcmMsSCg','Email Receipt (Default)','','shopping-cart-collateral-items/email-receipt-default',1211829604,1273032715,'3','7','3','WebGUI::Asset::Template',0,'Email Receipt Default Email Receipt Default shopping cart collateral items email receipt default Shop/EmailReceipt','000001000001000038000009'),('EBlxJpZQ9o-8VBOaGQbChA','MiniCart','','shopping-cart-collateral-items/minicart',1212093746,1273032715,'3','7','3','WebGUI::Asset::Template',0,'MiniCart MiniCart shopping cart collateral items minicart Shop/MiniCart','000001000001000038000014'),('PBtmpl0000000000000053','Subscription code redemption','','subscription_code_redemption',1124395696,1273032715,'3','7','12','WebGUI::Asset::Template',0,'Subscription code redemption Subscription code redemption subscription code redemption Operation/RedeemSubscription','000001000001000038000017'),('6tK47xsaIH-ELw0IBo0uRQ','images','','root/import/shelf2/images',1210777115,1210777115,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import shelf2 images','000001000001000037000001'),('XNd7a_g_cTvJVYrVHcx2Mw','Address (Default)','','shopping-cart-collateral-items/address-default',1212099009,1273032715,'3','7','3','WebGUI::Asset::Template',0,'Address Default Address Default shopping cart collateral items address default Shop/Address','000001000001000038000007'),('_bZJ9LA_KNekZiFPaP2SeQ','shelf-titles.jpg','','root/import/shelf2/images/shelf-titles.jpg',1210777868,1210777868,'3','7','12','WebGUI::Asset::File::Image',1,'shelf-titles.jpg shelf-titles.jpg root import shelf2 images shelf titles.jpg','000001000001000037000001000001'),('nFen0xjkZn8WkpM93C9ceQ','Shelf (Default)','','root/import/shelf-default',1210779326,1247864696,'3','7','12','WebGUI::Asset::Template',0,'Shelf Default Shelf Default root import shelf default Shelf','000001000001000037000002'),('mTOiwwk3q4k9g5-XykXhPA','Documentation','With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation. ','documentation',1215717999,1218149728,'3','7','3','WebGUI::Asset::Wobject::Layout',1,'Documentation Documentation documentation With any large system having the right documentation to get you started is mandatory The good news is that WebGUI has abundant documentation','000001000002000005'),('j_1qEqM6iLfQLiR6VKy0aA','Free Documentation','There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction. \n\n\n\nPrimer - A download','documentation/free-documentation',1215718151,1215718151,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Free Documentation Free Documentation documentation free documentation There are hundreds of pages of free documentation available for WebGUI provided by both Plain Black and the community at large The following list is by no means comprehensive but it should get you started in the right direction Primer A downloadable PDF that shows you the basics of publishing content in WebGUI Wiki Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials Worldwide A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI API Docs The documentation of all of the WebGUI source code Template Help The documentation of all of WebGUI\'s template variables ','000001000002000005000001'),('o_pq_e4vRyhMOKFzs61eag','book-covers.jpg','','documentation/book-covers.jpg',1215714957,1215714957,'3','7','3','WebGUI::Asset::File::Image',1,'book-covers.jpg book-covers.jpg documentation book covers.jpg','000001000002000005000002'),('diZvW4bSgZWwyyGP3qXi1g','Commercial Documentation','Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of t','documentation/commercial-documentation',1215717972,1215717972,'3','7','3','WebGUI::Asset::Wobject::Article',1,'Commercial Documentation Commercial Documentation documentation commercial documentation Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI Both black and white and full color editions of these books are available and they are updated frequently to keep you on top of the latest WebGUI features Visit the book store today to stock your WebGUI library Other than hands on training there is no better way to hone your WebGUI skills No matter what your need Plain Black has created a book that\'s right for you and is creating new books each year ','000001000002000005000003'),('PBEmsBadgeTemplate0000','Default EMS Badge Template','','default_emsbadge',1221077977,1257311887,'3','7','4','WebGUI::Asset::Template',0,'Default EMS Badge Template Default EMS Badge Template default emsbadge EMSBadge','000001000001000012000006'),('9A-mg2gwWmaYi9o_1C7ArQ','dashboard','','root/import/projectmanager/dashboard',1147642478,1222803338,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'dashboard dashboard root import projectmanager dashboard','000001000001000031000001'),('yD1SMHelczihzjEmx6eXBA','editTask','','root/import/projectmanager/edittask',1147642478,1222803342,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'editTask editTask root import projectmanager edittask','000001000001000031000002'),('pV7GnZdpjR3XpZaSINIoeg','gantt','','root/import/projectmanager/gantt',1147642478,1222803347,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'gantt gantt root import projectmanager gantt','000001000001000031000003'),('71e17KeduiXgODLMlUxiow','project','','root/import/projectmanager/project',1147642479,1222803352,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'project project root import projectmanager project','000001000001000031000004'),('vTymIDYL2YqEh6PV50F7ew','manager','','root/import/timetracking/manager',1147642482,1222803302,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'manager manager root import timetracking manager','000001000001000048000001'),('lo1ac3BsoJx3ijGQ3gR-bQ','row','','root/import/timetracking/row',1147642482,1222803309,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'row row root import timetracking row','000001000001000048000002'),('huASapWvFDzqwOSbcN-JFQ','user','','root/import/timetracking/user',1147642483,1222803313,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'user user root import timetracking user','000001000001000048000003'),('xSmREZO3GNzK3M5PaueOOQ','LDAP/Account','','root/import/auth/ldap/account',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Account LDAP/Account root import auth ldap account','000001000001000005000001'),('0bx-xoL8TSXXubFuqKAoVQ','LDAP/Create','','root/import/auth/ldap/create',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Create LDAP/Create root import auth ldap create','000001000001000005000002'),('taX2UYkFF21ALpFZY2rhMw','LDAP/Login','','root/import/auth/ldap/login',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Login LDAP/Login root import auth ldap login','000001000001000005000003'),('K0q_N885Httqev1VCqUWxg','WebGUI/Account','','root/import/auth/webgui/account',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Account WebGUI/Account root import auth webgui account','000001000001000005000004'),('fq1ZkYhH24R5tb96kuT10Q','WebGUI/Create','','root/import/auth/webgui/create',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Create WebGUI/Create root import auth webgui create','000001000001000005000005'),('oHk7fAFhEEkB7dHzi0QOQA','WebGUI/Expired','','root/import/auth/webgui/expired',1147642466,1269401468,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Expired WebGUI/Expired root import auth webgui expired','000001000001000005000006'),('9M-lrlPQWeeNWfvnDnK_Xg','WebGUI/Login','','root/import/auth/webgui/login',1147642466,1269401469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Login WebGUI/Login root import auth webgui login','000001000001000005000007'),('_gBYAdTcbkiyamnqi2Xskg','WebGUI/Recovery','','root/import/auth/webgui/recovery',1147642466,1269401469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Recovery WebGUI/Recovery root import auth webgui recovery','000001000001000005000008'),('tBL7BWiQRZFed2Y-Zjo9tQ','AdminToggle','','root/import/macro/admintoggle',1147642471,1222803200,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'AdminToggle AdminToggle root import macro admintoggle','000001000001000021000001'),('GdkQpvjRtJqtzOUbwIIQRA','a_account','','root/import/macro/a_account',1147642471,1222803205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'a_account a_account root import macro a account','000001000001000021000002'),('tnc5iYyynX2hfdEs9D3P8w','EditableToggle','','root/import/macro/editabletoggle',1147642472,1222803213,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EditableToggle EditableToggle root import macro editabletoggle','000001000001000021000003'),('vgXdBcFTqU7h4wBG1ewdBw','File','','root/import/macro/file',1147642472,1222803217,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'File File root import macro file','000001000001000021000004'),('hcFlqnXlsmC1ujN6Id0F0A','GroupAdd','','root/import/macro/groupadd',1147642473,1222803234,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupAdd GroupAdd root import macro groupadd','000001000001000021000005'),('eRJR52fvlaxfetv3DQkQYw','GroupDelete','','root/import/macro/groupdelete',1147642473,1222803238,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'GroupDelete GroupDelete root import macro groupdelete','000001000001000021000006'),('5HIDHq5lAWHV5gpYGS0zLg','H_homeLink','','root/import/macro/h_homelink',1147642473,1222803244,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'H_homeLink H_homeLink root import macro h homelink','000001000001000021000007'),('rYEFwXXo0tkGhQTcbDibvg','LoginToggle','','root/import/macro/logintoggle',1147642473,1222803249,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LoginToggle LoginToggle root import macro logintoggle','000001000001000021000008'),('V3l5S5TtI7wMm1WpIMhvOA','L_loginBox','','root/import/macro/l_loginbox',1147642473,1222803253,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'L_loginBox L_loginBox root import macro l loginbox','000001000001000021000009'),('nqNbSUAhk9Vd1zda2SCz9A','RandomThread','','root/import/macro/randomthread',1147642474,1222803258,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'RandomThread RandomThread root import macro randomthread','000001000001000021000010'),('y8XkRdxIperLKkJ3bL5sSQ','r_printable','','root/import/macro/r_printable',1147642474,1222803264,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'r_printable r_printable root import macro r printable','000001000001000021000011'),('UserListTmpl0000000002','UserList with search field selection','','root/import/userlist/userlist-with-search-field-selection',1212000800,1228125752,'3','7','12','WebGUI::Asset::Template',0,'UserList with search field selection UserList with search field selection root import userlist userlist with search field selection UserList','000001000001000049000002'),('UserListTmpl0000000003','UserList with multiple search keywords','','root/import/userlist/userlist-with-multiple-search-keywords',1212001437,1228125758,'3','7','12','WebGUI::Asset::Template',0,'UserList with multiple search keywords UserList with multiple search keywords root import userlist userlist with multiple search keywords UserList','000001000001000049000003'),('UserListTmpl0000000001','Default UserList','','root/import/userlist/default-userlist',1212159641,1228125743,'3','7','12','WebGUI::Asset::Template',0,'Default UserList Default UserList root import userlist default userlist UserList','000001000001000049000001'),('BMybD3cEnmXVk2wQ_qEsRQ','Badge Builder (Default)','','root/import/ems/badge-builder-default',1208530113,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Badge Builder Default Badge Builder Default root import ems badge builder default EMS/BadgeBuilder','000001000001000012000001'),('OOyMH33plAy6oCj_QWrxtg','Lookup Registrant (Default)','','root/import/ems/lookup-registrant-default',1207951375,1257311886,'3','7','12','WebGUI::Asset::Template',0,'Lookup Registrant Default Lookup Registrant Default root import ems lookup registrant default EMS/LookupRegistrant','000001000001000012000002'),('stevecoolmenu000000001','Site Nav','','webgui7/style3/hierarchical-top-nav',1147642505,1224116942,'3','7','12','WebGUI::Asset::Template',0,'Site Nav Site Nav webgui7 style3 hierarchical top nav Navigation','000001000001000053000001'),('7-0-style0000000000051','css03.css','','style3/css03.css',1147642505,1224117026,'3','7','12','WebGUI::Asset::Snippet',0,'css03.css css03.css style3 css03.css body html margin:0px background-color:#b53018 padding:0px body a color:#EE963E;font-weight:bold letter-spacing:1px font-size:8pt main width:98 min-width:790px margin:0px padding:0px padding-top:20px padding-bottom:20px position:relative header background url(\'^FileUrl(style3/header_bg.jpg repeat-x width:100 margin:0px height:115px headerTitle background url(\'^FileUrl(style3/header_left.jpg no-repeat left top height:100 width:100 headerRight background url(\'^FileUrl(style3/header_right.jpg no-repeat right top width:100 height:100 text-align:right position:relative headerRight title position:absolute top:25px left:20px font-family:arial text-align:left title h1 text-transform:uppercase margin-bottom:0px font-weight:normal font-size:26pt margin-top:0px color:white title h1 a color:white text-decoration:none font-size 26pt font-weight normal title h2 margin:0px font-size:12pt color:#bebebe padding-left:20px title img z-index:5 login position:absolute font-size:8pt top:45 right:150px color:white z-index:6 font-family:arial login a color:white font-weight normal letter-spacing 0px loginBox font-size:8pt margin:0px display:inline loginBox input font-size:8pt mainBody width:100 margin:0px height:500px background fff position:relative z-index:0 main > mainBody height:auto min-height:500px contentArea z-index:2 position:relative padding-top:10px padding-left:10px padding-right:20px padding-bottom:20px moz-box-sizing:border-box font-family:verdana font-size:9pt min-height:500px html main mainBody contentArea height:1 topCorner width:100 height:214px position:absolute top:0px left:0px background url(^FileUrl(/style3/main_top.jpg no-repeat z-index:1 bottomCorner width:100 height:211px position:absolute bottom:59px right:0px background url(\'^FileUrl(style3/main_bottom.jpg no-repeat right z-index:1 html bottomCorner bottom:58px footer width:100 margin:0px background:#000 url(\'^FileUrl(style3/footer_right.jpg no-repeat right top height:57px border-top:solid B53018 2px text-align:right position:relative z-index:0 footer copyright color:#3b3b3b font-family:arial position:absolute top:20px left:30px font-size:8pt main yui-skin-sam font-family:verdana font-size:9pt font-weight:normal ','000001000001000053000002'),('jVKLVakT_iA2010_oEuAwg','Style3 Coolmenu','','department_nav',1224116526,1224116526,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'Style3 Coolmenu Style3 Coolmenu department nav','000001000001000053000024'),('UL-ItI4L1Z6-WSuhuXVvsQ','DataTable','','root/import/datatable',1225139673,1225139673,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'DataTable DataTable root import datatable','000001000001000011'),('3rjnBVJRO6ZSkxlFkYh_ug','Default DataTable Template (YUI)','','root/import/datatable/default-datatable-template-yui',1225139643,1233861835,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template YUI Default DataTable Template YUI root import datatable default datatable template yui DataTable','000001000001000011000001'),('TuYPpHx7TUyk08639Pc8Bg','Default DataTable Template (HTML)','','root/import/datatable/default-datatable-template-html',1225139643,1233861621,'3','7','3','WebGUI::Asset::Template',0,'Default DataTable Template HTML Default DataTable Template HTML root import datatable default datatable template html DataTable','000001000001000011000002'),('IZkrow_zwvbf4FCH-taVTQ','Inbox','','root/import/account/inbox',1226011853,1226011853,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Inbox Inbox root import account inbox','000001000001000002000002'),('K0YjxqOqr7RupSo6sIdcAg','Friends','','root/import/account/friends',1227074310,1227074310,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friends Friends root import account friends','000001000001000002000003'),('_ilRXNR3s8F2vGJ_k9ePcg','User','','root/import/account/user',1226643205,1226643205,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'User User root import account user','000001000001000002000004'),('AOjPG2NHgfL9Cq6dDJ7mew','Shop','','root/import/account/shop',1226659753,1236960881,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Shop Shop root import account shop','000001000001000002000005'),('qaVcU0FFzzraMX_bzELqzw','Contributions','','root/import/account/contributions',1227074362,1227074362,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Contributions Contributions root import account contributions','000001000001000002000006'),('matrixtmpl000000000004','Matrix Default Edit Listing','','default-matrix-edit-listing-template',1133743239,1228834590,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Edit Listing Matrix Default Edit Listing default matrix edit listing template Matrix/EditListing','000001000001000022000004'),('kJf77eCr9GAMiEzWrzsBTA','matrix-ie.css','','new-matrix/matrix-ie.css',1229639255,1229639255,'3','7','12','WebGUI::Asset::Snippet',0,'matrix-ie.css matrix-ie.css new matrix matrix ie.css matrixLeft buttons span matrixRight buttons span padding:0px 0px 0px 0px matrixLeft buttons button matrixRight buttons a top:-3px left:-2px height:22px matrixRight buttons a color:black text-decoration:none padding:1px 3px ','000001000001000022000007'),('4LQT4-bGW4FkiEQLSY5gvQ','show-hide.js','','new-matrix/show-hide.js',1232400287,1232400287,'3','7','12','WebGUI::Asset::Snippet',0,'show-hide.js show-hide.js new matrix show hide.js function showHide(theLink,theId var theId = document.getElementById(theId var theLink = document.getElementById(theLink if(theId.style.display == block theId.style.display = none theLink.innerHTML = Send Creator a Message theLink.className = showLink else theId.style.display = block theLink.innerHTML = Hide theLink.className = hideLink ','000001000001000022000008'),('Vch1Ww7G_JpBhOhXX07RDg','matrx-nav','','new-matrix/matrix-nav',1232664082,1235705952,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'matrx-nav matrix-nav new matrix matrix nav','000001000001000022000010'),('PBtmpl0000000000000063','Default Overview Report','','root/import/survey/default-overview-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Overview Report Default Overview Report root import survey default overview report Survey/Overview','000001000001000044000001'),('HW-sPoDDZR8wBZ0YgFgPtg','images','','root/import/account/images',1227634350,1227634350,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'images images root import account images','000001000001000002000009'),('hBpisL-_URyZnh9clR5ohA','no_photo.gif','','root/import/account/images/no_photo.gif',1227634417,1227634417,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo.gif no_photo.gif root import account images no photo.gif','000001000001000002000009000001'),('FOBV6KkifreXa4GmEAUU4A','no_photo_sm.gif','','root/import/account/images/no_photo_sm.gif',1227634447,1227634447,'3','7','12','WebGUI::Asset::File::Image',1,'no_photo_sm.gif no_photo_sm.gif root import account images no photo sm.gif','000001000001000002000009000002'),('PBtmpl0000000000000061','Default Survey','','root/import/survey/default-survey',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Default Survey root import survey default survey Survey','000001000001000044000003'),('S2_LsvVa95OSqc66ITAoig','EMS Schedule Listing (default)','','root/import/ems/ems-schedule-listing-default2',1242730712,1257311887,'3','7','12','WebGUI::Asset::Template',0,'EMS Schedule Listing default EMS Schedule Listing default root import ems ems schedule listing default2 EMS/Schedule','000001000001000012000007'),('VyCINX2KixKYr2pzQGX9Mg','layout.css','','layout.css',1246968584,1254881103,'3','7','12','WebGUI::Asset::Snippet',0,'layout.css layout.css layout.css styles for the layout asset wg-left float left wg-right float right wg-clear clear both sidebyside wg-content-position oneovertwo wg-content-position width 49 oneovertwo wg-top width 100 oneoverthree wg-first-column oneoverthree wg-second-column oneoverthree wg-third-column threeColumns wg-first-column threeColumns wg-second-column threeColumns wg-third-column width 32 oneoverthree wg-first-column threeColumns wg-first-column margin-right:2 rightcolumn wg-first-column width 65 rightcolumn wg-second-column width 33 ','000001000001000019000006'),('XdlKhCDvArs40uqBhvzR3w','Article With Pagination','','article-with-pagination',1254881103,1259133275,'3','7','12','WebGUI::Asset::Template',0,'Article With Pagination Article With Pagination article with pagination Article','000001000001000057'),('VCFhB9WOsDsH2Apj3c6DpQ','Three Columns','','three-columns',1254881103,1259133276,'3','7','12','WebGUI::Asset::Template',0,'Three Columns Three Columns three columns Layout','000001000001000058'),('jmlI9IK-lV8n2WMYmmPhAA','Ad Sku','','root/import/ad-sku',1238106173,1238106173,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Ad Sku Ad Sku root import ad sku','000001000001000001'),('AldPGu0u-jm_5xK13atCSQ','Default Purchase Ad Sku Template','','root/import/ad-sku/default-purchase-ad-sku-template',1238106805,1251419124,'3','7','12','WebGUI::Asset::Template',0,'Default Purchase Ad Sku Template Default Purchase Ad Sku Template root import ad sku default purchase ad sku template AdSku/Purchase','000001000001000001000001'),('ohjyzab5i-yW6GOWTeDUHg','Default Manage Ad Sku Template','','root/import/ad-sku/default-manage-ad-sku-template',1238106805,1251425384,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Ad Sku Template Default Manage Ad Sku Template root import ad sku default manage ad sku template AdSku/Manage','000001000001000001000002'),('PBtmpl0000000000000015','Default WebGUI Welcome Message Template','','root/import/auth/webgui/create/default-webgui-welcome-message-template',1237647040,1269401468,'3','7','12','WebGUI::Asset::Template',0,'Default WebGUI Welcome Message Template Default WebGUI Welcome Message Template root import auth webgui create default webgui welcome message template Auth/WebGUI/Welcome','000001000001000005000005000002'),('PBtmpl0000000000000016','Default WebGUI Account Activation Template','','root/import/auth/webgui/create/default-webgui-account-activation-template',1237407798,1269401468,'3','7','3','WebGUI::Asset::Template',0,'Default WebGUI Account Activation Template Default WebGUI Account Activation Template root import auth webgui create default webgui account activation template Auth/WebGUI/Activation','000001000001000005000005000003'),('wrq7hMxb1ewQqZ46xmd8Gg','equal-cols.js','','matrix/equal-cols.js',1235706620,1235706620,'3','7','12','WebGUI::Asset::Snippet',0,'equal-cols.js equal-cols.js matrix equal cols.js function equalCol var colOne = document.getElementById(\'compareForm var colTwo = document.getElementById(\'matrixRight var colOneH = colOne.offsetHeight var colTwoH = colTwo.offsetHeight alert(colOneH + + colTwoH colOne.style.overflow = scroll colOne.style.height = colTwoH 150 + px ','000001000001000022000011'),('matrixtmpl000000000007','Matrix Default Screenshots Config','','matrix-default-screenshots-config',1236594030,1242660972,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Config Matrix Default Screenshots Config matrix default screenshots config Matrix/ScreenshotsConfig','000001000001000022000012'),('matrixtmpl000000000006','Matrix Default Screenshots','','matrix-default-screenshots',1236889702,1236889702,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Screenshots Matrix Default Screenshots matrix default screenshots Matrix/Screenshots','000001000001000022000013'),('RSAMkc6WQmfRE3TOr1_3Mw','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses',1234828062,1250243000,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses','000001000001000044000011'),('ExpireIncResptmpl00001','ExpireIncompleteSurveyResponses','','root/import/expireincompletesurveyresponses/expireincompletesurveyresponses',1236752721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'ExpireIncompleteSurveyResponses ExpireIncompleteSurveyResponses root import expireincompletesurveyresponses expireincompletesurveyresponses ExpireIncompleteSurveyResponses','000001000001000044000011000001'),('NBVSVNLp9X_bV7WrCprtCA','Annotate Image','','image3',1237842096,1237842096,'3','7','12','WebGUI::Asset::Template',0,'Annotate Image Annotate Image image3 ImageAsset','000001000001000017000002'),('qsG6B24a0SC5KrhQjmdZBw','survey.css','','survey.css',1233860274,1250243000,'3','7','12','WebGUI::Asset::Snippet',0,'survey.css survey.css survey.css body margin 0 background-repeat repeat-y background-position 0px 0px survey-header width 80 height 20px margin-left 80px survey margin-left 80px width 85 div.dateanswer overflow auto div.slider-bg position relative background:url(/extras/wobject/Survey/bg-fader-500.gif 5px 0 no-repeat height:68px width:529px div.slider-thumb cursor:default position absolute top 30px left 4px div.slider-min-thumb cursor:default position absolute top 4px div.slider-max-thumb cursor:default position absolute top 4px headertitle display none headertext display none questions display none input.mcbutton font-size 10px font-weight bold text-decoration none background-color CCCCCC background-repeat repeat-x text-align center display block margin 0.5em padding 8em min-width 60px font-family Verdana Arial Helvetica sans-serif color 000000 background-image url(/extras/wobject/Survey/gradient-glossy.png input.mcbutton:hover background-color B6D2F1 font-family Verdana Arial Helvetica sans-serif font-size 10px color 000000 input.mcbutton-selected background-color 172D9D background-repeat repeat-x color FFFFFF font-family Verdana Arial Helvetica sans-serif font-size 10px margin 0.5em padding 8em width 60px text-align center display block font-weight bold background-image url(/extras/wobject/Survey/gradient-glossy.png background-position 0px 0px By default the marker for invalid required fields is a red survey-invalid-marker color FF0000 survey font-family Verdana Arial Helvetica sans-serif font-size 10px border 3px solid 1e1e1e survey survey-header background-color cfcfcf padding-top 1px survey headertitle padding-left 5px survey progress position relative top 26px right 5px text-align right font-style italic survey progress:before content Progress survey headertext border-bottom 2px solid 1e1e1e padding 5px position relative top 20px survey questions position relative top 20px survey question background-color dfdfdf padding 10px 5px 10px 5px survey question p:before content Q survey scale:before content A survey submitbutton margin-left 5px restartMessage color FF0000 chart float left width 200px height 113px ','000001000001000044000010'),('6uvSLY-ak_w4p_wS8q33cA','Carousel','','root/import/carousel',1239213092,1239213092,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Carousel Carousel root import carousel','000001000001000007'),('CarouselTmpl0000000001','Default Carousel','','root/import/carousel/carousel-default',1239290719,1254881103,'3','7','12','WebGUI::Asset::Template',0,'Default Carousel Default Carousel root import carousel carousel default Carousel','000001000001000007000001'),('CarouselTmpl0000000002','Carousel hidden textareas','','root/import/carousel/carousel-hidden-textareas',1238878995,1239475937,'3','7','12','WebGUI::Asset::Template',0,'Carousel hidden textareas Carousel hidden textareas root import carousel carousel hidden textareas Carousel','000001000001000007000002'),('GaBAW-2iVhLMJaZQzVLE5A','ThingyRecord Templates','','root/import/thingyrecord-templates',1240103565,1240103565,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'ThingyRecord Templates ThingyRecord Templates root import thingyrecord templates','000001000001000047'),('TKmhv8boP3TD2xwSwUBq0g','Default ThingyRecord View','','home/thinyrecord-templates/default-thingyrecord-view',1240103436,1250243000,'3','7','3','WebGUI::Asset::Template',0,'Default ThingyRecord View Default ThingyRecord View home thinyrecord templates default thingyrecord view ThingyRecord/View','000001000001000047000001'),('fowHfgOkJtAxdst7rugTog','Story Manager','','root/import/storymanager',1236184911,1252595993,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Story Manager Story Manager root import storymanager','000001000001000042'),('3QpYtHrq_jmAk1FNutQM5A','Story Template','','root/import/storymanager/storytemplate',1239237827,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Story Template root import storymanager storytemplate Story','000001000001000042000001'),('yxD5ka7XHebPLD-LXBwJqw','StoryArchive','','root/import/storymanager/storyarchive',1239918573,1253635396,'3','7','4','WebGUI::Asset::Template',0,'StoryArchive StoryArchive root import storymanager storyarchive StoryArchive','000001000001000042000002'),('A16v-YjWAShXWvSACsraeg','StoryTopic','','root/import/storymanager/storytopic',1239918710,1263962529,'3','7','4','WebGUI::Asset::Template',0,'StoryTopic StoryTopic root import storymanager storytopic StoryTopic','000001000001000042000005'),('0EAJ9EYb9ap2XwfrcXfdLQ','Story Archive Asset List','','root/import/storymanager/keywordlist',1240262820,1250243000,'3','7','4','WebGUI::Asset::Template',0,'Story Archive Asset List Story Archive Asset List root import storymanager keywordlist StoryArchive/KeywordList','000001000001000042000006'),('9j0_Z1j3Jd0QBbY2akb6qw','Default Map View','','home/map/map-templates/default-map-view',1238053232,1257311887,'3','7','3','WebGUI::Asset::Template',0,'Default Map View Default Map View home map map templates default map view Map/View','000001000001000020000001'),('oHh0UqAJeY7u2n--WD-BAA','Default Edit Map Point','','home/map/map-templates/default-edit-map-point',1238040667,1271820952,'3','7','3','WebGUI::Asset::Template',0,'Default Edit Map Point Default Edit Map Point home map map templates default edit map point MapPoint/Edit','000001000001000020000002'),('u9vfx33XDk5la1-QC5FK7g','Default Map Point View','','home/map/map-templates/default-map-point-view',1238048383,1271820953,'3','7','3','WebGUI::Asset::Template',0,'Default Map Point View Default Map Point View home map map templates default map point view MapPoint/View','000001000001000020000003'),('kwTL1SWCk0GlpiJ5zAAEPQ','surveyedit.css','','root/import/survey/surveyedit.css',1244488512,1250243000,'3','7','12','WebGUI::Asset::Snippet',0,'surveyedit.css surveyedit.css root import survey surveyedit.css editor_container visibility hidden z-index 100 loading-mask position absolute left 0 top 0 width 100 height 100 z-index 20000 background-color white opacity:0.6 filter:alpha(opacity=60 loading position absolute left 50 top 50 padding 2px z-index 20001 height auto margin 35px 0 0 30px loading loading-indicator background url(^Extras(\"wobject/Survey/rel_interstitial_loading.gif no-repeat color 555 font bold 13px tahoma,arial,helvetica padding 18px 80px margin 0 text-align center height auto z-index 20002 div.testarea width 200px height 100px z-index 999 border 1px solid gray background f7f7f7 position absolute top 5 left:5 div.trashcan border 1px solid gray width 175px height 50px div.editarea margin-top:40px padding:10px float:left border 1px solid gray div.editquestion padding:10px float:left div.editanswer padding:10px float:left submitbutton padding:20px div.entry padding-bottom:10px padding-left:10px ul.draglist list-style none margin:0 padding:0 ul.draglist li margin 1px ul.questionList position relative background f7f7f7 border 1px solid gray list-style none margin:0 padding:0 min-height 40px li.section background-color CCCCFF border:1px solid 7EA6B2 cursor move min-height 10px li.question background-color D1E6EC border:1px solid 7EA6B2 cursor move padding-left:10px min-height 10px li.answer background-color F1FFB8 border:1px solid 7EA6B2 cursor move padding-left:15px min-height 10px sections-panel li.selected background-image url(^Extras(\"toolbar/bullet/moveRight.gif background-position:99 center background-repeat no-repeat font-weight:bold goto-yui-ac width:15em margin-top:0.5em wGwarning background-color:#FF6666 border:1px solid red margin:5px padding:10px warning padding 5px sections-panel bd overflow auto background-color:#fff padding:10px buttons height 30px sections-panel_c yui-resize yui-resize-handle-r right 6px make room for the scroll-bars sections-panel div.ft font-size 100 ','000001000001000044000014'),('YP9WaMPJHvCJl-YwrLVcPw','Progress Bar','','admin_progress_bar',1245376837,1245376837,'3','7','12','WebGUI::Asset::Template',0,'Progress Bar Progress Bar admin progress bar AdminConsole/ProgressBar','000001000001000029'),('i5kt5aodVs_oepNEkE7Okw','poll.css','','poll.css',1242312883,1242312883,'3','7','12','WebGUI::Asset::Snippet',0,'poll.css poll.css poll.css styles for the poll asset pollColor background-color:#808080 pollOptions pollSubmit border:0 margin:0 padding:0 ','000001000001000027000002'),('uCn31PzislTZlgt_79j7cQ','style.css','','css/style.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'style.css style.css css style.css fail safe topWrapper font:82.5%/1.3 helvetica,arial,sans-serif width:98 overflow:hidden margin:0 auto 2em nav float:left width:20 margin:1em 0 2em nav menu list-style:none margin:0 padding:0 contentArea float:right width:77 margin:1em 0 2em padding:5px 1 border:1px solid ccc adminControls margin:1em 0 padding:1em 0 0 border-top:1px dotted ccc ','000001000001000043000006'),('FJbUTvZ2nUTn65LpW6gjsA','Profile Account Layout','','root/import/account/profile/profile-account-layout',1227070381,1256092369,'3','7','12','WebGUI::Asset::Template',0,'Profile Account Layout Profile Account Layout root import account profile profile account layout Account/Layout','000001000001000002000001000001'),('75CmQgpcCSkdsL-oawdn3Q','Default Edit Profile Template','','root/import/account/profile/default-edit-profile-template',1227052575,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Edit Profile Template Default Edit Profile Template root import account profile default edit profile template Account/Profile/Edit','000001000001000002000001000002'),('2CS-BErrjMmESOtGT90qOg','Default View Profile Template','','root/import/account/profile/default-view-profile-template',1227070888,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Profile Template Default View Profile Template root import account profile default view profile template Account/Profile/View','000001000001000002000001000003'),('MBmWlA_YEA2I6D29OMGtRg','Default Profile Error Template','','root/import/account/profile/default-profile-error-template',1226542675,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Profile Error Template Default Profile Error Template root import account profile default profile error template Account/Profile/Error','000001000001000002000001000004'),('gfZOwaTWYjbSoVaQtHBBEw','Inbox Account Layout','','root/import/account/inbox-account-layout',1226974679,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Inbox Account Layout Inbox Account Layout root import account inbox account layout Account/Layout','000001000001000002000002000001'),('c8xrwVuu5QE0XtF9DiVzLw','Default Inbox View Template','','root/import/account/inbox/default-inbox-view-template',1226894351,1273032723,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Template Default Inbox View Template root import account inbox default inbox view template Account/Inbox/View','000001000001000002000002000002'),('0n4HtbXaWa_XJHkFjetnLQ','Default Inbox View Message Template','','root/import/account/inbox/default-inbox-view-message-template',1226894994,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox View Message Template Default Inbox View Message Template root import account inbox default inbox view message template Account/Inbox/ViewMessage','000001000001000002000002000003'),('ErEzulFiEKDkaCDVmxUavw','Default Inbox Error Template','','root/import/account/inbox/default-inbox-error-template',1226895484,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Error Template Default Inbox Error Template root import account inbox default inbox error template Account/Inbox/Error','000001000001000002000002000004'),('6uQEULvXFgCYlRWnYzZsuA','Default Inbox Send Message Template','','root/import/account/inbox/default-inbox-send-message-template',1226896682,1279073450,'3','7','12','WebGUI::Asset::Template',0,'Default Inbox Send Message Template Default Inbox Send Message Template root import account inbox default inbox send message template Account/Inbox/SendMessage','000001000001000002000002000005'),('DUoxlTBXhVS-Zl3CFDpt9g','Default Message Confirm Template','','root/import/account/inbox/default-message-confirm-template',1226896802,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Message Confirm Template Default Message Confirm Template root import account inbox default message confirm template Account/Inbox/Confirm','000001000001000002000002000006'),('1Q4Je3hKCJzeo0ZBB5YB8g','Default Manage Invitations Template','','root/import/account/inbox/default-manage-invitations-template',1226898445,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Manage Invitations Template Default Manage Invitations Template root import account inbox default manage invitations template Account/Inbox/ManageInvitations','000001000001000002000002000007'),('5A8Hd9zXvByTDy4x-H28qw','Default Invitation Confirmation Template','','root/import/account/inbox/default-invitation-confirmation-template',1226899462,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invitation Confirmation Template Default Invitation Confirmation Template root import account inbox default invitation confirmation template Account/Inbox/Confirm','000001000001000002000002000008'),('VBkY05f-E3WJS50WpdKd1Q','Default View Invitation Template','','root/import/account/inbox/default-view-invitation-template',1226899241,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default View Invitation Template Default View Invitation Template root import account inbox default view invitation template Account/Inbox/ViewInvitation','000001000001000002000002000009'),('XgcsoDrbC0duVla7N7JAdw','Default Invite User Email Template','','root/import/account/inbox/default-invite-user-email-template',1226973330,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Email Template Default Invite User Email Template root import account inbox default invite user email template Account/Inbox/InviteUserMessage','000001000001000002000002000010'),('cR0UFm7I1qUI2Wbpj--08Q','Default Invite User Form Template','','root/import/account/inbox/default-invite-user-form-template',1226964738,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Form Template Default Invite User Form Template root import account inbox default invite user form template Account/Inbox/InviteUser','000001000001000002000002000011'),('SVIhz68689hwUGgcDM-gWw','Default Invite User Confirm Template','','root/import/account/inbox/default-invite-user-confirm-template',1226973314,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Invite User Confirm Template Default Invite User Confirm Template root import account inbox default invite user confirm template Account/Inbox/InviteUserConfirm','000001000001000002000002000012'),('zrNpGbT3odfIkg6nFSUy8Q','Friends Layout Template','','root/import/account/friends/friends-layout-template',1226994016,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Friends Layout Template Friends Layout Template root import account friends friends layout template Account/Layout','000001000001000002000003000001'),('1Yn_zE_dSiNuaBGNLPbxtw','Default Friends View Template','','root/import/account/friends/default-friends-view-template',1226994422,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends View Template Default Friends View Template root import account friends default friends view template Account/Friends/View','000001000001000002000003000002'),('AZFU33p0jpPJ-E6qLSWZng','Default Friends Edit Template','','root/import/account/friends/default-friends-edit-template',1226994865,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Edit Template Default Friends Edit Template root import account friends default friends edit template Account/Friends/Edit','000001000001000002000003000003'),('AGJBGviWGAwjnwziiPjvDg','Default Send Request Template','','root/import/account/friends/default-send-request-template',1226995497,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Send Request Template Default Send Request Template root import account friends default send request template Account/Friends/SendRequest','000001000001000002000003000004'),('7Ijdd8SW32lVgg2H8R-Aqw','Default Friends Error Template','','root/import/account/friends/default-friends-error-template',1226995714,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Error Template Default Friends Error Template root import account friends default friends error template Account/Friends/Error','000001000001000002000003000005'),('K8F0j_cq_jgo8dvWY_26Ag','Default Friends Confirmation Template','','root/import/account/friends/default-friends-confirmation-template',1226995643,1248549086,'3','7','12','WebGUI::Asset::Template',0,'Default Friends Confirmation Template Default Friends Confirmation Template root import account friends default friends confirmation template Account/Friends/Confirm','000001000001000002000003000006'),('G5V6neXIDiFXN05oL-U3AQ','Default Remove Friends Confirmation Template','','root/import/account/friends/default-remove-friends-confirmation-template',1226995768,1248549087,'3','7','12','WebGUI::Asset::Template',0,'Default Remove Friends Confirmation Template Default Remove Friends Confirmation Template root import account friends default remove friends confirmation template Account/Friends/Confirm','000001000001000002000003000007'),('9ThW278DWLV0-Svf68ljFQ','Account Layout','','root/import/account/user/account-layout',1226647187,1249407460,'3','7','12','WebGUI::Asset::Template',0,'Account Layout Account Layout root import account user account layout Account/Layout','000001000001000002000004000001'),('aUDsJ-vB9RgP-AYvPOy8FQ','Shop Account Layout','','root/import/account/shop/shop-account-layout',1226660439,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Shop Account Layout Shop Account Layout root import account shop shop account layout Account/Layout','000001000001000002000005000001'),('-zxyB-O50W8YnL39Ouoc4Q','Default My Sales Template','','root/import/default-my-sales-template',1236959717,1248563425,'3','7','12','WebGUI::Asset::Template',0,'Default My Sales Template Default My Sales Template root import default my sales template Shop/MySales','000001000001000002000005000002'),('b4n3VyUIsAHyIvT-W-jziA','Contributions Layout','','root/import/account/contributions/contributions-layout',1227074747,1249407461,'3','7','12','WebGUI::Asset::Template',0,'Contributions Layout Contributions Layout root import account contributions contributions layout Account/Layout','000001000001000002000006000001'),('1IzRpX0tgW7iuCfaU2Kk0A','Default Contributions View','','root/import/account/contributions/default-contributions-view',1227079721,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Contributions View Default Contributions View root import account contributions default contributions view Account/Contrib/View','000001000001000002000006000002'),('N716tpSna0iIQTKxS4gTWA','Default Account Layout','','root/import/account/default-account-layout2',1226604666,1253652848,'3','7','12','WebGUI::Asset::Template',0,'Default Account Layout Default Account Layout root import account default account layout2 Account/Layout','000001000001000002000007'),('CalendarMonth000000001','Default Calendar Month','','root/import/calendar-templates/default-calendar-month',1204890713,1279073449,'3','7','12','WebGUI::Asset::Template',0,'Default Calendar Month Default Calendar Month root import calendar templates default calendar month Calendar/Month','000001000001000006000007'),('q5O62aH4pjUXsrQR3Pq4lw','Default Gallery View Album Thumbnails','','root/import/gallery-templates/default-gallery-view-album-thumbnails',1197825772,1277868923,'3','7','3','WebGUI::Asset::Template',0,'Default Gallery View Album Thumbnails Default Gallery View Album Thumbnails root import gallery templates default gallery view album thumbnails GalleryAlbum/ViewThumbnails','000001000001000015000004'),('kaPRSaf8UKiskiGEgJgLAw','images','','root/import/gallery-templates/images',1197330678,1277868924,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'images images root import gallery templates images','000001000001000015000017'),('matrixtmpl000000000001','Matrix Default View','','matrix-default-view-template',1133743238,1269401469,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default View Matrix Default View matrix default view template Matrix','000001000001000022000002'),('matrixtmpl000000000003','Matrix Default Detailed Listing','','matrix-default-detailed-listing',1133743238,1252087641,'3','7','12','WebGUI::Asset::Template',0,'Matrix Default Detailed Listing Matrix Default Detailed Listing matrix default detailed listing Matrix/Detail','000001000001000022000003'),('alraubvBu-YJJ614jAHD5w','matrix-nav-tmpl','','new-matrix/matrix-nav-tmpl',1232664015,1250147475,'3','7','12','WebGUI::Asset::Template',0,'matrix-nav-tmpl matrix-nav-tmpl new matrix matrix nav tmpl Navigation','000001000001000022000009'),('PBtmpl0000000000000062','Default Gradebook Report','','root/import/survey/default-gradebook-report',1124395696,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Gradebook Report Default Gradebook Report root import survey default gradebook report Survey/Gradebook','000001000001000044000002'),('d8jMMMRddSQ7twP4l1ZSIw','Default Survey Take','','root/import/survey/default-survey-take',1227248175,1253555614,'3','7','12','WebGUI::Asset::Template',0,'Default Survey Take Default Survey Take root import survey default survey take Survey/Take','000001000001000044000005'),('E3tzZjzhmYoNlAyP2VW33Q','Edit Story','','root/import/storymanager/editstory',1239236292,1253635296,'3','7','4','WebGUI::Asset::Template',0,'Edit Story Edit Story root import storymanager editstory Story/Edit','000001000001000042000003'),('TbDcVLbbznPi0I0rxQf2CQ','Story Template Topic','','root/import/storymanager/storytemplatetopic',1237524306,1253636379,'3','7','4','WebGUI::Asset::Template',0,'Story Template Topic Story Template Topic root import storymanager storytemplatetopic Story','000001000001000042000004'),('brxm_faNdZX5tRo3p50g3g','Map Templates','','home/map/map-templates',1238054297,1256092368,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Map Templates Map Templates home map map templates','000001000001000020'),('i9-G00ALhJOr0gMh-vHbKA','Inbox SMS Notification','','root/import/inbox-sms-notification',1250408924,1250408924,'3','7','4','WebGUI::Asset::Template',0,'Inbox SMS Notification Inbox SMS Notification root import inbox sms notification Account/Inbox/Notification','000001000001000002000002000014'),('S3zpVitAmhy58CAioH359Q','Default Test Results','','root/import/survey/default-test-results',1242893798,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Test Results Default Test Results root import survey default test results Survey/TestResults','000001000001000044000013'),('b1316COmd9xRv4fCI3LLGA','Inbox Notification','','inbox_notification',1236956475,1236956475,'3','7','4','WebGUI::Asset::Template',0,'Inbox Notification Inbox Notification inbox notification Account/Inbox/Notification','000001000001000002000002000013'),('nWNVoMLrMo059mDRmfOp9g','Default Feedback','','root/import/survey/default-feedback',1242259265,1250243000,'3','7','12','WebGUI::Asset::Template',0,'Default Feedback Default Feedback root import survey default feedback Survey/Feedback','000001000001000044000015'),('qxd0WpRGqDPWP8WBicYvEA','dragdropsorting.js','','root/import/gallery-templates/dragdropsorting.js',1271820952,1271820952,'3','7','12','WebGUI::Asset::Snippet',0,'dragdropsorting.js dragdropsorting.js root import gallery templates dragdropsorting.js Create our own namespace For the moment we leave this here since there are no other JS modules for the gallery var Gallery = Configure the drag\'n\'drop sorting app Gallery.DDSorting = parentId photos Element Id of the container element draggableNodeTags li Type of tag used for draggable items idPrefix photoId Prefix used in Ids of draggable items Create some shortcuts var Dom = YAHOO.util.Dom var Event = YAHOO.util.Event var DDM = YAHOO.util.DragDropMgr Drag\'n\'drop sorting app for the gallery Gallery.DDSorting.init = function Make list element containing photos a drop target new YAHOO.util.DDTarget(this.parentId Get all items within list of photos var items = document.getElementById(this.parentId).getElementsByTagName(this.draggableNodeTags Initialize DDList object for all list items for i=0 i < items.length i=i+1 new Gallery.DDList(this items[i].id gallery Custom drag and drop implementation Gallery.DDList = function(app id sGroup config Gallery.DDList.superclass.constructor.call(this id sGroup config var el = this.getDragEl Dom.setStyle(el opacity 0.67 The proxy is slightly transparent Assign reference to application object this.app = app Init variables for direction and replacement tracking this.goingUp = false this.goingLeft = false this.lastY = 0 this.lastX = 0 this.before = false this.lastReplaced = null YAHOO.extend(Gallery.DDList YAHOO.util.DDProxy startDrag function(x y Make the proxy look like the source element var dragEl = this.getDragEl var clickEl = this.getEl Dom.setStyle(clickEl visibility hidden Copy source element to proxy and set class dragEl.className = clickEl.className dragEl.innerHTML = clickEl.innerHTML endDrag function(e var srcEl = this.getEl var proxy = this.getDragEl Show the proxy element and animate it to the src element\'s location Dom.setStyle(proxy visibility var a = new YAHOO.util.Motion proxy points to Dom.getXY(srcEl 0.2 YAHOO.util.Easing.easeOut var proxyid = proxy.id var thisid = this.id Hide the proxy and show the source element when finished with the animation a.onComplete.subscribe(function Dom.setStyle(proxyid visibility hidden Dom.setStyle(thisid visibility a.animate Do nothing more if no element has been replaced if this.lastReplaced == null return Get assed ids of the target to move and the last photo replaced var target = srcEl.id.replace(this.app.idPrefix var dest = this.lastReplaced.id.replace(this.app.idPrefix Prepare call to ajax service of the gallery asset We need to set the action argument to moveFile provide the asset id of the target photo in target and the asset id of the photo replaced in before or after depending on order var args = args.action = moveFile args.target = target if this.before args.before = dest else args.after = dest Callback function for asynchronous request This is required for error handling var callback = success function o Parse answer from ajax service result = YAHOO.lang.JSON.parse(o.responseText Check for errors if result.err Display error message alert(\'Failed to move photo + result.errMessage Request a reload of the page so we are back in sync location.reload failure function o Display generic error message alert(\'AJAX service for moving photos is currently not available Failed to move photo Request a reload of the page so we are back in sync location.reload Convert args object to JSON string var postData = func=ajax;args= + encodeURI(YAHOO.lang.JSON.stringify(args Make asynchronous call to gallery asset YAHOO.util.Connect.asyncRequest(\"POST this.app.url callback postData onDrag function(e Keep track of the direction of the drag for use during onDragOver var y = Event.getPageY(e var x = Event.getPageX(e Check in vertical direction if y < this.lastY this.goingUp = true else if y > this.lastY this.goingUp = false Check in horizontal direction if x < this.lastX this.goingLeft = true else if x > this.lastX this.goingLeft = false this.lastY = y this.lastX = x onDragOver function(e id var srcEl = this.getEl var destEl = Dom.get(id We are only concerned with list items we ignore the dragover notifications for the list if destEl.nodeName.toLowerCase == this.app.draggableNodeTags var orig_p = srcEl.parentNode var p = destEl.parentNode if this.goingUp || this.goingLeft Insert above/before p.insertBefore(srcEl destEl Keep track of where we moved this.lastReplaced = destEl this.before = true else Insert below/after p.insertBefore(srcEl destEl.nextSibling Keep track of where we moved this.lastReplaced = destEl this.before = false DDM.refreshCache Start application after DOM is ready Event.onDOMReady(Gallery.DDSorting.init Gallery.DDSorting true','000001000001000066'),('D6cJpRcey35aSkh9Q_FPUQ','Default EU User Screen','','root/import/default-eu-user-screen',1242407725,1273032715,'3','7','12','WebGUI::Asset::Template',0,'Default EU User Screen Default EU User Screen root import default eu user screen TaxDriver/EU/User','000001000001000038000019'),('lo1rpxn3t8YPyKGers5eQg','Friend Manager','Templates for the Friend Manager ','root/import/account/friendmanager',1238625621,1238625621,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'Friend Manager Friend Manager root import account friendmanager Templates for the Friend Manager','000001000001000002000010'),('64tqS80D53Z0JoAs2cX2VQ','FriendManager View Template','','root/import/account/friendmanager/view',1239400975,1239400975,'3','7','4','WebGUI::Asset::Template',0,'FriendManager View Template FriendManager View Template root import account friendmanager view Account/FriendManager/View','000001000001000002000010000001'),('lG2exkH9FeYvn4pA63idNg','Friend Manager Edit Friends','','root/import/account/friendmanager/edit',1239383808,1239383808,'3','7','4','WebGUI::Asset::Template',0,'Friend Manager Edit Friends Friend Manager Edit Friends root import account friendmanager edit Account/FriendManager/Edit','000001000001000002000010000002'),('newslettercs0000000001','Newsletter Manager (default)','','newslettercstemplate',1185754569,1252682678,'3','7','3','WebGUI::Asset::Template',0,'Newsletter Manager default Newsletter Manager newslettercstemplate Collaboration','000001000001000026000002'),('iCM9pRY5yYyjufROgaCDlg','storyManager.css','','storymanager.css',1253305659,1253305659,'3','7','12','WebGUI::Asset::Snippet',0,'storyManager.css storyManager.css storymanager.css editStory width 100 editStory legend font-size 1.8em border-bottom 2px solid editStory tbody width 943px editStory td padding 5px editStory story float:left editStory story label editStory photo label display block width 100 text-align right editStory photoContainer border 1px solid float:left margin 10px 0 0 20px editStory photoContainer photoHeader font-size 1.2em font-weight bold editStory buttons clear both text-align right padding 10px 0 editStory story_formId_tbl width 100 important editStory fieldset border none storyArchive width 100 storyArchive h3 border-bottom 2px solid margin-bottom 10px storyArchive storyList list-style-type none padding-left 0 storyArchive storyList li padding-left 10px margin-bottom 10px storyArchive pagination float left list-style-type none storyArchive keywords width 100 clear both storyArchive img border none storyArchive controls a margin-right 10px viewStory storyTitle viewStory storyUpdated viewStoryTopic storyTitle viewStoryTopic storyUpdated float left viewStory storyTitle viewStoryTopic storyTitle font-size 1.5em width 100 viewStory storyHighlights viewStoryTopic storyHighlights float:right margin-top 1.5em viewStory storyPhoto viewStoryTopic storyPhoto float left margin 0 10px 10px 0 viewStory photoCaption viewStoryTopic photoCaption width 496px padding 5px display:block viewStory clear viewStoryTopic clear clear both storyTopic width 100 storyTopic h3 border-bottom 2px solid storyTopic topStory width 340px float left storyTopic storyList width 250px float left storyTopic storyListBig width 100 float left htmltagcloud wg-clear clear:both ','000001000001000042000007'),('limMkk80fMB3fqNZVf162w','Default Asset Subscription','','root/import/default-asset-subscription',1253507213,1253507213,'3','7','3','WebGUI::Asset::Template',0,'Default Asset Subscription Default Asset Subscription root import default asset subscription AssetAspect/Subscribable','000001000001000056'),('zb_OPKNqcTuIjdvvbEkRjw','article.css','','article.css',1247484073,1256092368,'3','7','12','WebGUI::Asset::Snippet',0,'article.css article.css article.css styles for the article asset withImage articleContent linkedImage articleContent width:100 overflow:hidden withImage articleImage linkedImage articleImage float:right margin:0 0 10px 10px linkedImage caption display:block ','000001000001000004000005'),('PBtmpl0000000000000210','Request Tracker Post Form','','request-tracker-template2',1147642410,1277868922,'3','7','12','WebGUI::Asset::Template',0,'Request Tracker Post Form Request Tracker Post Form request tracker template2 Collaboration/PostForm','000001000001000008000028'),('pbrobot000000000000001','robots.txt','','robots.txt',1147642511,1256092369,'3','7','12','WebGUI::Asset::Snippet',0,'robots.txt robots.txt robots.txt User-agent Disallow op=auth Disallow op=account Disallow op=ajaxGetI18N Disallow op=makePrintable Disallow op=viewHelp Disallow op=viewHelpIndex','000001000001000035'),('4qh0kIsFUdd4Ox-Iu1JZgg','EMS','','root/import/ems',1208725439,1257311886,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'EMS EMS root import ems','000001000001000012'),('hreA_bgxiTX-EzWCSZCZJw','Print Remaining Tickets Template (default)','','root/import/ems/default-print-remaining-tickets-template',1257311887,1257311887,'3','7','12','WebGUI::Asset::Template',0,'Print Remaining Tickets Template default Print Remaining Tickets Template default root import ems default print remaining tickets template EMS/PrintRemainingTickets','000001000001000012000008'),('2GxjjkRuRkdUg_PccRPjpA','Select Gateway (Default)','','shopping-cart-collateral-items/select-gateway-default',1257311888,1257311888,'3','7','3','WebGUI::Asset::Template',0,'Select Gateway Default Select Gateway Default shopping cart collateral items select gateway default Shop/selectGateway','000001000001000059'),('_aE16Rr1-bXBf8SIaLZjCg','picklanguage','','media/picklanguage',1257311888,1257311888,'3','7','12','WebGUI::Asset::Template',0,'picklanguage picklanguage media picklanguage Macro/PickLanguage','000001000001000060'),('P_4uog81vSUK4KxuW_4GUA','css','','css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'css css css','000001000001000061'),('H_-8zjtWsO1FUpQqNtkxNQ','wg-base.css','','css/wg-base.css',1258524916,1258524916,'3','7','12','WebGUI::Asset::Snippet',0,'wg-base.css wg-base.css css wg base.css In this stylesheet you can find the styles that are used in more than one template For example file/attachment icons pagination etc Elements that are styled with this stylesheet have a classname that starts with wg general wg-icon border:0px none vertical-align middle wg-clear clear:both inline list pagination wg-inline margin:0 0 1em padding:0 wg-inline li display:inline margin:0 padding:0 wg-inline li.active font-weight:bold forms wg-captchaImage border:0 none vertical-align:middle margin-left:5px ','000001000001000061000001'),('8tqyQx-LwYUHIWOlKPjJrA','EMS Event Submission Template','','root/import/ems/ems-event-submission',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Template EMS Event Submission Template root import ems ems event submission EMS/Submission','000001000001000062'),('DoVNijm6lMDE0cYrtvEbDQ','EMS Event Submission Main Template','','root/import/ems/ems-event-submission-main',1258524917,1279073449,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Main Template EMS Event Submission Main Template root import ems ems event submission main EMS/SubmissionMain','000001000001000063'),('ktSvKU8riGimhcsxXwqvPQ','EMS Event Submission Queue','','root/import/ems/ems-event-submission-queue',1258524917,1279073450,'3','7','12','WebGUI::Asset::Template',0,'EMS Event Submission Queue EMS Event Submission Queue root import ems ems event submission queue EMS/SubmissionQueue','000001000001000064'),('mRtqRuVikSe82BQsYBlD0A','Bare Image','','bare_image',1263962529,1263962529,'3','7','12','WebGUI::Asset::Template',0,'Bare Image Bare Image bare image ImageAsset','000001000001000065'),('0iMMbGN3BevuCBHjjLiQNA','WebGUI/Deactivate','','root/import/auth/webgui/deactivate',1269401469,1269401469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'WebGUI/Deactivate WebGUI/Deactivate root import auth webgui deactivate','000001000001000005000009'),('zaHUYsE_PgKk8hnVd8ffEQ','WebGUI Deactivate Account Template','','default_webgui_deactivate_account_template',1269401469,1269401469,'3','7','12','WebGUI::Asset::Template',0,'WebGUI Deactivate Account Template WebGUI Deactivate Account Template default webgui deactivate account template Auth/WebGUI/Deactivate','000001000001000005000009000001'),('6A4yIjWwJfIE0Ep-I0jutg','LDAP/Deactivate','','root/import/auth/ldap/deactivate',1269401469,1269401469,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'LDAP/Deactivate LDAP/Deactivate root import auth ldap deactivate','000001000001000005000010'),('_P4PMiraGsLTfOjK4fYQPQ','LDAP Deactivate Account Template','','default_ldap_deactivate_account_template',1269401469,1269401469,'3','7','12','WebGUI::Asset::Template',0,'LDAP Deactivate Account Template LDAP Deactivate Account Template default ldap deactivate account template Auth/LDAP/Deactivate','000001000001000005000010000001'),('_XfvgNH__bY1ykMiKYSobQ','account.css','','root/import/account/account.css',1233168041,1270612323,'3','7','12','WebGUI::Asset::Snippet',0,'account.css account.css root import account account.css general WGsubContent color:#000000 WGbutton float:right padding-right:10px centered text-align center WGaccount_message background-color white border solid BECEF8 1px height 300px margin-bottom 10px margin-left 60px margin-top 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll padding:10px text-align left vertical-align:top width 90 WGprofileMember font-size:9px margin-right:20px text-align:right WGmember color:#3e4f77 font 9px Verdana Arial Helvetica sans-serif text-align:center WGphotostyle border:solid 3e4f77 2px margin-bottom:5px margin-top:5px rightalign float right WGsend float:right padding-right 75px bio addtonetwork network WGbordered border-bottom dashed BECEF8 2px padding-bottom 10px WGfriendpic border solid BECEF8 1px WGinvitemsg width 600px height 150px ol.WGProfile_interests color:#0B2259 font-size:15px font-weight:bold list-style-type:none margin:0px padding:0px padding:5px 5px ol.WGProfile_interests li margin-bottom:15px ol.WGProfile_interests span font-size:12px font-weight:normal color:black WGpBio border-bottom:solid DDE6FB 1px margin:0px margin-bottom:5px padding-bottom:5px WGpBio div background-color:#DDE6FB padding:2px 5px margin-bottom:2px WGprogram font-size 9px contributions WGContribCount font-size:12px text-align:left padding:3px WGContribTitle background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribTitleLeft background-color:#f2f5fa border solid d8dee8 1px color:#0B2259 font-size:12px font-weight:bold min-height:25px padding:3px text-align:center text-decoration underline WGContribEntry text-align:center padding:3px WGContribEntryLeft text-align:left padding:3px edit box WGeditBox background:white url(images/edit_box_bg.jpg no-repeat bottom left border:solid 8DABF1 2px display:block font-family:verdana font-size:9px font-weight:bold left:100px moz-box-sizing:border-box padding:5px position:absolute top:100px width:590px z-index:100 WGeditBox input WGeditBox select font-size:9px friends WGfriends_name font-weight:bold width:90 WGfriends_photo font-weight:bold width:10 WGfriends_photo img height 50px width 50px WGfriends_private float:right padding-bottom 5px width 50 WGfriends_ninety vertical-align:top width 90 WGfriends_seventy vertical-align:top width 70 WGfriends_ten width 10 WGfriends_ten img height 50px width 50px WGfriends_twenty width 20 WGaccepts padding-bottom 5px inbox WGProfile_msgcontainer padding:2px WGinbox_count font-size:12px font-weight:bold padding:3px text-align:left WGinbox_errors font-weight:bold color:red text-align:center WG_inbox_InviteLabel width:50px text-align:right WG_inbox_InviteLabelView font-weight:bold width:120px WGmsgcontainer padding:6px display:block margin-bottom:6px inbox contacts WGdatacells border-bottom dashed BECEF8 1px WGinbox_contactsTbl background-color:#EEF2FD font-family:arial font-size:9pt width:100 contacts height 275px overflow auto inbox forms WGbuttons_left float left WGbuttons_right float right WGinbox_from color black font-weight normal text-decoration none WGinbox_subject width 530px WGinbox_messageTo background-color white border solid BECEF8 1px height 50px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll width 530px inbox pagination WGinbox_buttons display:inline float:left font-size:10px text-align:left width:70 WGinbox_pagination display:inline text-align:right width:20 WGinbox_messagerpp font-size:10px display:inline text-align:right width:20 WGmessage display:inline float:left font-size:10px text-align:left width:70 WGmessagerpp font-size:10px display:inline text-align:right float right WG-previous-next float right inbox threads WGevenThread background-color e1e8fb border-bottom 1px solid bfcef9 padding 8px text-align:center WGoddThread background-color eef2fd border-bottom 1px solid bfcef9 padding 8px text-align center pagination WGProfile_pagination font-size:10px text-align:right width:20 WGProfile_messagerpp font-size:10px display:inline text-align:right width:20 WGProfile_paginationLeft font-size:10px text-align:left width:20 WGProfile_paginationCenter font-size:10px text-align:center width:20 WGProfile_pagination a background-color:#f2f5fa border:solid bfc8dc 1px font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination a:hover background-color:#d8dee8 color:white WGProfile_pagination prevNext background-color transparent border none color black WGProfile_pagination prevNext:hover background-color transparent border none color black WGProfile_pagination active background-color:#d8dee8 border:solid bfc8dc 1px color:white font-size:10px font-weight:bold padding:1px 5px text-decoration:none WGProfile_pagination img vertical-align:middle margin-top:2px border:none profile WGProfile_registration background:none border:none font-size:9pt font-family:arial margin:0 padding:0 width:100 WGProfile_registration header background-color:#818997 color:#3e4f77 font-size:10px font-weight:bold text-align:left WGProfile_registration header a color:white text-decoration:none WGProfile_registration help a font-weight:bold text-decoration:none WGProfile_registration inputText font-size:10px margin-right:1px WGProfile_registration label font-size:9pt font-weight:bold text-align:right white-space:nowrap width:1 WGProfile_registration labelLeft font-size:9pt font-weight:bold white-space:nowrap width:1 text-align left vertical-align top WGProfile_registration smallLabel font-size:8px text-align:center WGProfile_registration smallText font-size:9px WGinboxTbl display:block margin 4px padding 2px WGProfile_registration bar WGProfile_registration barRight background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin:10px 0px 10px 0px min-height:25px padding:4px 4px 0px 4px vertical-align:middle WGProfile_registration bar text-align center WGProfile_registration barRight text-align right WGProfile_registration bar a color:#0B2259 font-size:10px font-weight:bold WGProfile_registration barFive background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold text-align:center margin-right:3px min-height:25px padding:2px width:4.3 WGProfile_registration barTen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold min-height:25px padding:2px text-align:center width:7.2 WGProfile_registration barFifteen background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:15 WGProfile_registration barFifty background-color:#f2f5fa border solid d8dee8 1px color:#3e4f77 font-size:14px font-weight:bold margin-right:3px min-height:25px padding:2px text-align:center width:50 WGbarContainer display:block margin:10px 0px 10px 0px width:100 profile edit WGfields padding 2px WGfields_left padding:2px vertical-align:top width 15 WGfields_right display:inline float:right padding:2px text-align:right width:80 vertical-align top WGProfile display:table margin 0 padding 0 width:100 WGProfileFields border:0 padding 0 margin:0 width 100 WGProfileFields ol display inline list-style-type none WGProfileFields ul list-style-type none display inline WGProfileFields ul li display inline-block display inline zoom 1 profile view WGProfile_accepts text-align:right background-color:gray padding:4px width:100 WGviewContainer margin:0 padding:0 width:90 WGinternational background-color:red color:white display:inline font-weight:bold padding:4px text-align:center WGcategoryLabel vertical-align:top width:90 WGprivateMessage background-color:gray padding:4px text-align:right WGprofileAlert background-color:red color:white font-weight:bold padding:4px text-align:center width:100 WGprofilePhoto vertical-align:top profile errors WGprofileErrors background-color ff0000 color ffffff font-weight bold text-align center WGprofilefield_required_off WGprofilefield_required background-color ffd6bb WGprofilefield_error background-color FF9494 WGerrorMsg font-weight:bold color:red text-align:center user WGuserInvite_subject background-color white border solid BECEF8 1px height 25px text-align left width 500px margin-left 50px margin-bottom 20px overflow:-moz-scrollbars-vertical overflow-x:hidden overflow-y:scroll view profile WGprofile_canEdit text-align:center background-color:red padding:4px color:white font-weight:bold WGprofile_fieldLabel background DDE6FB padding:2px width:200px WGprofile_fieldData margin-left 5px WGprofile_fieldStatus padding:4px color:white font-weight:bold TABS TABS outer WGbottombutton float:right padding-right:2px padding-top 2px position relative WGcontent padding:10px WGcleartab clear both height:0 WGsubContent color setting for border under outer tabs that surrounds inner tabs border solid d8dee8 6px WGtopbutton float:right clear:both padding-right:2px padding-top 2px position relative ul.WGtopTabs ul.WGtopTabs li list-style-type:none margin:10px 0px 0px 0px padding:0px position:relative width:auto Xposition:relative zoom:1 ul.WGtopTabs li display:block float:left margin-right 3px ul.WGtopTabs li b background-color eef2fd border-top:solid d8dee8 1px display:block padding:4px 8px position:relative top:-1px ul.WGtopTabs a non-selected tabs color settings display:block color:#9ea0bb font-size:12px font-family Arial Helvetica sans-serif text-decoration:none background-color:#f2f5fa border-left solid d8dee8 1px border-right solid d8dee8 1px ul.WGtopTabs a:hover ul.WGtopTabs a:hover b ul.WGtopTabs a.selected ul.WGtopTabs a.selected b selected tab color settings background-color:#d8dee8 color:#3e4f77 text-align right TABS YUI WGcleardiv clear both margin 0px 0px 0px 0px padding 0px WGviewProfile wgView border none font bold 10px Verdana color 3e4f77 text-decoration:none WGview position absolute right 4px top:4px WGprofile_displayView x-system-font:none border:medium none color:#0B2258 display:inline float:right font-family:Verdana font-size:10px font-size-adjust:none font-stretch:normal font-style:normal font-variant:normal font-weight:bold line-height:normal padding-right:8px padding-top:3px text-decoration none WGprofile_displaySubContent border around friends tab content border solid d8dee8 6px border-top solid d8dee8 18px Copyright c 2008 Yahoo Inc All rights reserved Code licensed under the BSD License http://developer.yahoo.net/yui/license.txt version 2.6.0 yui tabs color settings below yui-navset defaults to yui-navset-top WGsubContent yui-skin-sam yui-navset yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav protect nested tabviews from other orientations border:solid eef2fd color between tab list and content border-width:0 0 5px Xposition:relative zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav a WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a background:#ffffff tab background border:solid ffffff border-width:0 1px color:#bfccdd position:relative text-decoration:none font-size:12px font-family Arial Helvetica sans-serif font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav a em border:solid eef2fd border-width:1px 0 0 cursor:hand padding:0.25em 75em left:0 right 0 bottom 0 protect from other orientations top:-1px for 1px rounded corners position:relative WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a:focus no focus effect for selected WGsubContent yui-skin-sam yui-navset yui-nav selected a:hover no hover effect for selected background eef2fd selected tab background color 3e4f77 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-nav selected a WGsubContent yui-skin-sam yui-navset yui-nav selected a em border-color:#eef2fd selected tab border color WGsubContent yui-skin-sam yui-navset yui-nav a:hover WGsubContent yui-skin-sam yui-navset yui-nav a:focus background eef2fd hover tab background color 3e4f77 outline:0 font-size:12px font-family Arial Helvetica sans-serif text-decoration:none font-weight bold WGsubContent yui-skin-sam yui-navset yui-content background eef2fd content background color WGsubContent yui-skin-sam yui-navset yui-content WGsubContent yui-skin-sam yui-navset yui-navset-top yui-content border:5px solid eef2fd content border padding:0.75em 1em content padding left and right orientations WGsubContent yui-skin-sam yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 Xposition:absolute from tabview-core have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav top:0 bottom:0 stretch to fill content height WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav WGsubContent yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.3em space between tabs padding:0 0 0 1px gecko make room for overflow WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 gecko make room for overflow WGsubContent yui-skin-sam yui-navset-left yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav selected margin:0 1px 0.16em 0 WGsubContent yui-skin-sam yui-navset-right yui-nav selected margin:0 0 0.16em 1px WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset yui-navset-left yui-nav a em WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px padding:0.2em 75em top:auto left:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-left yui-nav a WGsubContent yui-skin-sam yui-navset-left yui-nav selected a WGsubContent yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a WGsubContent yui-skin-sam yui-navset-right yui-nav selected a WGsubContent yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none no left-right or bottom-top gradient WGsubContent yui-skin-sam yui-navset-left yui-content border:1px solid d8dee8 content border bottom orientation WGsubContent yui-skin-sam yui-navset-bottom yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav border-width:5px 0 0 color between tab list and content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.3em 0 0 for overlap WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 gecko make room for overflow vertical-align:top WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset-bottom yui-nav li a WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav a em WGsubContent yui-skin-sam yui-navset-bottom yui-nav a em border-width:0 0 1px top:auto bottom:-1px for 1px rounded corners WGsubContent yui-skin-sam yui-navset-bottom yui-content WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-content border:1px solid f2f5fa content border WGsubContent yui-skin-sam background-color d8dee8 padding 10px 5 5 5px display:block yui tab placement settings below WGsubContent yui-skin-sam yui-navset yui-nav li WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav li margin:0 0.3em 0 0 space between tabs padding:5px 0 0 gecko make room for overflow zoom:1 WGsubContent yui-skin-sam yui-navset yui-nav selected WGsubContent yui-skin-sam yui-navset yui-navset-top yui-nav selected margin:0 0.3em 1px 0 for overlap WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li margin:0 0.5em 0 0 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li margin:0 0 0.5em WGsubContent yui-navset yui-content yui-hidden display:none WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav width:6em WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav width:auto WGsubContent yui-navset yui-navset-left,.yui-navset-left padding:0 0 0 6em WGsubContent yui-navset-right padding:0 6em 0 0 WGsubContent yui-navset-top,.yui-navset-bottom padding:auto WGsubContent yui-nav,.yui-nav li list-style:none margin:0 padding:0 WGsubContent yui-navset li em font-style:normal WGsubContent yui-navset position:relative zoom:1 WGsubContent yui-navset yui-content zoom:1 WGsubContent yui-navset yui-nav li,.yui-navset yui-navset-top yui-nav li WGsubContent yui-navset yui-navset-bottom yui-nav li display:inline-block display:-moz-inline-stack display:inline vertical-align:bottom cursor:pointer zoom:1 WGsubContent yui-navset-left yui-nav li,.yui-navset-right yui-nav li display:block WGsubContent yui-navset yui-nav a position:relative WGsubContent yui-navset yui-nav li a,.yui-navset-top yui-nav li a WGsubContent yui-navset-bottom yui-nav li a display:block display:inline-block vertical-align:bottom zoom:1 WGsubContent yui-navset-left yui-nav li a,.yui-navset-right yui-nav li a display:block WGsubContent yui-navset-bottom yui-nav li a vertical-align:text-top WGsubContent yui-navset yui-nav li a em,.yui-navset-top yui-nav li a em WGsubContent yui-navset-bottom yui-nav li a em display:block WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset yui-navset-right yui-nav WGsubContent yui-navset-left yui-nav,.yui-navset-right yui-nav position:absolute z-index:1 WGsubContent yui-navset-top yui-nav,.yui-navset-bottom yui-nav position:static WGsubContent yui-navset yui-navset-left yui-nav,.yui-navset-left yui-nav left:0 right:auto WGsubContent yui-navset yui-navset-right yui-nav,.yui-navset-right yui-nav left:auto right:0 WGsubContent yui-skin-sam yui-navset yui-nav selected a em padding:0.35em 0.75em WGsubContent yui-skin-sam yui-navset-left yui-nav,.yui-skin-sam yui-navset yui-navset-left yui-nav WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 5px 0 0 bottom:0 top:0 Xposition:absolute WGsubContent yui-skin-sam yui-navset yui-navset-right yui-nav,.yui-skin-sam yui-navset-right yui-nav border-width:0 0 0 5px WGsubContent yui-skin-sam yui-navset-left yui-nav li,.yui-skin-sam yui-navset yui-navset-left yui-nav li WGsubContent yui-skin-sam yui-navset-right yui-nav li margin:0 0 0.16em padding:0 0 0 1px WGsubContent yui-skin-sam yui-navset-right yui-nav li padding:0 1px 0 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-right yui-nav a border-width:1px 0 WGsubContent yui-skin-sam yui-navset-left yui-nav a em,.yui-skin-sam yui-navset yui-navset-left yui-nav a em,.yui-skin-sam yui-navset-right yui-nav a em border-width:0 0 0 1px left:-1px padding:0.2em 75em top:auto WGsubContent yui-skin-sam yui-navset-right yui-nav a em border-width:0 1px 0 0 left:auto right:-1px WGsubContent yui-skin-sam yui-navset-left yui-nav a,.yui-skin-sam yui-navset-left yui-nav selected a,.yui-skin-sam yui-navset-left yui-nav a:hover WGsubContent yui-skin-sam yui-navset-right yui-nav a,.yui-skin-sam yui-navset-right yui-nav selected a,.yui-skin-sam yui-navset-right yui-nav a:hover WGsubContent yui-skin-sam yui-navset-bottom yui-nav a,.yui-skin-sam yui-navset-bottom yui-nav selected a WGsubContent yui-skin-sam yui-navset-bottom yui-nav a:hover background-image:none WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav selected WGsubContent yui-skin-sam yui-navset-bottom yui-nav selected margin:-1px 0.16em 0 0 WGsubContent yui-skin-sam yui-navset yui-navset-bottom yui-nav li WGsubContent yui-skin-sam yui-navset-bottom yui-nav li padding:0 0 1px 0 vertical-align:top ','000001000001000002000008'),('_9_eiaPgxzF_x_upt6-PNQ','gallery.css','','root/import/gallery-templates/gallery.css',1197988920,1277868924,'3','7','3','WebGUI::Asset::Snippet',0,'gallery.css gallery.css root import gallery templates gallery.css FIXES FLOAT ISSUES WITHOUT THIS FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI clearfix:after content display block height 0 clear both visibility hidden clearfix display inline-block END FLOAT FIX wgGallery font-family:verdana arial text-align:left firstBar background black color:white font-size:18px font-weight:bold firstBar title margin-left:20px line-height:42px firstBar title a font-size:18px font-weight:bold color:white firstBar buttons float:right firstBar buttons a display:block float:left height:42px line-height:42px font-size:10px color:white font-weight:bold text-align:center padding:0px 5px firstBar buttons rss display:block height:29px position:relative background:transparent padding-top:13px secondBar background F1F1F1 text-align:left border-top:solid 8B8B8B 5px color black overflow hidden secondBar author font-size:10px secondBar desc p margin-left 20px margin-top 0 color black pictures searchArea float:right searchArea float:left searchArea input.searchText border:solid black 1px width:100px margin:0px padding:2px margin-top:5px font-size:10px height:15px margin-right:10px searchArea input.searchBtn border:solid black 1px margin:0px padding:3px margin-top:5px font-size:10px vertical-align:middle cursor:pointer height:21px searchArea a:link searchArea a:visited secondBar author a:link secondBar author a:visited font-size:11px color:black searchArea current font-weight:bold text-transform:uppercase text-decoration:none font-size:10px wgAlbum display moz-inline-box Although this works in later versions of FireFox it does not work in 2.x display:block float:left display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space width:250px margin:10px wgAlbum albumTitle background black color:white font-size:12px font-weight:bold padding:10px padding-right:50px border:solid 475f6f 1px border-bottom:solid 8B8B8B 5px text-align:left display:block wgAlbum albumImage background F1F1F1 border-left solid black 1px border-right solid black 1px padding-top:15px height:135px wgAlbum albumImage a height:135px width:200px overflow:hidden display:block margin:0px 23px wgAlbum albumImage img border-style:none display:block width:200px height:auto border:solid black 1px wgAlbum albumDesc background F1F1F1 border-left solid black 1px border-right solid black 1px border-bottom solid black 1px text-align:center padding 5px 23px wgAlbum description font-size:10px height:40px overflow:auto text-align:left border:solid silver 1px padding:5px background-color fff color:#222 albumDesc description margin:2px 0px PAGINATION STYLES wgGallery paginationContainer text-align:center background black height:42px wgGallery container clear:both text-align:center wgGallery pagination margin:0px auto 20px auto display:table list-style-type:none white-space:nowrap padding:0px height:42px wgGallery pagination li display:table-cell wgGallery pagination a display:block width:50px line-height:42px color:white font-size:10px text-align:center wgPicture a:link wgPicture a:visited color:black wgPicture width:250px margin:10px display moz-inline-box This does not work in earlier versions of Firefox display:block float:left display inline-block Op Saf IE vertical-align top IE Mac non capisce e a volte crea extra v space wgPicture title background:#e0e0e0 display:block font-size:12px text-align:center padding:2px 5px border:solid black 1px border-bottom:solid 8B8B8B 4px wgPicture title a font-size:12px wgPicture thumbnail text-align:center background F1F1F1 padding:15px 23px 15px 23px margin:0px border-left:solid black 1px border-right:solid black 1px wgPicture thumbnail a display:block width:200px height:120px overflow:hidden border:solid black 1px wgPicture thumbnail img border-style:none width:200px height:auto wgPicture pictureDesc padding:0px border-top:solid e1e1e1 1px border-bottom:solid gray 1px border-left:solid black 1px border-right:solid black 1px background:#F1F1F1 margin:0px wgPicture pictureDesc description margin:0px padding:5px font-size:10px wgPicture details background:#e0e0e0 border:solid 999 1px border-top:solid aaa 1px font-size:9px padding:1px 3px wgPicture details date float:right wgPicture details comments float:left wgPicture details a font-size:9px BEGIN STYLES FOR PHOTO VIEW The Photo view uses some/all of the above classes plus those in this section wgSnapshot float:left margin:10px max-width:250px width:25 wgSnapshot fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 text-align:center navigation width 100 text-align center font-weight bold color navy wgSnapshot p max-width:230px wgSnapshot navigation width:100 margin:5px 0 0 text-align:center wgSnapshot navigation img border none wgSnapshot legend color:#333 font-size:15px font-weight:bold max-width:250px wgSnapshot a.thumbnail img width:200px height:auto border:solid 555 2px wgSnapshot description font-size:9px border:solid 555555 2px padding:5px width:190px margin:0px auto background-color:#fff height:50px overflow:auto text-align:left overflow:auto wgSnapshot a.fullSize margin:0px auto wgPictureDetails float:left width:70 margin:10px overflow hidden wgPictureDetails a:link wgPictureDetails a:visited color:black wgPictureDetails fieldset background-color:#fefefe border:solid 555 2px padding:10px background-color:#f9f9f9 margin-bottom:10px wgPictureDetails legend color:#333 font-size:15px font-weight:bold rowOne rowTwo margin:1px color:black padding:3px rowOne background EFEFEF border:solid CDCDCD 1px rowTwo background DCDCDC border:solid DDDDDD 1px rowOne label rowTwo label margin-left:15px text-align:left font-weight:bold font-size:11px rowOne data rowTwo data font-size:10px margin-left:5px a.fullSize:link a.fullSize:visited color:black display:block text-align:center font-weight:bold font-size:10px wgComments font-size:9px margin:10px width:90 wgComments title font-size:14px font-weight:bold color:#333 border-bottom:solid 555555 2px padding-bottom:2px wgComments title a color:navy text-decoration:none wgComments comment wgComments commentAlt position:relative padding:5px wgComments comment background-color:#e1e1e1 border-top:solid F7F7F7 1px border-bottom:solid C9C9C9 1px wgComments commentAlt background-color:#f0f0f0 border-bottom:solid CDCDCD 1px border-top:solid FBFBFB 1px wgComments number float:left font-size:30px color:silver margin:5px 10px 5px 5px wgComments posted font-style:italic padding-top:3px font-size:9px color:gray wgComments posted a color:navy text-decoration:underline BEGIN STYLES FOR THUMBNAIL VIEW The Thumbnail view uses some/all of the above classes plus those in this section thumbView width:400px height:auto thumbView thumbnail a display:block width:350px height:auto border:solid black 1px thumbView thumbnail img border-style:none width:350px height:auto thumb width:100px height:65px overflow:hidden display:block float:left border:solid black 2px margin:10px z-index 0 position relative thumb:hover background-color transparent z-index 50 overflow visible thumb img width:100px height:auto border-style:none thumb:hover img bottom 65px left 75px position absolute width 250px BEGIN STYLES FOR SLIDESHOW VIEW The Slideshow view uses some/all of the above classes plus those in this section wgSlideshow controls background url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg repeat-x width:500px height:42px margin:0px auto border:solid black 2px wgSlideshow text-align:center slideshow-container width:500px height:auto margin:0px auto text-align:center border:solid black 2px position:relative z-index:0 slideshow-container slideshow-item img width:100 height:auto border-style:none display:block slideshow-container slideshow-item title background-color:black padding:3px color:white border-top:solid white 1px border-bottom:solid white 1px slideshow-container slideshow-item title a color:white font-size:11px font-weight:bold slideshow-container slideshow-item counter background-color:black padding:3px color:white font-size:11px font-weight:bold slideshow-container slideshow-item synopsis width:494px background-color:white padding:3px color:black font-size:11px font-weight:bold border-top:solid black 1px text-align:left BEGIN STYLES FOR SEARCH VIEW The Search view uses some/all of the above classes plus those in this section adminWrapper margin-top:20px adminWrapper label background:black font-weight:bold font-size:10px color:white adminWrapper td.data input background f1f1f1 vertical-align:middle adminWrapper td.radio input border-style:none background:none adminWrapper forwardButton cursor:pointer float:rigbt adminWrapper forwardButton:hover color:gold ','000001000001000015000016'),('i6-BofrJJYozovlzFBByXg','first-photo-button.png','','root/import/gallery-templates/images/first-photo-button.png',1270612331,1277868926,'3','7','3','WebGUI::Asset::File::Image',1,'first-photo-button.png first-photo-button.png root import gallery templates images first photo button.png','000001000001000015000017000031'),('fU_OZCmtdFNJ8a6bMve8ng','previous-photo-button.png','','root/import/gallery-templates/images/previous-photo-button.png',1270612331,1277868926,'3','7','3','WebGUI::Asset::File::Image',1,'previous-photo-button.png previous-photo-button.png root import gallery templates images previous photo button.png','000001000001000015000017000032'),('YXCtusAxb4vzZ5sTnUA5DA','next-photo-button.png','','root/import/gallery-templates/images/next-photo-button.png',1270612331,1277868926,'3','7','3','WebGUI::Asset::File::Image',1,'next-photo-button.png next-photo-button.png root import gallery templates images next photo button.png','000001000001000015000017000033'),('k_xuE82wwp8gFVl9aaaG8g','last-photo-button.png','','root/import/gallery-templates/images/last-photo-button.png',1270612331,1277868926,'3','7','3','WebGUI::Asset::File::Image',1,'last-photo-button.png last-photo-button.png root import gallery templates images last photo button.png','000001000001000015000017000034'),('NPM_WItpM5IzLWBhWjYfCA','photo-navigation-spacer.png','','root/import/gallery-templates/images/photo-navigation-spacer.png',1270612331,1277868926,'3','7','3','WebGUI::Asset::File::Image',1,'photo-navigation-spacer.png photo-navigation-spacer.png root import gallery templates images photo navigation spacer.png','000001000001000015000017000035'),('30h5rHxzE_Q0CyI3Gg7EJw','Cash Summary Screen (Default)','','shopping-cart-collateral-items/cash-summary',1273032715,1273032715,'3','7','4','WebGUI::Asset::Template',0,'Cash Summary Screen Default Cash Summary Screen Default shopping cart collateral items cash summary Shop/Credentials','000001000001000038000020'),('jysVZeUR0Bx2NfrKs5sulg','Ogone Summary Screen (Default)','','shopping-cart-collateral-items/ogone-summary',1273032715,1273032715,'3','7','4','WebGUI::Asset::Template',0,'Ogone Summary Screen Default Ogone Summary Screen Default shopping cart collateral items ogone summary Shop/Credentials','000001000001000038000021'),('300AozDaeveAjB_KN0ljlQ','PayPal Standard Summary Screen (Default)','','shopping-cart-collateral-items/paypal-std-summary',1273032715,1273032715,'3','7','4','WebGUI::Asset::Template',0,'PayPal Standard Summary Screen Default PayPal Standard Summary Screen Default shopping cart collateral items paypal std summary Shop/Credentials','000001000001000038000022'),('GqnZPB0gLoZmqQzYFaq7bg','PayPal Express Checkout Summary Screen (Default)','','shopping-cart-collateral-items/paypal-express-summary',1273032716,1273032716,'3','7','4','WebGUI::Asset::Template',0,'PayPal Express Checkout Summary Screen Default PayPal Express Checkout Summary Screen Default shopping cart collateral items paypal express summary Shop/Credentials','000001000001000038000023'),('stevestyle000000000001','Style 01','by Steve from Plain Black http://plainblack.com\r\n\r\nThe first of the WebGUI 7 styles','style_01',1147642499,1273032722,'3','7','12','WebGUI::Asset::Template',0,'Style 01 Style 01 by Steve from Plain Black http://plainblack.com The first of the WebGUI 7 styles style 01 style','000001000001000051000026'),('stevestyle000000000002','Style 02','by Steve from Plain Black http://plainblack.com\r\n\r\nThe second of the WebGUI 7 styles','style_02',1147642504,1273032718,'3','7','12','WebGUI::Asset::Template',0,'Style 02 Style 02 by Steve from Plain Black http://plainblack.com The second of the WebGUI 7 styles style 02 style','000001000001000052000016'),('stevestyle000000000003','Style 03','by Steve from Plain Black http://plainblack.com\r\n\r\nThe last of the WebGUI 7 style templates.','style_03',1147642510,1273032720,'3','7','12','WebGUI::Asset::Template',0,'Style 03 Style 03 by Steve from Plain Black http://plainblack.com The last of the WebGUI 7 style templates style 03 style','000001000001000053000020'),('t87D1138NhPHhA23-hozBA','CrystalX','','crystalx',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CrystalX CrystalX crystalx','000001000001000067'),('QtBumey5ffc-xffRp1-7Aw','img','','crystalx/img',1273032716,1273032716,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'img img crystalx img','000001000001000067000001'),('-0sK2rX1cwQt1ipUSqsiQQ','bg.gif','','crystalx/img/bg.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif crystalx img bg.gif','000001000001000067000001000001'),('hS_eOaVz9Qb5ixndK9EXAw','header.jpg','','crystalx/img/header.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'header.jpg header.jpg crystalx img header.jpg','000001000001000067000001000002'),('k2p-Be8C98pf2cRq7E-JHg','tab_link.gif','','crystalx/img/tab_link.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_link.gif tab_link.gif crystalx img tab link.gif','000001000001000067000001000003'),('aYG4fjbMPbC4LCuuMp4gGA','tab_hover.gif','','crystalx/img/tab_hover.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'tab_hover.gif tab_hover.gif crystalx img tab hover.gif','000001000001000067000001000004'),('F122Ey0NtVAw6Lfv1M6G_Q','ico_archive.gif','','crystalx/img/ico_archive.gif',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive.gif ico_archive.gif crystalx img ico archive.gif','000001000001000067000001000005'),('qmXHKrQ6EDLSOGkrEKRUDA','bg_page_in.jpg','','crystalx/img/bg_page_in.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page_in.jpg bg_page_in.jpg crystalx img bg page in.jpg','000001000001000067000001000006'),('4qZgXjPPO4fwV879yu5XUg','bg_page.JPG','','crystalx/img/bg_page.jpg',1273032716,1273032716,'3','7','3','WebGUI::Asset::File::Image',1,'bg_page.JPG bg_page.JPG crystalx img bg page.jpg','000001000001000067000001000007'),('mb-xeAugm5GJdvu-Wh0MtQ','search_submit.gif','','crystalx/img/search_submit.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search_submit.gif search_submit.gif crystalx img search submit.gif','000001000001000067000001000008'),('84Y9CwgzP6eNU7wZnk019Q','ico_date.gif','','crystalx/img/ico_date.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_date.gif ico_date.gif crystalx img ico date.gif','000001000001000067000001000009'),('ikXTtJKZfHVxqw-47E4AQA','ico_user.gif','','crystalx/img/ico_user.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_user.gif ico_user.gif crystalx img ico user.gif','000001000001000067000001000010'),('DhRWPTgzhvju_-TbMN3CwA','ico_comments.gif','','crystalx/img/ico_comments.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_comments.gif ico_comments.gif crystalx img ico comments.gif','000001000001000067000001000011'),('6njI-pZz2bwsjWh-Q1_11g','ico_list.gif','','crystalx/img/ico_list2.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list2.gif','000001000001000067000001000012'),('_Hz1Gnd3yEnJzVS7l7nJMQ','content_all_bg.PNG','','crystalx/img/content_all_bg.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'content_all_bg.PNG content_all_bg.PNG crystalx img content all bg.png','000001000001000067000001000013'),('VOOrXK5dFnkGih7aTkuDWA','search.PNG','','crystalx/img/search.png',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'search.PNG search.PNG crystalx img search.png','000001000001000067000001000014'),('ruf-QejOkUHDRtfgakHlbA','col_title_bg_long.GIF','','crystalx/img/col_title_bg_long.gif',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'col_title_bg_long.GIF col_title_bg_long.GIF crystalx img col title bg long.gif','000001000001000067000001000015'),('FSHy5KjQjkt599PHS41seA','footer.jpg','','crystalx/img/footer.jpg',1273032717,1273032717,'3','7','3','WebGUI::Asset::File::Image',1,'footer.jpg footer.jpg crystalx img footer.jpg','000001000001000067000001000016'),('nuYYXAz4KNNxgfumfnpo_g','ico_top.gif','','crystalx/img/ico_top.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_top.gif ico_top.gif crystalx img ico top.gif','000001000001000067000001000017'),('Mr7ljjoy6n4fZojpQWajKQ','ico_links.gif','','crystalx/img/ico_links.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_links.gif ico_links.gif crystalx img ico links.gif','000001000001000067000001000018'),('ApkqpDOrJDxK3QrWBGSRIg','ico_archive2.gif','','crystalx/img/ico_archive2.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_archive2.gif ico_archive2.gif crystalx img ico archive2.gif','000001000001000067000001000019'),('AzzTY0Lay1f_YGeQJFnQCA','ico_list.gif','','crystalx/img/ico_list.gif',1273032718,1273032718,'3','7','3','WebGUI::Asset::File::Image',1,'ico_list.gif ico_list.gif crystalx img ico list.gif','000001000001000067000001000020'),('OiJNwP1gAlcva8_yOtL4gA','CrystalX_style','by Ning from Pluton -- http://pluton.nl\n\nCrystalX gives your site a crystal-ish look and a strictly formal style. Feel free to download and apply it to your own site.\n\nOriginally designed by \"Nuvio Webdesign\" and collected by Open Source Web Design, converted to WebGUI theme by Ning.','crystalx_style',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'CrystalX_style CrystalX_style by Ning from Pluton http://pluton.nl CrystalX gives your site a crystal-ish look and a strictly formal style Feel free to download and apply it to your own site Originally designed by Nuvio Webdesign and collected by Open Source Web Design converted to WebGUI theme by Ning crystalx style style','000001000001000067000002'),('JOuCU4x5BJfVHfkfMkVQdQ','crystalx.css','','crystalx/crystalx.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx.css crystalx.css crystalx crystalx.css Project CrystalX URL http://www.nuvio.cz Output device screen projection Author Vit Dlouhy vit.dlouhy@nuvio.cz Nuvio www.nuvio.cz Last revision 2006-12-05 12:00 GMT+1 Structure display | position | float | overflow | width | height | border | margin | padding | background | align | font min-height:1px body border:0 margin:0 padding:0 background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif 0 0 repeat-x font:70%/160 verdana\",sans-serif color:#192666 text-align:center a color:#192666 a:hover color:#4F6AD7 p border:0 margin:15px 0 padding:0 div display:block border:0 margin:0 padding:0 overflow:hidden h1 h2 h3 h4 h5 border:0 margin:15px 0 10px 0 padding:0 font-weight:bold h1 font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:normal h2 font-size:180 line-height:100 font-family:\"georgia\",serif font-weight:normal h3 font-size:120 line-height:100 font-weight:bold h4 font-size:120 h5 font-size:100 table display:table border-collapse:collapse margin:15px 1px padding:0 border:1px solid B7CAF6 font-size:100 tr display:table-row th td display table-cell border:1px solid B7CAF6 margin:0 padding:5px vertical-align:top text-align:left th background:#E7ECFD text-align:center color:#192666 font-weight:bold ul ol display:block border:0 margin:15px 0 15px 40px padding:0 ol list-style-type:decimal li display:list-item border:0 margin:0 padding:0 min-height:1px ul ul ul ol ol ol ol ul margin 0 0 0 20px dl border-bottom:1px solid E0E8FA margin:0 padding:5px 10px background:#CEDBF9 dt border:0 margin:0 padding:0 font-weight:bold dd border:0 margin:0 0 0 30px padding:0 form border:0 margin:0 padding:0 fieldset border:1px solid ccc margin:15px 0 padding:10px legend margin-left:10px font-size:100 font-weight:bold color:#008 hr height:1px width:724px margin 5px 23px padding 0 background:#CCC border:0 solid CCC color:#CCC a img span border:0 margin:0 padding:0 overflow:hidden abbr acronym border-bottom:1px dotted CCC cursor:help del through text-decoration:line-through strong strong font-weight:bold cite em q var font-style:italic code kbd samp font-family:monospace font-size:110 box min-height:1px box:after content display:block line-height:0px font-size:0px visibility:hidden clear:both nom margin:0 noscreen display:none main width:770px margin:0 auto text-align:left Top empty space for the background img to fit main topspace position:relative top:0 left:0 height:50px margin:0 padding:0 Header header position:relative width:770px height:100px margin:0 padding:0 background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg 0 0 no-repeat color:#FFFFFF Header logo header logo position:absolute top:35px left:35px margin:0 header logo a font-size:260 line-height:100 font-family:\"georgia\",serif font-weight:bold color:#FFF header logo a:hover color:#B5C4E3 text-decoration:none Header Search header search form position:absolute top:35px right:20px height:30px header search formContents position:absolute top:0 right:0px width:200px height:28px margin:0 padding:0 border:0 background:url(\'^FileUrl(/crystalx/img/search.png 0 0 no-repeat font:bold 90%/100 verdana\",sans-serif color:#192666 header search input#keywords_formId width:140px margin:5px 8px padding:3px 0 border:0 background:#FFF font:bold 100%/100 verdana\",sans-serif color:#192666 header search search_form position:absolute top:0 right:0px width:41px height:28px cursor:point margin:0 padding:0 Search Result header search search_result position:absolute top:220px header search home_link header search no_result header search pagination visibility:hidden page page-in pagination color:#6182D1 font-weight:bold padding:5px text-align:right page page-in pagination a color:#6182D1 page page-in pagination a:hover color:#192666 page page-in home_link padding:5px 5px 15px color:#6182D1 font-weight:bold text-align:right page page-in home_link a color:#6182D1 page page-in home_link a:hover color:#192666 search_result margin:10px 0 dl#odd background:#A0B9F3 page page-in no_result margin:0 10px color:#192666 font-weight:bold Main menu tabs menu background:#192666 margin:0 5px padding:10px 10px 0 height:32px overflow:hidden menu a cursor:pointer font-size:11px Page dynamic page width:770px background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y page-in min-height:400px background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg 0 0 no-repeat padding:10px 0 0 Strip strip position:relative clear:both padding:3px 20px 10px 20px color:#6182D1 Strip Location strip location float left background:url(\'^FileUrl(/crystalx/img/ico_comments.gif 0 50 no-repeat padding 0 15px strip location a color:#6182D1 strip location a:hover color:#192666 strip location a#currentpage font-weight:bold text-decoration:none Strip DateTime strip datetime float:right background:url(\'^FileUrl(/crystalx/img/ico_date.gif 0 50 no-repeat padding 0 10px 0 15px Content Container contentContainer margin:0 padding:0 20px width:730px overflow:hidden Contents contentContainer content clear:both margin:10px 10px 0 0 padding:20px max-width:710px background:url(\'^FileUrl(/crystalx/img/content_all_bg.png 0 0 no-repeat overflow:hidden contentContainer content h2 margin:0 10px padding:10px 25px color:#192666 background:url(\'^FileUrl(/crystalx/img/ico_list.gif 0 50 no-repeat contentContainer content p text-align:justify Utility utility background FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg 0 0 repeat-y padding 10px 0 15px Utility Toggles toggles font-size:10px font-weight:bold text-align:left margin-left:42px toggles a margin:0 10px padding:2px 0 text-decoration:none border-bottom:1px dashed color:#6182D1 toggles a:hover border-bottom:1px solid color:#4F6AD7 toggles span.userAcc background:url(\'^FileUrl(/crystalx/img/ico_user.gif 0 50 no-repeat margin 0 0 0 8px Footer footer position:relative clear:both width:770px height:80px margin-bottom:30px background:url(\'^FileUrl(/crystalx/img/footer.jpg 0 0 no-repeat color:#6685CC footer a color:#6685CC footer a:hover color:#192666 Footer back on top top position:absolute top:55px left:550px top p position:relative width:30px height:25px margin:0 overflow:hidden top p a display:block position:absolute left:0 top:0 z-index:1 width:30px height:25px background:url(\'^FileUrl(/crystalx/img/ico_top.gif 0 0 no-repeat cursor:pointer top a:hover background:url(\'^FileUrl(/crystalx/img/ico_top.gif 30px 0 no-repeat Footer copyright footer p#copyright position:absolute top:10px left:40px margin:0 Footer created by createdby position:absolute top:10px left:562px margin:0 color:#8CA3D8 createdby a color:#8CA3D8','000001000001000067000003'),('Am1J-meNBmhqFfEIWy6Gag','crystalX_Navigation','','crystalx/crystalx_navigation',1273032718,1273032718,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'crystalX_Navigation crystalX_Navigation crystalx crystalx navigation','000001000001000067000004'),('gaIOm5cr2TkT9Fk6QmZWug','crystalX_navi','','crystalx/crystalx_navi',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalX_navi crystalX_navi crystalx crystalx navi Navigation','000001000001000067000005'),('w0QifHLhsrzeOpFKl-DX-Q','crystalx_navi.css','','crystalx/crystalx_navi.css',1273032718,1273032718,'3','7','3','WebGUI::Asset::Snippet',0,'crystalx_navi.css crystalx_navi.css crystalx crystalx navi.css ','000001000001000067000006'),('x_hiUi1XZloBvV47Obnu8Q','crystalX_NavigationTrail','','crystalx/crystalx_navigationtrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'crystalX_NavigationTrail crystalX_NavigationTrail crystalx crystalx navigationtrail','000001000001000067000007'),('hpCk0B3vQzgc-QJhSol41w','crystalX_navitrail','','crystalx/crystalx_navitrail',1273032718,1273032718,'3','7','12','WebGUI::Asset::Template',0,'crystalX_navitrail crystalX_navitrail crystalx crystalx navitrail Navigation','000001000001000067000008'),('UUwEL6hLEPdrnkZnKRzFYQ','Site Search','','crystalx/site-search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Site Search Site Search crystalx site search','000001000001000067000009'),('OfKbvK7CrfMnfc8WDoF4Rg','crystalx_search','','crystalx/crystalx_search',1273032718,1273032718,'3','7','3','WebGUI::Asset::Template',0,'crystalx_search crystalx_search crystalx crystalx search Search','000001000001000067000010'),('CQp-RFA2pMh5lFSggPPPYg','[Style] Underground','Templates and images for the \"Underground\" style from StyleShout.com ','style-underground',1273032719,1273032719,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Style Underground Style Underground style underground Templates and images for the Underground style from StyleShout.com','000001000001000068'),('_Mi_NTd3x8UB96LWezWHnw','Images','','style-underground/images',1273032719,1273032719,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Images Images style underground images','000001000001000068000001'),('A_5LVQQWR73QZR8FFbny_w','bg.gif','','style-underground/images/bg.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'bg.gif bg.gif style underground images bg.gif','000001000001000068000001000001'),('wywIfa_VuTsq0c5Ed-W-MA','bullet.gif','','style-underground/images/bullet.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'bullet.gif bullet.gif style underground images bullet.gif','000001000001000068000001000002'),('xmykMFjri1O2NrYHbeToVQ','footerbg.gif','','style-underground/images/footerbg.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'footerbg.gif footerbg.gif style underground images footerbg.gif','000001000001000068000001000003'),('0IIGNBs_-INzqBC5VLeJgw','headerbg.gif','','style-underground/images/headerbg.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'headerbg.gif headerbg.gif style underground images headerbg.gif','000001000001000068000001000004'),('FXmePdyS0YKuZ1VCGGpK9w','quote.gif','','style-underground/images/quote.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'quote.gif quote.gif style underground images quote.gif','000001000001000068000001000005'),('66qCywiE_fiL9u5YIaJhgw','tableft.gif','','style-underground/images/tableft.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'tableft.gif tableft.gif style underground images tableft.gif','000001000001000068000001000006'),('n5VpG4lFsOG1elaWDQbilw','tabright.gif','','style-underground/images/tabright.gif',1273032719,1273032719,'3','7','3','WebGUI::Asset::File::Image',1,'tabright.gif tabright.gif style underground images tabright.gif','000001000001000068000001000007'),('g3JH1PRq6m6Bj_PnGpcrSQ','CSS','','style-underground/css',1273032719,1273032719,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'CSS CSS style underground css','000001000001000068000002'),('egpnaaFqWmJwYTZ5CvFH9g','Underground.css','','style-underground/css/underground.css',1273032719,1273032719,'3','7','3','WebGUI::Asset::Snippet',0,'Underground.css Underground.css style underground css underground.css AUTHOR Erwin Aligam WEBSITE http://www.styleshout.com TEMPLATE NAME Underground TEMPLATE CODE S-0006 VERSION 1.1 Changes for WebGUI by Doug Bell Preaction doug@plainblack.com HTML ELEMENTS top elements margin 0 padding 0 body margin 0 padding 0 font 70%/1.5 Verdana Tahoma Arial Helvetica sans-serif color 333 background FFF url(^FileUrl(style-underground/images/bg.gif repeat-x links a color 003366 background-color inherit text-decoration none a:hover color CC0001 background-color inherit headers h1 h2 h3 font-family Arial Trebuchet MS Sans-Serif font-weight bold color 333 h1 font-size 120 letter-spacing 5px h2 font-size 115 text-transform uppercase h3 font-size 115 color 003366 images img border 2px solid CCC img.float-right margin 5px 0px 10px 10px img.float-left margin 5px 10px 10px 0px h1 h2 h3 p padding 0 margin 10px ul ol margin 10px 20px padding 0 20px code margin 10px 0 padding 10px text-align left display block overflow auto font 500 1em/1.5em Lucida Console courier new monospace white-space pre background FAFAFA border 1px solid f2f2f2 border-left 4px solid CC0000 acronym cursor help border-bottom 1px solid 777 blockquote margin 10px padding 0 0 0 32px background FAFAFA url(^FileUrl(style-underground/images/quote.gif no-repeat 5px 10px important background-position 8px 10px border 1px solid f2f2f2 border-left 4px solid CC0000 font-weight bold form elements form margin:10px padding 0 5px border 1px solid f2f2f2 background-color FAFAFA label display:block font-weight:bold margin:5px 0 input padding 2px border:1px solid eee font normal 1em Verdana sans-serif color:#777 textarea width:400px padding:2px font normal 1em Verdana sans-serif border:1px solid eee height:100px display:block color:#777 input.button margin 0 font bolder 12px Arial Sans-serif border 1px solid CCC padding 1px background FFF color CC0000 search form form.search position absolute top 5px right 5px padding 0 margin 0 border none background-color transparent form.search input.textbox margin 0 width 120px border 1px solid CCC background FFF color 333 form.search input.searchbutton margin 0 font-size 100 font-family Arial Sans-serif border 1px solid CCC background FFFFFF url(^FileUrl(style-underground/images/headerbg.gif repeat-x bottom left padding 1px font-weight bold height 23px color 333 width 60px LAYOUT wrap margin 0 auto width 90 header header position relative margin 0 padding 0 height 60px header span#slogan z-index 3 position absolute left 3px bottom 7px font bold 1.2em Verdana Arial Tahoma Sans-serif color FFF header-logo position relative clear both height 50px margin 0 padding 0 header-logo logo position absolute top 3px left 5px font bold 30px trebuchet MS Arial Tahoma Sans-Serif margin 0 padding 0 letter-spacing 1px color 000 navigation tabs header ul position absolute margin:0 list-style:none right:-18px bottom 3px font bold 13px Trebuchet MS Arial Sans-serif header li display:inline margin:0 padding:0 header a float:left background url(^FileUrl(style-underground/images/tableft.gif no-repeat left top margin:0 padding:0 0 0 4px text-decoration:none header a span float:left display:block background url(^FileUrl(style-underground/images/tabright.gif no-repeat right top padding:5px 15px 4px 6px color:#FFF Commented Backslash Hack hides rule from IE5-Mac header a span float:none End IE5-Mac hack header a:hover span color:#FFF header a:hover background-position:0 42px header a:hover span background-position:100 42px header current a background-position:0 42px header current a span background-position:100 42px main column main float right margin 0 padding 0 width 78 main h1 margin 10px 0 padding 4px 0 4px 8px font-size 105 color FFF text-transform uppercase background-color CC0000 letter-spacing 5px sidebar sidebar float left width 20 margin 0 padding 0 background-color FFFFFF sidebar h1 margin 10px 0 0 0 padding 4px 0 4px 8px font bold 105 Arial Sans-Serif color FFF text-transform uppercase background 333 letter-spacing 1px sidebar left-box border 1px solid EBEBEB margin 0 0 5px 0 background FFF sidebar ul.sidemenu list-style none text-align left margin 3px 0px 8px 0 padding 0 text-decoration none sidebar ul.sidemenu li border-bottom 1px solid f2f2f2 background url(^FileUrl(style-underground/images/bullet.gif no-repeat 3px 2px padding 3px 5px 3px 25px margin 0 sidebar ul.sidemenu a font-weight bolder padding 3px 0px background none footer footer clear both border-top 1px solid f2f2f2 background FFF url(^FileUrl(style-underground/images/footerbg.gif repeat-x padding 2px 0 10px 0 text-align center line-height 1.5em font-size 95 footer a text-decoration none font-weight bold alignment classes float-left float left float-right float right align-left text-align left align-right text-align right display and additional classes clear clear both red color CC0000 comments margin 20px 10px 5px 10px padding 3px 0 border-bottom 1px dashed EFF0F1 border-top 1px dashed EFF0F1 ','000001000001000068000002000001'),('BBpxqoSseIor5C9ei9JEFQ','Underground WebGUI.css','','style-underground/css/underground-webgui.css',1273032719,1273032719,'3','7','3','WebGUI::Asset::Snippet',0,'Underground WebGUI.css Underground WebGUI.css style underground css underground webgui.css wg-toolbar p margin 0px img.wg-toolbar-icon border 0px none toolbarIcon margin 0px ','000001000001000068000002000002'),('G0hl4VilbFKipToyxKqFrg','Prototypes','This folder holds prototype WebGUI assets with the correct templates pre-selected. ','style-underground/prototypes',1273032719,1273032719,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Prototypes Prototypes style underground prototypes This folder holds prototype WebGUI assets with the correct templates pre-selected','000001000001000068000003'),('GWU2qZqe6yEuAKG-5HtBdg','Templates','','style-underground/templates',1273032719,1273032719,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Templates Templates style underground templates','000001000001000068000004'),('Qk24uXao2yowR6zxbVJ0xA','[style] Underground','by Doug from Plain Black http://plainblack.com\r\n\r\nThis is the Underground style from http://www.styleshout.com/ made into a WebGUI package. A simple, functional style.','style-underground/style-underground',1273032719,1273032719,'3','7','3','WebGUI::Asset::Template',0,'style Underground style Underground by Doug from Plain Black http://plainblack.com This is the Underground style from http://www.styleshout.com made into a WebGUI package A simple functional style style underground style underground style','000001000001000068000004000001'),('39KNX53B4nYJAyIE1lu8ZQ','[nav] Underground Top Navigation','','style-underground/nav-underground-top-navigation',1273032720,1273032720,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Top Navigation nav Underground Top Navigation style underground nav underground top navigation Navigation','000001000001000068000004000002'),('ztfi__vHJLsQDsMenrEn-w','[nav] Underground Side Navigation','','style-underground/nav-underground-side-navigation',1273032720,1273032720,'3','7','3','WebGUI::Asset::Template',0,'nav Underground Side Navigation nav Underground Side Navigation style underground nav underground side navigation Navigation','000001000001000068000004000003'),('8qyrDCNeggB4dzKiOoRuiQ','[admintoggle] Underground Admin Toggle','','style-underground/templates/admintoggle-underground-admin-toggle',1273032720,1273032720,'3','7','3','WebGUI::Asset::Template',0,'admintoggle Underground Admin Toggle admintoggle Underground Admin Toggle style underground templates admintoggle underground admin toggle AdminToggle','000001000001000068000004000004'),('M1NyNeS5jpdIsiIWFiJprw','View My Account','','style-underground/templates/view-my-account',1273032720,1273032720,'3','7','3','WebGUI::Asset::Template',0,'View My Account View My Account style underground templates view my account Macro/a_account','000001000001000068000004000005'),('AsfpsOpsGzZCb9m7MyxPuw','Navigation','','style-underground/navigation',1273032720,1273032720,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Navigation Navigation style underground navigation','000001000001000068000005'),('n-Vr_wgxOkwiHGt1nJto9w','Top Navigation','','style-underground/top-navigation',1273032720,1273032720,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Top Navigation Top Navigation style underground top navigation','000001000001000068000005000001'),('jmqLxnoWb6p92Cr12lf1hw','Side Navigation','','style-underground/side-navigation',1273032720,1273032720,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'Side Navigation Side Navigation style underground side navigation','000001000001000068000005000002'),('8E2UOnj_XPEghTj7nfVM0g','Search','','style-underground/search',1273032720,1273032720,'3','7','3','WebGUI::Asset::Wobject::Search',1,'Search Search style underground search','000001000001000068000006'),('1qFjOEiILIwr1xB5_ebppQ','Greenportal','','greenportal',1273032721,1273032721,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal Greenportal greenportal','000001000001000069'),('xD76UfQ_JnSgTLBNvytcpQ','greenportal_image','','greenportal_image',1273032721,1273032721,'3','7','12','WebGUI::Asset::Wobject::Folder',1,'greenportal_image greenportal_image greenportal image','000001000001000069000001'),('pAXR7Kby4O-dSxOwLp1GaA','menu_top.png','','greenportal_image/menu_top.png',1273032721,1273032721,'3','7','12','WebGUI::Asset::File::Image',1,'menu_top.png menu_top.png greenportal image menu top.png','000001000001000069000001000001'),('TthzMLO4n3qxy59QZ5YBHg','menu_dark.png','','greenportal_image/menu_dark.png',1273032721,1273032721,'3','7','12','WebGUI::Asset::File::Image',1,'menu_dark.png menu_dark.png greenportal image menu dark.png','000001000001000069000001000002'),('3n31SQjYa150TBrRBgMPhA','menu_light.png','','greenportal_image/menu_light.png',1273032721,1273032721,'3','7','12','WebGUI::Asset::File::Image',1,'menu_light.png menu_light.png greenportal image menu light.png','000001000001000069000001000003'),('R4RxDufGbbIzEmpcoEcLrw','logo.jpg','','greenportal_image/logo.jpg',1273032721,1273032721,'3','7','12','WebGUI::Asset::File::Image',1,'logo.jpg logo.jpg greenportal image logo.jpg','000001000001000069000001000004'),('xyyn5mz3xGyvrcI1rY8C-w','greenportal.css','','greenportal.css',1273032721,1273032721,'3','7','12','WebGUI::Asset::Snippet',0,'greenportal.css greenportal.css greenportal.css CSS Document body,html text-align:center height 100 margin 3px 3px 3px 3px font-family Verdana Sans-Serif line-height 125 color:#CCCCCC background 222625 h1,h2,h3,h4,h5,h6{font-weight:bold h1{font-size:18px h2{font-size:16px h3{font-size:14px h4{font-size:12px h5{font-size:11px h6{font-size:10px main width:80 height:100 margin-left:auto margin-right:auto position:relative body > main height:auto min-height:100 font-size:10px main mainHeader width:100 height:125px background url(\'^FileUrl(/greenportal_image/logo.jpg top center no-repeat margin-bottom:5px position:relative main mainHeader title position:absolute top:55px left:180px font-size:36pt font-family Edwardian Script ITC Arial Sans-Serif font-variant small-caps font-style italic color:#CCCCCC font-weight bold overflow visible padding 20px main mainHeader title a color:#CCCCCC text-decoration:none main mainHeader title a:hover color:#FFFFFF text-decoration:none font-size:37pt main mainMenu width:186px position:absolute top:125px left:0px main mainMenu li list-style none font-size 9pt text-align:left main mainMenu menuTop color:#99CC33 background url(\'^FileUrl(/greenportal_image/menu_top.png no-repeat margin-left:-3px padding:2px 0px 3px 26px width:162px 186px-24px font-size:10pt font-weight bold main mainMenu indent1 margin-left:0px width:186px main mainMenu indent2 margin-left:17px width:168px 186-17px main mainMenu a display:block height:24px font-weight:bold text-decoration:none color:#CCCCCC background url(\'^FileUrl(/greenportal_image/menu_dark.png no-repeat padding:2px 0px 0px 24px main mainMenu a:hover,active display:block height:24px font-weight:bold text-decoration:none color:#FFFFFF background url(\'^FileUrl(/greenportal_image/menu_light.png no-repeat padding:2px 0px 0px 24px main mainContent width:75 height:100 margin-top:5px margin-left:215px text-align:left border 1px solid CCCCCC main > mainContent margin-top:0px min-height:500px main > mainContent > p margin-top:0px main mainContent topMenu margin-right 10px text-align right font-size 8pt font-weight bold main mainContent topMenu a color 99CC33 text-decoration none main mainContent topMenu a:hover text-decoration:underline main mainContent mainText margin 10px 5px 5px 10px font-size:8pt padding 5px min-height 423px text-align left main mainContent mainText a color:#FFFFFF text-decoration none font-weight bold main mainContent mainText a:hover color:#FFFF00 text-decoration none font-weight bold main mainFooter text-align:left padding:10px margin:5px 0px 5px 200px width:75 font-size:9px background:url(^FileUrl(/greenportal_image/logo.jpg no-repeat main mainFooter a color:#CCCCCC font-weight:bold text-decoration:none main mainFooter a:hover color:#FFFFFF font-weight:bold text-decoration:none ','000001000001000069000002'),('KKt0VB_eoQxw9xEsHsAhag','Greenportal_style','by Ning from PlutonIT http://pluton.nl\n\nA Joomla! Open Source design released under the GNU/GPL License. Enhanced and converted into WebGUI theme by Ning. The original PHP and CSS file can be downloaded following the author\'s link: http://www.studentsdesign.de/','greenportal_style',1273032721,1273032721,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_style Greenportal_style by Ning from PlutonIT http://pluton.nl A Joomla Open Source design released under the GNU/GPL License Enhanced and converted into WebGUI theme by Ning The original PHP and CSS file can be downloaded following the author\'s link http://www.studentsdesign.de greenportal style style','000001000001000069000003'),('h0bOzz7WvdaVZXsjpwtkww','greenportal_Navigation','','greenportal_navigation',1273032721,1273032721,'3','7','3','WebGUI::Asset::Wobject::Navigation',1,'greenportal_Navigation greenportal_Navigation greenportal navigation','000001000001000069000004'),('_z3ukLCqvoaUygfsbbkBzw','Greenportal_menu','','greenportal_menu',1273032721,1273032721,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_menu Greenportal_menu greenportal menu Navigation','000001000001000069000005'),('qFOfW1sKyOTnGNcP6BXbwg','greenportal_NavigationTop','','greenportal_navigationtop',1273032721,1273032721,'3','7','12','WebGUI::Asset::Wobject::Navigation',1,'greenportal_NavigationTop greenportal_NavigationTop greenportal navigationtop','000001000001000069000006'),('Pt38T5_MWSue2e1N36MLdw','Greenportal_menuTop','','greenportal_menutop',1273032721,1273032721,'3','7','12','WebGUI::Asset::Template',0,'Greenportal_menuTop Greenportal_menuTop greenportal menutop Navigation','000001000001000069000007'),('LDcM1Iop17nF2MoSa7zo_Q','Greenportal_dataform','','greenportal_dataform',1273032721,1273032721,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_dataform Greenportal_dataform greenportal dataform DataForm','000001000001000069000008'),('hVF1taXj4bfd7DuL4XDMYg','Greenportal_datalist','','greenportal_datalist',1273032721,1273032721,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_datalist Greenportal_datalist greenportal datalist DataForm/List','000001000001000069000009'),('x4-2QYRSrIB_BJfnSKKj4w','Greenportal_acknowledgement','','greenportal_acknowledgement',1273032721,1273032721,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_acknowledgement Greenportal_acknowledgement greenportal acknowledgement DataForm','000001000001000069000010'),('423R4Y6XIt3wUzlnLo-chg','Greenportal_forum','','greenportal_forum',1273032721,1273032721,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_forum Greenportal_forum greenportal forum Collaboration','000001000001000069000011'),('oZ1Mk-zExYUyD-JsjTvaHg','Greenportal_thread','','greenportal_thread',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_thread Greenportal_thread greenportal thread Collaboration/Thread','000001000001000069000012'),('mYwS8CZaOLMt0raaKXGZcQ','Greenportal_postform','','greenportal_postform',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_postform Greenportal_postform greenportal postform Collaboration/PostForm','000001000001000069000013'),('kSGR4OHsKmhLQTuLkisOww','Greenportal_search','','greenportal_search',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_search Greenportal_search greenportal search Collaboration/Search','000001000001000069000014'),('G5DgNizuG3jXkjPp6UaGrA','Greenportal_Calendar','','greenportal_calendar',1273032722,1273032722,'3','7','3','WebGUI::Asset::Wobject::Folder',1,'Greenportal_Calendar Greenportal_Calendar greenportal calendar','000001000001000069000015'),('U78V5IJHVljvRTb6ydsTHg','Greenportal_calendarMonth','','greenportal_calendar/greenportal_calendarmonth',1273032722,1279073449,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarMonth Greenportal_calendarMonth greenportal calendar greenportal calendarmonth Calendar/Month','000001000001000069000015000001'),('Xqc3qPUXoFE8dt9qocdWig','Greenportal_calendarWeek','','greenportal_calendar/greenportal_calendarweek',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarWeek Greenportal_calendarWeek greenportal calendar greenportal calendarweek Calendar/Week','000001000001000069000015000002'),('IBTb7wllSt7RxFmmvm9pkQ','Greenportal_calendarDay','','greenportal_calendar/greenportal_calendarday',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarDay Greenportal_calendarDay greenportal calendar greenportal calendarday Calendar/Day','000001000001000069000015000003'),('Z1EM7JMI_4SkyfaZffSElw','Greenportal_calendarEvent','','greenportal_calendar/greenportal_calendarevent',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEvent Greenportal_calendarEvent greenportal calendar greenportal calendarevent Calendar/Event','000001000001000069000015000004'),('fJg7SKpGZwzSNx3_ebki1A','Greenportal_calendarEventEdit','','greenportal_calendar/greenportal_calendareventedit',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarEventEdit Greenportal_calendarEventEdit greenportal calendar greenportal calendareventedit Calendar/EventEdit','000001000001000069000015000005'),('ihf4Rx6p72xn_nVKaIeOaw','Greenportal_calendarSearch','','greenportal_calendar/greenportal_calendarsearch',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_calendarSearch Greenportal_calendarSearch greenportal calendar greenportal calendarsearch Calendar/Search','000001000001000069000015000006'),('jrWJ6nHXkqgFbml7BZ9chw','Greenportal_submission','','greenportal_submission',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_submission Greenportal_submission greenportal submission Collaboration/Thread','000001000001000069000016'),('Ys6f3vpe0y1uRcaCJ2TlFw','Greenportal_messageboard','','greenportal_messageboard',1273032722,1273032722,'3','7','3','WebGUI::Asset::Template',0,'Greenportal_messageboard Greenportal_messageboard greenportal messageboard MessageBoard','000001000001000069000017'),('default_CS_unsubscribe','Default Collaboration System Unsubscribe','','collaboration_unsubscribe',1274238758,1277868922,'3','7','4','WebGUI::Asset::Template',0,'Default Collaboration System Unsubscribe Default Collaboration System Unsubscribe collaboration unsubscribe Collaboration/Unsubscribe','000001000001000008000030'),('_hELmIJfgbAyXFNqPyApxQ','admin.css','','root/import/gallery-templates/admin.css',1197330678,1277868923,'3','7','3','WebGUI::Asset::Snippet',0,'admin.css admin.css root import gallery templates admin.css adminWrapper text-align:left font-family:arial font-size:11px position relative z-index 2 h2 font-size:15px messageStyle font-weight:bold font-family:arial font-size:10px margin-bottom:8px adminButton border:solid silver 1px background-color:#e0e0e0 font-weight:bold font-size:10px color:#333 cursor:pointer padding 0.5em 1em adminTable border:solid silver 1px background-color:#F0F0F0 color black width:320px padding:5px adminTable select adminTable input adminTable textarea border:solid gray 1px font-size:10px padding-left:5px label white-space:nowrap text-align:right padding-right:10px font-weight:bold width:1px vertical-align:top galleryOrg list-style-type:none display:block width:95 margin-top:3px padding-top:10px margin-left:5px border:gray solid 1px text-align:center font-family:verdana,arial font-size:9pt background-color:#dedede galleryOrgList margin 0px padding 0px galleryOrg left float left width 36 galleryOrg right width 63 galleryOrg img display:block height:150px margin:0px auto border none galleryOrg select galleryOrg input galleryOrg textarea border:solid gray 1px font-size:10px padding-left:5px promote margin-left:3px promote img height:14px width:16px demote margin-right:3px demote img height:14px width:16px delete img height 14px numbering position:absolute top:0px left:0px padding:1px background-color:black color:white moz-border-radius-bottomRight:5px input.captionEnter width:93px clear:both margin-bottom:3px galleryOrg button border-style:none background:none galleryOrg button img width:16px height:auto galleryOrg synopsis input width:80px ','000001000001000015000015'),('mfHGkp6t9gdclmzN33OEnw','Default Twitter Choose Username','','root/import/auth/twitter/chooseusername/default-twitter-choose-username',1277868927,1277868927,'3','7','12','WebGUI::Asset::Template',0,'Default Twitter Choose Username Default Twitter Choose Username root import auth twitter chooseusername default twitter choose username Auth/Twitter/ChooseUsername','000001000001000070'); -ALTER TABLE `assetIndex` ENABLE KEYS; -ALTER TABLE `assetVersionTag` DISABLE KEYS; -INSERT INTO `assetVersionTag` VALUES ('pbversion0000000000001','Base 7.9.9 Install',1,1279073453,'3',1279073453,'3',0,'','3','',NULL,NULL,NULL,NULL,0); -ALTER TABLE `assetVersionTag` ENABLE KEYS; -ALTER TABLE `authentication` DISABLE KEYS; -INSERT INTO `authentication` VALUES ('1','LDAP','ldapUrl',NULL),('3','LDAP','ldapUrl',''),('1','LDAP','connectDN',NULL),('3','LDAP','connectDN',''),('1','WebGUI','identifier','No Login'),('3','WebGUI','identifier','RvlMjeFPs2aAhQdo/xt/Kg'),('1','WebGUI','passwordLastUpdated','1078704037'),('1','WebGUI','passwordTimeout','3122064000'),('1','WebGUI','changeUsername','1'),('1','WebGUI','changePassword','1'),('3','WebGUI','passwordLastUpdated','1078704037'),('3','WebGUI','passwordTimeout','3122064000'),('3','WebGUI','changeUsername','1'),('3','WebGUI','changePassword','1'); -ALTER TABLE `authentication` ENABLE KEYS; -ALTER TABLE `databaseLink` DISABLE KEYS; -INSERT INTO `databaseLink` VALUES ('0',NULL,NULL,NULL,NULL,NULL,1,''); -ALTER TABLE `databaseLink` ENABLE KEYS; -ALTER TABLE `groupGroupings` DISABLE KEYS; -INSERT INTO `groupGroupings` VALUES ('11','12'),('3','11'),('3','12'),('3','13'),('3','14'),('3','2'),('3','4'),('3','6'),('3','7'),('3','8'),('3','pbgroup000000000000015'),('3','pbgroup000000000000016'),('3','pbgroup000000000000017'),('4','12'),('6','12'),('8','12'); -ALTER TABLE `groupGroupings` ENABLE KEYS; -ALTER TABLE `groupings` DISABLE KEYS; -INSERT INTO `groupings` VALUES ('1','1',2114402400,0),('3','3',2114402400,0),('7','1',2114402400,0),('7','3',2114402400,0),('2','3',2114402400,0); -ALTER TABLE `groupings` ENABLE KEYS; -ALTER TABLE `groups` DISABLE KEYS; -INSERT INTO `groups` VALUES ('1','Visitors','This is the public group that has no privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),('2','Registered Users','All registered users belong to this group automatically. There are no associated privileges other than that the user has an account and is logged in.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),('3','Admins','Anyone who belongs to this group has privileges to do anything and everything.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('4','Content Managers','Users that have privileges to edit content on this site. The user still needs to be added to a group that has editing privileges on specific pages.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('6','Package Managers','Users that have privileges to add, edit, and delete packages of wobjects and pages to deploy.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('7','Everyone','A group that automatically includes all users including Visitors.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),('8','Template Managers','Users that have privileges to edit templates for this site.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('13','Export Managers','Users in this group can export pages to disk.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('11','Secondary Admins','Users that have limited administrative privileges.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('12','Turn Admin On','These users can enable admin mode.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('14','Product Managers','The group that is allowed to edit, delete and create products.',314496000,1000000000,NULL,997938000,997938000,14,-14,NULL,0,NULL,0,0,'',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('pbgroup000000000000015','Workflow Managers','People who can create, edit, and delete workflows.',314496000,1000000000,NULL,1147642408,1147642408,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('pbgroup000000000000016','Version Tag Managers','People who can create, edit, and delete special version tags.',314496000,1000000000,NULL,1147642408,1147642408,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('pbgroup000000000000017','Ad Manager','These users will be able to manage advertisements.',314496000,1000000000,NULL,1147642437,1147642437,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0),('Fwa7nt7HAQkelbjCRrtqKQ','Admin Friends','Friends of user 3',1892160000,1000000000,NULL,1251850059,1251850059,14,-14,NULL,0,NULL,0,0,'0',3600,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0); -ALTER TABLE `groups` ENABLE KEYS; -ALTER TABLE `imageColor` DISABLE KEYS; -INSERT INTO `imageColor` VALUES ('UVL-iDSq7VTks3RCH2FEWg','Green','#31ca31','99','#31ca31','00'),('3Tf0W_tkAjR902FJcGZxCg','Blue','#007dff','99','#007dff','00'),('fuFripVJ4es4bUBPOq3ENQ','Yellow','#ffda08','99','#ffda08','00'),('n3yfk8JGilmChSer2xuZ0w','Orange','#FF8000','99','#FF8000','00'),('W683fO6r8uHgZ-Z-VodY7w','Red','#FF2000','99','#FF2000','00'),('pSnxDIInB9r0n06q6kKV3w','Purple','#FF00B0','99','#FF00B0','00'); -ALTER TABLE `imageColor` ENABLE KEYS; -ALTER TABLE `imageFont` DISABLE KEYS; -INSERT INTO `imageFont` VALUES ('defaultFont','WebGUI default font',NULL,'default.ttf'); -ALTER TABLE `imageFont` ENABLE KEYS; -ALTER TABLE `imagePalette` DISABLE KEYS; -INSERT INTO `imagePalette` VALUES ('defaultPalette','Default palette'); -ALTER TABLE `imagePalette` ENABLE KEYS; -ALTER TABLE `imagePaletteColors` DISABLE KEYS; -INSERT INTO `imagePaletteColors` VALUES ('defaultPalette','UVL-iDSq7VTks3RCH2FEWg',1),('defaultPalette','3Tf0W_tkAjR902FJcGZxCg',2),('defaultPalette','fuFripVJ4es4bUBPOq3ENQ',3),('defaultPalette','n3yfk8JGilmChSer2xuZ0w',4),('defaultPalette','W683fO6r8uHgZ-Z-VodY7w',5),('defaultPalette','pSnxDIInB9r0n06q6kKV3w',6); -ALTER TABLE `imagePaletteColors` ENABLE KEYS; -ALTER TABLE `incrementer` DISABLE KEYS; -INSERT INTO `incrementer` VALUES ('submissionId',1); -ALTER TABLE `incrementer` ENABLE KEYS; -ALTER TABLE `ldapLink` DISABLE KEYS; -INSERT INTO `ldapLink` VALUES ('1uBbhUm686mkFZ1ghv7Lag','Default LDAP Connection','ldap://ldap.mycompany.com:389/o=MyCompany','','','cn','shortname','LDAP Shortname','LDAP Password','0','Welcome to our site.','PBtmpl0000000000000004','PBtmpl0000000000000005','PBtmpl0000000000000006',NULL,'_P4PMiraGsLTfOjK4fYQPQ'); -ALTER TABLE `ldapLink` ENABLE KEYS; -ALTER TABLE `passiveAnalyticsStatus` DISABLE KEYS; -INSERT INTO `passiveAnalyticsStatus` VALUES (NULL,NULL,0,'3'); -ALTER TABLE `passiveAnalyticsStatus` ENABLE KEYS; -ALTER TABLE `paymentGateway` DISABLE KEYS; -INSERT INTO `paymentGateway` VALUES ('gzUxkEZJxREF9JpylOg2zw','WebGUI::Shop::PayDriver::Cash','{\"summaryTemplateId\":\"30h5rHxzE_Q0CyI3Gg7EJw\",\"groupToUse\":7,\"label\":\"Cash\",\"enabled\":1}'),('BaSs55o1bnOlAj4F0hHYag','WebGUI::Shop::PayDriver::ITransact','{\"credentialsTemplateId\":\"itransact_credentials1\",\"groupToUse\":7,\"label\":\"ITransact\",\"enabled\":1}'); -ALTER TABLE `paymentGateway` ENABLE KEYS; -ALTER TABLE `replacements` DISABLE KEYS; -INSERT INTO `replacements` VALUES ('1','[quote]','
'),('2','[/quote]','
'),('3','[image]',''),('5','shit','crap'),('6','fuck','farg'),('7','asshole','icehole'),('8','nigger','guy'); -ALTER TABLE `replacements` ENABLE KEYS; -ALTER TABLE `search` DISABLE KEYS; -INSERT INTO `search` VALUES ('UUwEL6hLEPdrnkZnKRzFYQ',1273032718,'WebGUI::Asset\nWebGUI::Asset::Event\nWebGUI::Asset::File\nWebGUI::Asset::File::Image\nWebGUI::Asset::Post\nWebGUI::Asset::Post::Thread\nWebGUI::Asset::RichEdit\nWebGUI::Asset::RSSFromParent\nWebGUI::Asset::Snippet\nWebGUI::Asset::Template\nWebGUI::Asset::Wobject::Article\nWebGUI::Asset::Wobject::Calendar\nWebGUI::Asset::Wobject::Collaboration\nWebGUI::Asset::Wobject::DataForm\nWebGUI::Asset::Wobject::Folder\nWebGUI::Asset::Wobject::MessageBoard\nWebGUI::Asset::Wobject::Navigation\nWebGUI::Asset::Wobject::SyndicatedContent\nWebGUI::Asset::Wobject::Thingy','68sKwDgf9cGH58-NZcU4lg','OfKbvK7CrfMnfc8WDoF4Rg',1,10),('8E2UOnj_XPEghTj7nfVM0g',1273032720,NULL,'68sKwDgf9cGH58-NZcU4lg','PBtmpl0000000000000200',0,25); -ALTER TABLE `search` ENABLE KEYS; -ALTER TABLE `settings` DISABLE KEYS; -INSERT INTO `settings` VALUES ('maxAttachmentSize','100000'),('sessionTimeout','7200'),('smtpServer','localhost'),('companyEmail','info@mycompany.com'),('companyName','My Company'),('companyURL','http://www.mycompany.com'),('authMethod','WebGUI'),('anonymousRegistration','0'),('notFoundPage','68sKwDgf9cGH58-NZcU4lg'),('webguiRecoverPasswordEmail','Someone (probably you) requested your account information be sent. Your password has been reset. The following represents your new account information:'),('profileName','1'),('profileExtraContact','1'),('profileMisc','1'),('profileHome','0'),('profileWork','0'),('preventProxyCache','0'),('thumbnailSize','50'),('textBoxSize','30'),('defaultPage','68sKwDgf9cGH58-NZcU4lg'),('defaultVersionTagWorkflow','pbworkflow000000000003'),('useKarma','0'),('karmaPerLogin','1'),('runOnRegistration',''),('maxImageSize','100000'),('showDebug','0'),('richEditor','PBrichedit000000000001'),('selfDeactivation','1'),('snippetsPreviewLength','30'),('mailFooter','^c;\n^e;\n^u;\n'),('webguiSendWelcomeMessage','0'),('webguiWelcomeMessage','Welcome to our site.'),('encryptLogin','0'),('hostToUse','HTTP_HOST'),('webguiExpirePasswordOnCreation','0'),('webguiPasswordLength','0'),('webguiPasswordRecovery','0'),('webguiPasswordTimeout','3122064000'),('webguiChangePassword','1'),('webguiChangeUsername','1'),('metaDataEnabled','0'),('passiveProfilingEnabled','0'),('urlExtension',''),('AdminConsoleTemplate','PBtmpl0000000000000001'),('userFunctionStyleId','stevestyle000000000003'),('webguiValidateEmail','0'),('webguiUseCaptcha','1'),('webguiAccountTemplate','PBtmpl0000000000000010'),('webguiCreateAccountTemplate','PBtmpl0000000000000011'),('webguiExpiredPasswordTemplate','PBtmpl0000000000000012'),('webguiLoginTemplate','PBtmpl0000000000000013'),('webguiPasswordRecoveryTemplate','PBtmpl0000000000000014'),('ldapConnection','1uBbhUm686mkFZ1ghv7Lag'),('debugIp',''),('showPerformanceIndicators','0'),('mailReturnPath',NULL),('webguiNonWordCharacters','0'),('webguiRequiredMixedCase','0'),('webguiRequiredDigits','0'),('automaticLDAPRegistration','0'),('trashWorkflow',NULL),('purgeWorkflow',NULL),('changeUrlWorkflow',NULL),('webguiPasswordRecoveryRequireUsername','1'),('groupIdCashier','3'),('skipCommitComments','1'),('groupIdAdminCache','3'),('groupIdAdminSpectre','3'),('groupIdAdminAdSpace','3'),('groupIdAdminWorkflow','pbgroup000000000000015'),('groupIdAdminGroupAdmin','11'),('groupIdAdminProfileSettings','3'),('groupIdAdminDatabaseLink','3'),('groupIdAdminActiveSessions','3'),('groupIdAdminLDAPLink','3'),('groupIdAdminStatistics','3'),('groupIdAdminHelp','7'),('groupIdAdminCommerce','3'),('groupIdAdminWorkflowRun','3'),('groupIdAdminUserAdd','11'),('groupIdAdminUser','3'),('groupIdAdminVersionTag','12'),('groupIdAdminGraphics','3'),('groupIdAdminGroup','3'),('groupIdAdminCron','3'),('groupIdAdminLoginHistory','3'),('groupIdAdminReplacements','3'),('runOnAdminCreateUser',''),('runOnAdminUpdateUser',''),('shopCartTemplateId','aIpCmr9Hi__vgdZnDTz1jw'),('shopAddressBookTemplateId','3womoo7Teyy2YKFa25-MZg'),('shopAddressTemplateId','XNd7a_g_cTvJVYrVHcx2Mw'),('shopMyPurchasesTemplateId','2gtFt7c0qAFNU3BG_uvNvg'),('shopMyPurchasesDetailTemplateId','g8W53Pd71uHB9pxaXhWf_A'),('showMessageOnLoginTimes','0'),('showMessageOnLogin','0'),('showMessageOnLoginBody',''),('versionTagMode','autoCommit'),('profileStyleTemplateId',''),('profileLayoutTemplateId','FJbUTvZ2nUTn65LpW6gjsA'),('profileEditTemplateId','75CmQgpcCSkdsL-oawdn3Q'),('inboxStyleTemplateId',''),('inboxViewTemplateId','c8xrwVuu5QE0XtF9DiVzLw'),('inboxViewMessageTemplateId','0n4HtbXaWa_XJHkFjetnLQ'),('inboxSendMessageTemplateId','6uQEULvXFgCYlRWnYzZsuA'),('inboxErrorTemplateId','ErEzulFiEKDkaCDVmxUavw'),('inboxMessageConfirmationTemplateId','DUoxlTBXhVS-Zl3CFDpt9g'),('inboxManageInvitationsTemplateId','1Q4Je3hKCJzeo0ZBB5YB8g'),('inboxViewInvitationTemplateId','VBkY05f-E3WJS50WpdKd1Q'),('inboxInvitationConfirmTemplateId','5A8Hd9zXvByTDy4x-H28qw'),('inboxInviteUserEnabled','0'),('inboxInviteUserRestrictSubject','0'),('inboxInviteUserSubject','^International(invite subject,Account_Inbox,^u;);'),('inboxInviteUserRestrictMessage','0'),('inboxInviteUserMessage','^International(invite message,Account_Inbox);'),('inboxInviteUserMessageTemplateId','XgcsoDrbC0duVla7N7JAdw'),('inboxInviteUserTemplateId','cR0UFm7I1qUI2Wbpj--08Q'),('inboxInviteUserConfirmTemplateId','SVIhz68689hwUGgcDM-gWw'),('friendsStyleTemplateId',''),('friendsViewTemplateId','1Yn_zE_dSiNuaBGNLPbxtw'),('friendsEditTemplateId','AZFU33p0jpPJ-E6qLSWZng'),('friendsSendRequestTemplateId','AGJBGviWGAwjnwziiPjvDg'),('friendsErrorTemplateId','7Ijdd8SW32lVgg2H8R-Aqw'),('friendsConfirmTemplateId','K8F0j_cq_jgo8dvWY_26Ag'),('friendsRemoveConfirmTemplateId','G5V6neXIDiFXN05oL-U3AQ'),('userAccountStyleTemplateId',''),('userAccountLayoutTemplateId','9ThW278DWLV0-Svf68ljFQ'),('shopStyleTemplateId',''),('shopLayoutTemplateId','aUDsJ-vB9RgP-AYvPOy8FQ'),('contribStyleTemplateId',''),('contribLayoutTemplateId','b4n3VyUIsAHyIvT-W-jziA'),('contribViewTemplateId','1IzRpX0tgW7iuCfaU2Kk0A'),('profileViewTemplateId','2CS-BErrjMmESOtGT90qOg'),('profileErrorTemplateId','MBmWlA_YEA2I6D29OMGtRg'),('inboxLayoutTemplateId','gfZOwaTWYjbSoVaQtHBBEw'),('friendsLayoutTemplateId','zrNpGbT3odfIkg6nFSUy8Q'),('inboxRichEditId','PBrichedit000000000001'),('useRecaptcha',NULL),('recaptchaPublicKey',NULL),('recaptchaPrivateKey',NULL),('webguiAccountActivationTemplate','PBtmpl0000000000000016'),('groupIdAdminHistory','12'),('shopCartCheckoutMinimum','0.00'),('passiveAnalyticsInterval','300'),('passiveAnalyticsDeleteDelta','0'),('passiveAnalyticsEnabled','0'),('shopMySalesTemplateId','-zxyB-O50W8YnL39Ouoc4Q'),('webguiWelcomeMessageTemplate','PBtmpl0000000000000015'),('activeTaxPlugin','WebGUI::Shop::TaxDriver::Generic'),('globalHeadTags',''),('useMobileStyle','0'),('inboxCopySender','0'),('sendInboxNotificationsOnly','0'),('inboxNotificationTemplateId','b1316COmd9xRv4fCI3LLGA'),('smsGateway',''),('groupIdAdminFriends','3'),('fmViewTemplateId','64tqS80D53Z0JoAs2cX2VQ'),('fmEditTemplateId','lG2exkH9FeYvn4pA63idNg'),('groupsToManageFriends','2'),('overrideAbleToBeFriend','0'),('webguiUseEmailAsUsername','0'),('redirectAfterLoginUrl',NULL),('groupIdAdminFilePump','8'),('fmStyleTemplateId','stevestyle000000000003'),('fmLayoutTemplateId','N716tpSna0iIQTKxS4gTWA'),('smsGatewaySubject',''),('inboxNotificationsSubject',''),('inboxSmsNotificationTemplateId','i9-G00ALhJOr0gMh-vHbKA'),('shopSaleNotificationGroupId','3'),('shopReceiptEmailTemplateId','bPz1yk6Y9uwMDMBcmMsSCg'),('selectGatewayTemplateId','2GxjjkRuRkdUg_PccRPjpA'),('groupIdAdminClipboard','3'),('groupIdAdminTrash','3'),('maxCacheTimeout','86400'),('webguiDeactivateAccountTemplate','zaHUYsE_PgKk8hnVd8ffEQ'),('sendRejectNotice','1'),('twitterEnabled','0'),('twitterTemplateIdChooseUsername','mfHGkp6t9gdclmzN33OEnw'),('specialState','init'); -ALTER TABLE `settings` ENABLE KEYS; -ALTER TABLE `shipper` DISABLE KEYS; -INSERT INTO `shipper` VALUES ('defaultfreeshipping000','WebGUI::Shop::ShipDriver::FlatRate','{\"groupToUse\":7,\"label\":\"Free Shipping\",\"enabled\":1}'); -ALTER TABLE `shipper` ENABLE KEYS; -ALTER TABLE `snippet` DISABLE KEYS; -INSERT INTO `snippet` VALUES ('SynConXSLT000000000001','\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
\n
\n \n
\n
\n \n
\n
    \n \n
\n
\n
\n \n
  • \n \n \n \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \nYou\'re viewing an RSS version 0.9 feed. Please use an RSS feed reader to view this content as intended.\n
    \n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n
    \n
    \n \n
  • \n \n \n \n
  • \n
    \n
    ',0),('SynConXSLT000000000002','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n
    \n \n\n
    \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 0.91 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n
    \n \n\n
    \n
  • \n
    \n
    ',0),('SynConXSLT000000000003','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n (\n )\n \n\n
    \n \n
    \n
  • \n
    \n
    \n',0,'application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 1.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n (\n )\n \n\n
    \n \n
    \n
  • \n
    \n
    \n',0),('SynConXSLT000000000004','\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n ()\n \n\n
    \n \n
    \n
  • \n
    \n
    ',0,'application/xml',1124395707,3600,'\n\n\n \n \n \n \n \n \n
    \nYou\'re viewing an RSS version 2.0 feed. Please use an RSS feed reader to view this content as intended.\n
    \n \n
    \n
    \n \n
    \n
      \n \n
    \n\n
    \n
    \n \n
  • \n \n \n \n \n ()\n \n\n
    \n \n
    \n
  • \n
    \n
    ',0),('7-0-style0000000000003','body, html\n{\n text-align:center;\n margin:0px;\n height:100%; \n background-color:#494949;\n}\n\n#main\n{\n width:800px;\n background: url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;\n height:100%;\n margin-left:auto;\n margin-right:auto;\n margin-top:0px;\n margin-bottom:0px;\n position:relative;\n}\nbody > #main\n{\n height:auto;\n min-height:100%;\n}\n\n#main #mainHeader\n{\n width:800px;\n height:133px;\n background: url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;\n margin-bottom:0px;\n position:relative;\n}\n#main #mainHeader #title\n{\n position:absolute;\n top:23px;\n left:145px;\n font-size:32pt;\n font-family:arial;\n color:white;\n font-weight:bold;\n}\n#main #mainHeader #title a {\n color:white;\n text-decoration:none;\n}\n\n#main #mainContent\n{\n background: url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;\n width:100%;\n height:100%; \n margin-top:0px;\n text-align:left;\n border:solid red 0px;\n}\n#main > #mainContent\n{\n margin-top:0px;\n min-height:500px;\n}\n#main > #mainContent > p {\n margin-top:0px;\n}\n#main #mainContent #mainText a:link {\n color:#FF7F23;\n}\n#main #mainContent #mainText a:visited {\n color:#D25900;\n}\n\n/* LEVEL 1 AND 2 NAVIGATION */\n#main .mainNav_1, #main .mainNav_2 {\n border-bottom:dashed #DADADA 1px; \n width:621px;\n height:25px;\n text-align:left;\n position:relative;\n margin-left:137px; \n clear:both;\n}\n#main .mainNav_1 a:link, #main .mainNav_1 a:visited, #main .mainNav_2 a:link, #main .mainNav_2 a:visited {\n color:white;\n text-decoration:none;\n top:5px;\n position:relative;\n -moz-box-sizing:border-box;\n}\n#main .mainNav_1 a:hover,#main .mainNav_2 a:hover {\n color:black;\n}\n#main .mainNav_1 div .left, #main .mainNav_2 div .left {\n width:12px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .left {\n background: url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div .center, #main .mainNav_2 div .center { \n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;\n color:white;\n font-family:arial, verdana;\n font-size:8pt;\n}\n#main .mainNav_2 div .center {\n background: url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div .right, #main .mainNav_2 div .right {\n width:10px;\n height:25px;\n display:block;\n float:left;\n background: url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div .right {\n background: url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .left {\n background: url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_1 div.navOn .center {\n background: url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_1 div.navOn .right {\n background: url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .left {\n background: url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;\n}\n#main .mainNav_2 div.navOn .center {\n background: url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;\n}\n#main .mainNav_2 div.navOn .right {\n background: url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;\n} \n#main .mainNav_1 div.navOn a:link, #main .mainNav_1 div.navOn a:visited, #main .mainNav_2 div.navOn a:link, #main .mainNav_2 div.navOn a:visited {\n color:black;\n}\n/* ENDOF LEVEL 1 AND 2 NAVIGATION */\n\n#main #crumbTrail {\n margin-left:177px;\n margin-bottom:0px;\n color:gray;\n font-size:8pt;\n font-weight:bold;\n}\n#main #crumbTrail a.crumbTrail:visited, #main #crumbTrail a.crumbTrail:link {\n color:silver;\n font-size:8pt; \n font-family:arial;\n text-decoration:none;\n font-weight:normal;\n}\n#main #crumbTrail a.crumbTrail:hover {\n color:gray;\n}\n\n#main #mainText\n{\n padding-left:150px;\n font-family:verdana;\n font-size:9pt;\n width:600px;\n margin-top:0px;\n}\n\n#main #gui\n{\n bottom:0px;\n left:0px;\n position:absolute;\n width:135px;\n font-size:8pt;\n color:black;\n font-family:arial;\n text-align:right;\n}\n#main #gui .loginBox {\n padding-right:12px;\n -moz-box-sizing:border-box;\n width:100px; \n float:right;\n margin-bottom:10px;\n}\n#main #gui .loginBox .loginBoxField {\n width:75px;\n}\n#main #gui .loginBox .loginBoxButton {\n background-color:#D65501;\n color:white;\n border:solid white 2px;\n margin-top:4px;\n font-variant:small-caps;\n}\n#main #gui a\n{\n color:white; \n}\n#copyright {\n color:#fff;\n position:absolute;\n top:110px;\n right:40px;\n font-family:verdana;\n font-size:8pt;\n font-weight:bold;\n background-color:#2D2D2D;\n opacity:0.4;\n -moz-opacity:0.4;\n -khtml-opacity:0.4; \n padding:2px;\n}\n* html #copyright {\n background: transparent;\n}\n',1,'text/css',1147642492,3600,'body,html{text-align:center;margin:0px;height:100%;background-color:#494949;}#main{width:800px;background:url(\'^FileUrl(style1/main_bg.jpg);\') repeat-y;height:100%;margin-left:auto;margin-right:auto;margin-top:0px;margin-bottom:0px;position:relative;}body > #main{height:auto;min-height:100%;}#main #mainHeader{width:800px;height:133px;background:url(\'^FileUrl(style1/header.jpg);\') top left no-repeat;margin-bottom:0px;position:relative;}#main #mainHeader #title{position:absolute;top:23px;left:145px;font-size:32pt;font-family:arial;color:white;font-weight:bold;}#main #mainHeader #title a{color:white;text-decoration:none;}#main #mainContent{background:url(\'^FileUrl(style1/orange_left01.jpg);\') left top no-repeat;width:100%;height:100%;margin-top:0px;text-align:left;border:solid red 0px;}#main > #mainContent{margin-top:0px;min-height:500px;}#main > #mainContent > p{margin-top:0px;}#main #mainContent #mainText a:link{color:#FF7F23;}#main #mainContent #mainText a:visited{color:#D25900;}#main .mainNav_1,#main .mainNav_2{border-bottom:dashed #DADADA 1px;width:621px;height:25px;text-align:left;position:relative;margin-left:137px;clear:both;}#main .mainNav_1 a:link,#main .mainNav_1 a:visited,#main .mainNav_2 a:link,#main .mainNav_2 a:visited{color:white;text-decoration:none;top:5px;position:relative;-moz-box-sizing:border-box;}#main .mainNav_1 a:hover,#main .mainNav_2 a:hover{color:black;}#main .mainNav_1 div .left,#main .mainNav_2 div .left{width:12px;height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_left.jpg);\') no-repeat top left;}#main .mainNav_2 div .left{background:url(\'^FileUrl(style1/nav2_off_left.jpg);\') no-repeat top left;}#main .mainNav_1 div .center,#main .mainNav_2 div .center{height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_center.jpg);\') repeat-x top left;color:white;font-family:arial,verdana;font-size:8pt;}#main .mainNav_2 div .center{background:url(\'^FileUrl(style1/nav2_off_center.jpg);\') repeat-x top left;}#main .mainNav_1 div .right,#main .mainNav_2 div .right{width:10px;height:25px;display:block;float:left;background:url(\'^FileUrl(style1/nav1_off_right.jpg);\') no-repeat top left;}#main .mainNav_2 div .right{background:url(\'^FileUrl(style1/nav2_off_right.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn .left{background:url(\'^FileUrl(style1/nav1_on_left.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn .center{background:url(\'^FileUrl(style1/nav1_center_on.jpg);\') repeat-x top left;}#main .mainNav_1 div.navOn .right{background:url(\'^FileUrl(style1/nav1_on_right.jpg);\') no-repeat top left;}#main .mainNav_2 div.navOn .left{background:url(\'^FileUrl(style1/nav2_on_left.jpg);\') no-repeat top left;}#main .mainNav_2 div.navOn .center{background:url(\'^FileUrl(style1/nav2_center_on.jpg);\') repeat-x top left;}#main .mainNav_2 div.navOn .right{background:url(\'^FileUrl(style1/nav2_on_right.jpg);\') no-repeat top left;}#main .mainNav_1 div.navOn a:link,#main .mainNav_1 div.navOn a:visited,#main .mainNav_2 div.navOn a:link,#main .mainNav_2 div.navOn a:visited{color:black;}#main #crumbTrail{margin-left:177px;margin-bottom:0px;color:gray;font-size:8pt;font-weight:bold;}#main #crumbTrail a.crumbTrail:visited,#main #crumbTrail a.crumbTrail:link{color:silver;font-size:8pt;font-family:arial;text-decoration:none;font-weight:normal;}#main #crumbTrail a.crumbTrail:hover{color:gray;}#main #mainText{padding-left:150px;font-family:verdana;font-size:9pt;width:600px;margin-top:0px;}#main #gui{bottom:0px;left:0px;position:absolute;width:135px;font-size:8pt;color:black;font-family:arial;text-align:right;}#main #gui .loginBox{padding-right:12px;-moz-box-sizing:border-box;width:100px;float:right;margin-bottom:10px;}#main #gui .loginBox .loginBoxField{width:75px;}#main #gui .loginBox .loginBoxButton{background-color:#D65501;color:white;border:solid white 2px;margin-top:4px;font-variant:small-caps;}#main #gui a{color:white;}#copyright{color:#fff;position:absolute;top:110px;right:40px;font-family:verdana;font-size:8pt;font-weight:bold;background-color:#2D2D2D;opacity:0.4;-moz-opacity:0.4;-khtml-opacity:0.4;padding:2px;}* html #copyright{background:transparent;}',0),('7-0-style0000000000033','body, html { \n height:100%; \n}\nbody {\n background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right; \n margin:0px;\n}\n.rightColumn {\n width:20%;\n height:100%;\n background: #eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right; \n text-align:center; \n}\n.rightColumn #pb_wg_bg {\n background: url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;\n width:100%;\n text-align:left; \n}\n.rightColumn #pb_wg {\n background: url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;\n height:53px;\n}\n.leftColumn { \n width:80%; \n background: white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; \n} \n.leftColumn #header {\n width:100%;\n background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat; \n height:86px;\n position:relative;\n}\n.leftColumn #header #title, .leftColumn #header #title_bg {\n color:white;\n font-size:36pt;\n font-weight:bold;\n font-family:arial;\n font-variant:small-caps;\n letter-spacing:12px;\n top:15px;\n left:5px;\n position:absolute;\n z-index:10;\n}\n.leftColumn #header #title a {\n color:white;\n text-decoration:none;\n}\n.leftColumn #header #title_bg {\n color:black;\n z-index:5;\n top:17px;\n left:7px;\n}\n.leftColumn #context {\n /*background: #fff url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right; */\n width:95%;\n font-family:verdana;\n font-size:9pt;\n color:#242424;\n -moz-box-sizing:border-box; \n position:relative;\n padding-left:1%;\n padding-right:1%;\n padding-bottom:15px;\n}\n.leftColumn #context a {\n color:#7C9AB0;\n font-weight:bold;\n}\n.leftColumn #context a:hover {\n text-decoration:none;\n}\n.leftColumn #pageTitleBG {\n background: url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x; \n width:100%;\n}\n.leftColumn #pageTitleBG #pageTitle {\n background: url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat; \n width:100%;\n height:50px;\n} \n.leftColumn #pageTitleBG #pageTitle h2 {\n font-size:14pt;\n color:#696969;\n font-family:arial;\n font-weight:normal;\n margin:0px;\n padding-top:2px;\n padding-left:25px;\n letter-spacing:3px;\n}\n.rightColumn #nav {\n width:85%;\n background: #b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top; \n border-right:solid #848484 1px;\n margin-left:auto;\n margin-right:auto;\n text-align:left;\n padding-left:3px;\n padding-top:7px;\n padding-bottom:7px;\n}\n.rightColumn #nav a {\n color:white;\n font-size:8pt;\n font-weight:bold;\n text-decoration:none;\n font-family:arial;\n line-height:8pt; \n} \n.rightColumn #nav .selectedMenuItem {\n color:yellow;\n}\n#loginStyles {\n font-size:8pt;\n font-family:arial;\n padding-bottom:25px;\n}\n#loginStyles a {\n color:#89ACCF;\n font-weight:bold; \n border-bottom:solid transparent 2px;\n text-decoration:none;\n}\n#loginStyles a:hover {\n border-bottom:dotted #B2C9D9 2px;\n} \n\n.copyright {\n border-top:solid silver 3px;\n background-color:gray;\n font-family:arial;\n font-size:9pt;\n color:silver; \n text-align:center;\n}\n',0,'text/css',1147642500,3600,'body,html{height:100%;}body{background:#7c9ab0 url(\'^FileUrl(style2/main_bg.jpg);\') repeat-y right;margin:0px;}.rightColumn{width:20%;height:100%;background:#eeeeee url(\'^FileUrl(style2/rightCol_bg.jpg);\') repeat-y right;text-align:center;}.rightColumn #pb_wg_bg{background:url(\'^FileUrl(style2/pb_wg_bg.jpg);\') repeat-x;width:100%;text-align:left;}.rightColumn #pb_wg{background:url(\'^FileUrl(style2/pb_wg.jpg);\') left no-repeat;height:53px;}.leftColumn{width:80%;background:white url(\'^FileUrl(style2/context_bg.jpg);\') repeat-y right;}.leftColumn #header{width:100%;background:#7c9ab0 url(\'^FileUrl(style2/leftCol_header.jpg);\') right no-repeat;height:86px;position:relative;}.leftColumn #header #title,.leftColumn #header #title_bg{color:white;font-size:36pt;font-weight:bold;font-family:arial;font-variant:small-caps;letter-spacing:12px;top:15px;left:5px;position:absolute;z-index:10;}.leftColumn #header #title a{color:white;text-decoration:none;}.leftColumn #header #title_bg{color:black;z-index:5;top:17px;left:7px;}.leftColumn #context{width:95%;font-family:verdana;font-size:9pt;color:#242424;-moz-box-sizing:border-box;position:relative;padding-left:1%;padding-right:1%;padding-bottom:15px;}.leftColumn #context a{color:#7C9AB0;font-weight:bold;}.leftColumn #context a:hover{text-decoration:none;}.leftColumn #pageTitleBG{background:url(\'^FileUrl(style2/page_title_bg.jpg);\') repeat-x;width:100%;}.leftColumn #pageTitleBG #pageTitle{background:url(\'^FileUrl(style2/page_title.jpg);\') right no-repeat;width:100%;height:50px;}.leftColumn #pageTitleBG #pageTitle h2{font-size:14pt;color:#696969;font-family:arial;font-weight:normal;margin:0px;padding-top:2px;padding-left:25px;letter-spacing:3px;}.rightColumn #nav{width:85%;background:#b5b5b5 url(\'^FileUrl(style2/nav_bg.jpg);\') repeat-x top;border-right:solid #848484 1px;margin-left:auto;margin-right:auto;text-align:left;padding-left:3px;padding-top:7px;padding-bottom:7px;}.rightColumn #nav a{color:white;font-size:8pt;font-weight:bold;text-decoration:none;font-family:arial;line-height:8pt;}.rightColumn #nav .selectedMenuItem{color:yellow;}#loginStyles{font-size:8pt;font-family:arial;padding-bottom:25px;}#loginStyles a{color:#89ACCF;font-weight:bold;border-bottom:solid transparent 2px;text-decoration:none;}#loginStyles a:hover{border-bottom:dotted #B2C9D9 2px;}.copyright{border-top:solid silver 3px;background-color:gray;font-family:arial;font-size:9pt;color:silver;text-align:center;}',0),('4e-_rNs6mSWedZhQ_V5kJA','.wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n float:left;\r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n min-height:100px;\r\n min-width:200px;\r\n width:200px;\r\n height:100px;\r\n}\r\n.wgShelf .product .link {\r\n background: url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg);) no-repeat top right;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block; \r\n}',0,'text/css',1210779672,0,'.wgShelf .product{margin:15px;margin-left:0px;float:left;text-align:left;background-color:#f1f1f1;border:solid #e1e1e1 1px;min-height:100px;min-width:200px;width:200px;height:100px;}.wgShelf .product .link{background:url(^FileUrl(root/import/shelf2/images/shelf-titles.jpg);) no-repeat top right;height:30px;padding:3px;line-height:24px;margin-bottom:5px;text-align:left;display:block;}',0),('usuxw9V3jN4d4pujRiEYxg','#contentArea {\r\n height:500px;\r\n padding-bottom:300px;\r\n}',0,'text/css',1209494150,1,'#contentArea{height:500px;padding-bottom:300px;}',0),('5m5I7__l40C4hhv4ydqAHQ','#thingyList .things {\r\n padding:0px;\r\n margin:0px;\r\n width:200px;\r\n z-index:5000;\r\n position:absolute;\r\n top:27px;\r\n left:20px;\r\n border:solid #a2a2a2 1px;\r\n border-top-style:none;\r\n}\r\n\r\n#thingyList .things a:link,\r\n#thingyList .things a:visited {\r\n display:block;\r\n background-color:#f1f1f1;\r\n border-top:solid #a2a2a2 1px; \r\n border-bottom:solid #727272 1px;\r\n line-height:12px;\r\n font-size:10px;\r\n height:12px;\r\n padding:2px 5px;\r\n text-decoration:none;\r\n font-weight:bold;\r\n color:#a2a2a2;\r\n width:190px;\r\n}\r\n#thingyList .things a:hover {\r\n background-color:white;\r\n}',0,'text/css',1216227786,3600,'#thingyList .things{padding:0px;margin:0px;width:200px;z-index:5000;position:absolute;top:27px;left:20px;border:solid #a2a2a2 1px;border-top-style:none;}#thingyList .things a:link,#thingyList .things a:visited{display:block;background-color:#f1f1f1;border-top:solid #a2a2a2 1px;border-bottom:solid #727272 1px;line-height:12px;font-size:10px;height:12px;padding:2px 5px;text-decoration:none;font-weight:bold;color:#a2a2a2;width:190px;}#thingyList .things a:hover{background-color:white;}',0),('1XOJDcg_ITRYwVM-QnIcPw',' .wgShelf {\r\n font-size:12px;\r\n font-family:arial, verdana; \r\n margin:15px 0px;\r\n }\r\n .wgShelf h2 {\r\n background: black;\r\n padding:5px;\r\n padding-left:15px;\r\n line-height:32px;\r\n color:white;\r\n margin:0px;\r\n height:32px;\r\n }\r\n .wgShelf .wgShelves {\r\n background: #F1F1F1;\r\n height:29px;\r\n padding:3px;\r\n line-height:29px;\r\n padding-left:30px;\r\n }\r\n .wgShelf .product {\r\n margin:15px;\r\n margin-left:0px; \r\n text-align:left;\r\n background-color:#f1f1f1;\r\n border:solid #e1e1e1 1px;\r\n width: 200px;\r\n display: -moz-inline-box; /* Moz */\r\n display: inline-block; /* Op, Saf, IE \\*/\r\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\r\n }\r\n .wgShelf .product .thumbnail {\r\n display:block;\r\n text-align:left;\r\n margin:3px;\r\n float:left;\r\n }\r\n .wgShelf .product .link {\r\n background: #e1e1e1;\r\n height:30px;\r\n padding:3px;\r\n line-height:24px;\r\n margin-bottom:5px; \r\n text-align:left;\r\n display:block;\r\n }\r\n .wgShelf .product .link a:link,\r\n .wgShelf .product .link a:visited {\r\n color:#000; \r\n display:block;\r\n }\r\n .wgShelf .product .link a:hover {\r\n text-decoration:underline;\r\n }\r\n .wgShelf .product .price {\r\n display:block;\r\n text-align:right;\r\n font-size:18px;\r\n font-weight:bold;\r\n }',0,'text/css',1219175575,0,'.wgShelf{font-size:12px;font-family:arial,verdana;margin:15px 0px;}.wgShelf h2{background:black;padding:5px;padding-left:15px;line-height:32px;color:white;margin:0px;height:32px;}.wgShelf .wgShelves{background:#F1F1F1;height:29px;padding:3px;line-height:29px;padding-left:30px;}.wgShelf .product{margin:15px;margin-left:0px;text-align:left;background-color:#f1f1f1;border:solid #e1e1e1 1px;width:200px;display:-moz-inline-box;display:inline-block;/*\\*/\n vertical-align:top; /**/}.wgShelf .product .thumbnail{display:block;text-align:left;margin:3px;float:left;}.wgShelf .product .link{background:#e1e1e1;height:30px;padding:3px;line-height:24px;margin-bottom:5px;text-align:left;display:block;}.wgShelf .product .link a:link,.wgShelf .product .link a:visited{color:#000;display:block;}.wgShelf .product .link a:hover{text-decoration:underline;}.wgShelf .product .price{display:block;text-align:right;font-size:18px;font-weight:bold;}',0),('7-0-style0000000000051','body, html {\r\n margin:0px;\r\n background-color:#b53018;\r\n padding:0px;\r\n}\r\nbody a {\r\n color:#EE963E;font-weight:bold;\r\n letter-spacing:1px;\r\n font-size:8pt;\r\n}\r\n#main {\r\n width:98%;\r\n /*min-width:790px;*/\r\n margin:0px;\r\n padding:0px;\r\n padding-top:20px;\r\n padding-bottom:20px;\r\n position:relative;\r\n}\r\n#header { \r\n background: url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;\r\n width:100%;\r\n margin:0px;\r\n height:115px;\r\n}\r\n#headerTitle {\r\n background: url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;\r\n height:100%;\r\n width:100%;\r\n}\r\n#headerRight {\r\n background: url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;\r\n width:100%;\r\n height:100%;\r\n text-align:right;\r\n position:relative;\r\n}\r\n#headerRight #title {\r\n position:absolute;\r\n top:25px;\r\n left:20px;\r\n font-family:arial;\r\n text-align:left;\r\n}\r\n#title h1 {\r\n text-transform:uppercase;\r\n margin-bottom:0px;\r\n font-weight:normal;\r\n font-size:26pt;\r\n margin-top:0px;\r\n color:white;\r\n}\r\n#title h1 a {\r\n color:white;\r\n text-decoration:none; font-size: 26pt; font-weight: normal; \r\n}\r\n#title h2 {\r\n margin:0px;\r\n font-size:12pt;\r\n color:#bebebe;\r\n padding-left:20px;\r\n}\r\n#title img {\r\n z-index:5;\r\n}\r\n#login {\r\n position:absolute;\r\n font-size:8pt;\r\n top:45%;\r\n right:150px;\r\n color:white;\r\n z-index:6;\r\n font-family:arial;\r\n}\r\n#login a {\r\n color:white; font-weight: normal; letter-spacing: 0px;\r\n}\r\n.loginBox {\r\n font-size:8pt;\r\n margin:0px;\r\n display:inline;\r\n}\r\n.loginBox input {\r\n font-size:8pt;\r\n}\r\n\r\n#mainBody {\r\n width:100%;\r\n margin:0px;\r\n height:500px;\r\n background: #fff;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#main > #mainBody {\r\n height:auto;\r\n min-height:500px;\r\n}\r\n#contentArea {\r\n z-index:2;\r\n position:relative;\r\n padding-top:10px;\r\n padding-left:10px;\r\n padding-right:20px;\r\n padding-bottom:20px;\r\n -moz-box-sizing:border-box;\r\n font-family:verdana;\r\n font-size:9pt;\r\n min-height:500px;\r\n}\r\nhtml #main #mainBody #contentArea {\r\n height:1%;\r\n}\r\n#topCorner {\r\n width:100%;\r\n height:214px;\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n background: url(^FileUrl(/style3/main_top.jpg);) no-repeat;\r\n z-index:1;\r\n}\r\n#bottomCorner {\r\n width:100%;\r\n height:211px;\r\n position:absolute;\r\n bottom:59px;\r\n right:0px;\r\n background: url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;\r\n z-index:1;\r\n}\r\n* html #bottomCorner {\r\n bottom:58px;\r\n}\r\n\r\n#footer {\r\n width:100%;\r\n margin:0px;\r\n background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;\r\n height:57px;\r\n border-top:solid #B53018 2px;\r\n text-align:right;\r\n position:relative;\r\n z-index:0;\r\n}\r\n#footer #copyright {\r\n color:#3b3b3b;\r\n font-family:arial;\r\n position:absolute;\r\n top:20px;\r\n left:30px;\r\n font-size:8pt;\r\n}\r\n#main .yui-skin-sam {\r\n font-family:verdana;\r\n font-size:9pt;\r\n font-weight:normal;\r\n}',0,'text/css',1224117026,3600,'body,html{margin:0px;background-color:#b53018;padding:0px;}body a{color:#EE963E;font-weight:bold;letter-spacing:1px;font-size:8pt;}#main{width:98%;margin:0px;padding:0px;padding-top:20px;padding-bottom:20px;position:relative;}#header{background:url(\'^FileUrl(style3/header_bg.jpg);\') repeat-x;width:100%;margin:0px;height:115px;}#headerTitle{background:url(\'^FileUrl(style3/header_left.jpg);\') no-repeat left top;height:100%;width:100%;}#headerRight{background:url(\'^FileUrl(style3/header_right.jpg);\') no-repeat right top;width:100%;height:100%;text-align:right;position:relative;}#headerRight #title{position:absolute;top:25px;left:20px;font-family:arial;text-align:left;}#title h1{text-transform:uppercase;margin-bottom:0px;font-weight:normal;font-size:26pt;margin-top:0px;color:white;}#title h1 a{color:white;text-decoration:none;font-size:26pt;font-weight:normal;}#title h2{margin:0px;font-size:12pt;color:#bebebe;padding-left:20px;}#title img{z-index:5;}#login{position:absolute;font-size:8pt;top:45%;right:150px;color:white;z-index:6;font-family:arial;}#login a{color:white;font-weight:normal;letter-spacing:0px;}.loginBox{font-size:8pt;margin:0px;display:inline;}.loginBox input{font-size:8pt;}#mainBody{width:100%;margin:0px;height:500px;background:#fff;position:relative;z-index:0;}#main > #mainBody{height:auto;min-height:500px;}#contentArea{z-index:2;position:relative;padding-top:10px;padding-left:10px;padding-right:20px;padding-bottom:20px;-moz-box-sizing:border-box;font-family:verdana;font-size:9pt;min-height:500px;}html #main #mainBody #contentArea{height:1%;}#topCorner{width:100%;height:214px;position:absolute;top:0px;left:0px;background:url(^FileUrl(/style3/main_top.jpg);) no-repeat;z-index:1;}#bottomCorner{width:100%;height:211px;position:absolute;bottom:59px;right:0px;background:url(\'^FileUrl(style3/main_bottom.jpg);\') no-repeat right;z-index:1;}* html #bottomCorner{bottom:58px;}#footer{width:100%;margin:0px;background:#000 url(\'^FileUrl(style3/footer_right.jpg);\') no-repeat right top;height:57px;border-top:solid #B53018 2px;text-align:right;position:relative;z-index:0;}#footer #copyright{color:#3b3b3b;font-family:arial;position:absolute;top:20px;left:30px;font-size:8pt;}#main .yui-skin-sam{font-family:verdana;font-size:9pt;font-weight:normal;}',0),('kJf77eCr9GAMiEzWrzsBTA','.matrixLeft .buttons span,\r\n.matrixRight .buttons span {\r\n padding:0px 0px 0px 0px;\r\n}\r\n\r\n.matrixLeft .buttons button,\r\n.matrixRight .buttons a {\r\n top:-3px;\r\n left:-2px;\r\n height:22px;\r\n}\r\n.matrixRight .buttons a {\r\n color:black;\r\n text-decoration:none;\r\n padding:1px 3px;\r\n}',0,'text/css',1229639255,3600,'.matrixLeft .buttons span,.matrixRight .buttons span{padding:0px 0px 0px 0px;}.matrixLeft .buttons button,.matrixRight .buttons a{top:-3px;left:-2px;height:22px;}.matrixRight .buttons a{color:black;text-decoration:none;padding:1px 3px;}',0),('4LQT4-bGW4FkiEQLSY5gvQ','function showHide(theLink,theId) {\r\n var theId = document.getElementById(theId);\r\n var theLink = document.getElementById(theLink);\r\n if(theId.style.display == \'block\') {\r\n theId.style.display = \'none\';\r\n theLink.innerHTML = \"Send Creator a Message\";\r\n theLink.className = \"showLink\"\r\n }\r\n else {\r\n theId.style.display = \'block\';\r\n theLink.innerHTML = \"Hide\"; \r\n theLink.className = \"hideLink\" \r\n }\r\n}',0,'text/javascript',1232400287,0,'function showHide(b,a){var a=document.getElementById(a);var b=document.getElementById(b);if(a.style.display==\'block\'){a.style.display=\'none\';b.innerHTML=\"Send Creator a Message\";b.className=\"showLink\"}else{a.style.display=\'block\';b.innerHTML=\"Hide\";b.className=\"hideLink\"}}',0),('wrq7hMxb1ewQqZ46xmd8Gg','function equalCol() {\r\n var colOne = document.getElementById(\'compareForm\');\r\n var colTwo = document.getElementById(\'matrixRight\'); \r\n var colOneH = colOne.offsetHeight;\r\n var colTwoH = colTwo.offsetHeight; \r\n \r\n //alert(colOneH + \", \" + colTwoH);\r\n colOne.style.overflow = \"scroll\";\r\n colOne.style.height = (colTwoH - 150) + \"px\";\r\n}',0,'text/javascript',1235706620,3600,'function equalCol(){var d=document.getElementById(\'compareForm\');var b=document.getElementById(\'matrixRight\');var a=d.offsetHeight;var c=b.offsetHeight;d.style.overflow=\"scroll\";d.style.height=(c-150)+\"px\"}',0),('3n3H85BsdeRQ0I08WmvlOg','.wgThingy {\n margin:5px;\n}\n\n.wgThingy * .styleButton {\n color:black; \n margin:0px 5px;\n display:block;\n float:left;\n}\n.wgThingy * .spacerOne {\n padding-left:15px;\n}\n\n\n.wgThingy * .rowOne,\n.wgThingy * tr.rowOne td\n {\n background: #EEEEEE;\n margin:1px;\n border:solid #CDCDCD 1px;\n color:#000;\n padding:2px;\n}\n.wgThingy * .rowTwo,\n.wgThingy * tr.rowTwo td {\n background: #DBDBDB;\n margin:1px;\n border:solid #DDDDDD 1px;\n color:#000; \n padding:2px;\n}\n.wgThingsWrapper img { \n display:block;\n vertical-align:middle;\n float:left;\n}\n.wgThingsWrapper .label {\n font-weight:bold; \n padding-left:15px;\n}\n.wgThingy h2.title {\n background: #000;\n height:42px;\n color:white;\n font-size:18px;\n font-weight:bold;\n letter-spacing:1px; \n line-height:42px;\n padding-left:15px;\n margin-bottom:0px;\n}\n\n.wgThingy * span.smaller {\n font-size:13px;\n color:white;\n}\n.wgThingy .controls {\n line-height:35px;\n height:35px;\n background: #f1f1f1; \n margin-top:0px;\n margin-bottom:20px;\n padding:0px;\n}\n\n\n.wgThingy * .label {\n background:black;\n color:white;\n padding:2px 5px;\n font-family:arial;\n font-size:11px;\n font-weight:bold;\n vertical-align:middle;\n}\n.wgThingy .label a {\n color:white;\n}\n\n.searchTable * input,\n.editThing * input {\n background: white;\n border:solid #555 1px;\n}\n\n\n\n\n.editThing {\n margin-top:15px; \n} \n\n\n\n#thingyList, #thingyList * {\n margin:0px;\n padding:0px;\n}\n#thingyList {\n position:relative; \n float:left;\n}\n#thingyList .goButton:link,\n#thingyList .goButton:visited {\n padding:2px 25px 2px 2px;\n background: #F1F1F1 url(^FileUrl(root/import/thingy-templates/images/go-btn.gif);) no-repeat right;\n line-height:20px;\n border:solid #a2a2a2 1px;\n color:#a2a2a2;\n text-decoration:none;\n font-family:verdana, arial;\n font-size:10px;\n font-weight:bold;\n margin-left:20px;\n letter-spacing:0px;\n}\n#thingyList .goButton:hover {\n background-color:white;\n}\n#thingyList .things {\n padding:0px;\n margin:0px;\n width:300px;\n z-index:5000;\n position:absolute;\n top:27px;\n left:20px;\n border:solid #a2a2a2 1px;\n border-top-style:none;\n}\n#thingyList .things a:link,\n#thingyList .things a:visited {\n display:block;\n background-color:#f1f1f1;\n border-top:solid #a2a2a2 1px; \n border-bottom:solid #727272 1px;\n line-height:12px;\n font-size:10px;\n height:12px;\n padding:2px 5px;\n text-decoration:none;\n font-weight:bold;\n color:#a2a2a2;\n}\n#thingyList .things a:hover {\n background-color:white;\n}',0,'text/css',1245107956,1,'.wgThingy{margin:5px;}.wgThingy * .styleButton{color:black;margin:0px 5px;display:block;float:left;}.wgThingy * .spacerOne{padding-left:15px;}.wgThingy * .rowOne,.wgThingy * tr.rowOne td{background:#EEEEEE;margin:1px;border:solid #CDCDCD 1px;color:#000;padding:2px;}.wgThingy * .rowTwo,.wgThingy * tr.rowTwo td{background:#DBDBDB;margin:1px;border:solid #DDDDDD 1px;color:#000;padding:2px;}.wgThingsWrapper img{display:block;vertical-align:center;float:left;}.wgThingsWrapper .label{font-weight:bold;padding-left:15px;}.wgThingy h2.title{background:#000;height:42px;color:white;font-size:18px;font-weight:bold;letter-spacing:1px;line-height:42px;padding-left:15px;margin-bottom:0px;}.wgThingy * span.smaller{font-size:13px;color:white;}.wgThingy .controls{line-height:35px;height:35px;background:#f1f1f1;margin-top:0px;margin-bottom:20px;padding:0px;}.wgThingy * .label{background:black;color:white;padding:2px 5px;font-family:arial;font-size:11px;font-weight:bold;vertical-align:middle;}.wgThingy .label a{color:white;}.searchTable * input,.editThing * input{background:white;border:solid #555 1px;}.editThing{margin-top:15px;}#thingyList,#thingyList *{margin:0px;padding:0px;}#thingyList{position:relative;float:left;}#thingyList .goButton:link,#thingyList .goButton:visited{padding:2px 25px 2px 2px;background:#F1F1F1 url(^FileUrl(root/import/thingy-templates/images/go-btn.gif);) no-repeat right;line-height:20px;border:solid #a2a2a2 1px;color:#a2a2a2;text-decoration:none;font-family:verdana,arial;font-size:10px;font-weight:bold;margin-left:20px;letter-spacing:0px;}#thingyList .goButton:hover{background-color:white;}#thingyList .things{padding:0px;margin:0px;width:300px;z-index:5000;position:absolute;top:27px;left:20px;border:solid #a2a2a2 1px;border-top-style:none;}#thingyList .things a:link,#thingyList .things a:visited{display:block;background-color:#f1f1f1;border-top:solid #a2a2a2 1px;border-bottom:solid #727272 1px;line-height:12px;font-size:10px;height:12px;padding:2px 5px;text-decoration:none;font-weight:bold;color:#a2a2a2;}#thingyList .things a:hover{background-color:white;}',0),('FEDP3dk8J3Chw_gyr7_XEQ','/*/Horizontal Menu styles/*/\r\n.horizontalMenu ul.menu {\r\n padding: 0;\r\n margin: 0 0 1em;\r\n list-style: none;\r\n width: 100%; /*/clear floated li elements/*/\r\n overflow: auto; /*/clear floated li elements/*/\r\n}\r\n.horizontalMenu ul.menu li {\r\n float: left;\r\n}\r\n.horizontalMenu ul.menu li a {\r\n float: left;\r\n padding: 4px 8px;\r\n margin-right: 1px;\r\n background: #ddd;\r\n color: #000;\r\n text-decoration: none;\r\n}\r\n.horizontalMenu ul.menu li.current a {\r\n background:#eee;\r\n}\r\n.horizontalMenu ul.menu li a:hover {\r\n background:#fff;\r\n}\r\n\r\n/*/Tabs (tabbed navigation) styles/*/\r\n.tabsMenu ul.menu {\r\n margin: 0 0 1em;\r\n}\r\n.tabsMenu ul.menu li {\r\n display: inline;\r\n}\r\n.tabsMenu ul.menu li a {\r\n border: 1px solid #999;\r\n border-bottom: 0;\r\n padding: 5px 10px 2px;\r\n color: #777;\r\n text-decoration:none;\r\n}\r\n.tabsMenu ul.menu li.current a,\r\n.tabsMenu ul.menu li a:hover {\r\n border: 1px solid #000;\r\n border-bottom: 0;\r\n color: #000;\r\n}\r\n\r\n/*/Indent Nav styles/*/\r\n.indentMenu a.level0 {\r\n margin-left:0px;\r\n display:block;\r\n}\r\n.indentMenu a.level1 {\r\n margin-left:15px;\r\n display:block; \r\n}\r\n.indentMenu a.level2 {\r\n margin-left:30px;\r\n display:block;\r\n}\r\n.indentMenu a.level3 {\r\n margin-left:45px;\r\n display:block;\r\n}\r\n.indentMenu a.level4 {\r\n margin-left:60px;\r\n display:block;\r\n}',0,'text/css',1246278679,3600,'/*/Horizontal Menu styles/*/ .horizontalMenu ul.menu { padding: 0; margin: 0 0 1em; list-style: none; width: 100%; /*/clear floated li elements/*/ overflow: auto; /*/clear floated li elements/*/ }.horizontalMenu ul.menu li { float: left; }.horizontalMenu ul.menu li a { float: left; padding: 4px 8px; margin-right: 1px; background: #ddd; color: #000; text-decoration: none; }.horizontalMenu ul.menu li.current a { background:#eee; }.horizontalMenu ul.menu li a:hover { background:#fff; }/*/Tabs (tabbed navigation) styles/*/ .tabsMenu ul.menu { margin: 0 0 1em; }.tabsMenu ul.menu li { display: inline; }.tabsMenu ul.menu li a { border: 1px solid #999; border-bottom: 0; padding: 5px 10px 2px; color: #777; text-decoration:none; }.tabsMenu ul.menu li.current a, .tabsMenu ul.menu li a:hover { border: 1px solid #000; border-bottom: 0; color: #000; }/*/Indent Nav styles/*/ .indentMenu a.level0 { margin-left:0px; display:block; }.indentMenu a.level1 { margin-left:15px; display:block; }.indentMenu a.level2 { margin-left:30px; display:block; }.indentMenu a.level3 { margin-left:45px; display:block; }.indentMenu a.level4 { margin-left:60px; display:block; }',0),('i5kt5aodVs_oepNEkE7Okw','/*/styles for the poll asset/*/\r\n.pollColor {\r\nbackground-color:#808080;\r\n}\r\n.pollOptions, .pollSubmit {\r\nborder:0;\r\nmargin:0;\r\npadding:0;\r\n}',0,'text/css',1242312883,3600,'/*/styles for the poll asset/*/ .pollColor { background-color:#808080; }.pollOptions, .pollSubmit { border:0; margin:0; padding:0; }',0),('uCn31PzislTZlgt_79j7cQ','/*/ fail safe /*/\r\n#topWrapper {\r\nfont:82.5%/1.3 helvetica,arial,sans-serif;\r\nwidth:98%;\r\noverflow:hidden;\r\nmargin:0 auto 2em;\r\n}\r\n.nav {\r\nfloat:left;\r\nwidth:20%;\r\nmargin:1em 0 2em;\r\n}\r\n.nav .menu {\r\nlist-style:none;\r\nmargin:0;\r\npadding:0;\r\n}\r\n#contentArea {\r\nfloat:right;\r\nwidth:77%;\r\nmargin:1em 0 2em;\r\npadding:5px 1%;\r\nborder:1px solid #ccc;\r\n}\r\n#adminControls {\r\nmargin:1em 0;\r\npadding:1em 0 0;\r\nborder-top:1px dotted #ccc;\r\n}\r\n\r\n',0,'text/css',1258524916,0,'/*/ fail safe /*/ #topWrapper { font:82.5%/1.3 helvetica,arial,sans-serif; width:98%; overflow:hidden; margin:0 auto 2em; }.nav { float:left; width:20%; margin:1em 0 2em; }.nav .menu { list-style:none; margin:0; padding:0; }#contentArea { float:right; width:77%; margin:1em 0 2em; padding:5px 1%; border:1px solid #ccc; }#adminControls { margin:1em 0; padding:1em 0 0; border-top:1px dotted #ccc; }',0),('qsG6B24a0SC5KrhQjmdZBw','body {\n margin: 0;\n background-repeat: repeat-y;\n background-position: 0px 0px;\n}\n.survey-header {\n width: 80%;\n height: 20px;\n margin-left: 80px;\n}\n#survey {\n margin-left: 80px;\n width: 85%;\n}\n\ndiv.dateanswer {\n overflow: auto;\n}\ndiv.slider-bg {\n position: relative;\n background:url(/extras/wobject/Survey/bg-fader-500.gif) 5px 0 no-repeat;\n height:68px;\n width:529px; \n}\ndiv.slider-thumb {\n cursor:default;\n position: absolute;\n top: 30px;\n left: 4px;\n}\ndiv.slider-min-thumb {\n cursor:default;\n position: absolute;\n top: 4px;\n}\ndiv.slider-max-thumb {\n cursor:default;\n position: absolute;\n top: 4px;\n}\n#headertitle {\n display: none;\n}\n#headertext {\n display: none;\n}\n#questions {\n display: none;\n}\ninput.mcbutton{\n font-size: 10px;\n font-weight: bold;\n text-decoration: none;\n background-color: #CCCCCC;\n background-repeat: repeat-x;\n text-align: center;\n display: block;\n margin: 0.5em;\n padding: .8em;\n min-width: 60px;\n font-family: Verdana, Arial, Helvetica, sans-serif;\n color: #000000;\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\n}\ninput.mcbutton:hover{\n background-color: #B6D2F1;\n font-family: Verdana, Arial, Helvetica, sans-serif;\n font-size: 10px;\n color: #000000;\n}\ninput.mcbutton-selected{\n background-color: #172D9D;\n background-repeat: repeat-x;\n color: #FFFFFF;\n font-family: Verdana, Arial, Helvetica, sans-serif;\n font-size: 10px;\n margin: 0.5em;\n padding: .8em;\n width: 60px;\n text-align: center;\n display: block;\n font-weight: bold;\n background-image: url(/extras/wobject/Survey/gradient-glossy.png);\n background-position: 0px 0px;\n}\n\n/* By default the marker for invalid (required) fields is a red \'*\' */ \n.survey-invalid-marker {\n color: #FF0000;\n}\n\n\n#survey {\n font-family: Verdana, Arial, Helvetica, sans-serif;\n font-size: 10px;\n border: 3px solid #1e1e1e;\n}\n\n#survey #survey-header {\n background-color: #cfcfcf;\n padding-top: 1px;\n}\n\n#survey #headertitle {\n padding-left: 5px;\n}\n\n#survey #progress {\n position: relative;\n top: -26px;\n right: 5px;\n text-align: right;\n font-style: italic;\n}\n\n#survey #progress:before {\n content: \"Progress: \";\n}\n\n#survey #headertext {\n border-bottom: 2px solid #1e1e1e;\n padding: 5px;\n position: relative;\n top: -20px;\n}\n\n#survey #questions {\n position: relative;\n top: -20px;\n}\n\n#survey .question {\n background-color: #dfdfdf;\n padding: 10px 5px 10px 5px;\n}\n\n#survey .question p:before {\n content: \"Q: \";\n}\n\n#survey .scale:before {\n content: \"A: \";\n}\n\n#survey #submitbutton {\n margin-left: 5px;\n}\n\n#restartMessage {\n color: #FF0000;\n}\n\n#chart {\n float: left;\n width: 200px;\n height: 113px;\n}',0,'text/css',1250243000,3600,'body{margin:0;background-repeat:repeat-y;background-position:0px 0px;}.survey-header{width:80%;height:20px;margin-left:80px;}#survey{margin-left:80px;width:85%;}div.dateanswer{min-height:250px;}div.slider-bg{position:relative;background:url(/extras/wobject/Survey/bg-fader-500.gif) 5px 0 no-repeat;height:68px;width:529px;}div.slider-thumb{cursor:default;position:absolute;top:30px;left:4px;}div.slider-min-thumb{cursor:default;position:absolute;top:4px;}div.slider-max-thumb{cursor:default;position:absolute;top:4px;}#headertitle{display:none;}#headertext{display:none;}#questions{display:none;}input.mcbutton{font-size:10px;font-weight:bold;text-decoration:none;background-color:#CCCCCC;background-repeat:repeat-x;text-align:center;display:block;margin:0.5em;padding:.8em;min-width:60px;font-family:Verdana,Arial,Helvetica,sans-serif;color:#000000;background-image:url(/extras/wobject/Survey/gradient-glossy.png);}input.mcbutton:hover{background-color:#B6D2F1;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;color:#000000;}input.mcbutton-selected{background-color:#172D9D;background-repeat:repeat-x;color:#FFFFFF;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;margin:0.5em;padding:.8em;width:60px;text-align:center;display:block;font-weight:bold;background-image:url(/extras/wobject/Survey/gradient-glossy.png);background-position:0px 0px;}.survey-invalid-marker{color:#FF0000;}#survey{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;border:3px solid #1e1e1e;}#survey #survey-header{background-color:#cfcfcf;padding-top:1px;}#survey #headertitle{padding-left:5px;}#survey #progress{position:relative;top:-26px;right:5px;text-align:right;font-style:italic;}#survey #progress:before{content:\"Progress: \";}#survey #headertext{border-bottom:2px solid #1e1e1e;padding:5px;position:relative;top:-20px;}#survey #questions{position:relative;top:-20px;}#survey .question{background-color:#dfdfdf;padding:10px 5px 10px 5px;}#survey .question p:before{content:\"Q: \";}#survey .scale:before{content:\"A: \";}#survey #submitbutton{margin-left:5px;}#restartMessage{color:#FF0000;}#chart{float:left;width:200px;height:113px;}',0),('kwTL1SWCk0GlpiJ5zAAEPQ','#editor_container {\r\n visibility: hidden;\r\n z-index: 100;\r\n}\r\n\r\n#loading-mask {\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 20000;\r\n background-color: white;\r\n opacity:0.6;\r\n filter:alpha(opacity=60);\r\n}\r\n\r\n#loading {\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n padding: 2px;\r\n z-index: 20001;\r\n height: auto;\r\n margin: -35px 0 0 -30px;\r\n}\r\n\r\n#loading .loading-indicator {\r\n background: url(^Extras(\"wobject/Survey/rel_interstitial_loading.gif\");) no-repeat;\r\n color: #555;\r\n font: bold 13px tahoma,arial,helvetica;\r\n padding: 18px 80px;\r\n margin: 0;\r\n text-align: center;\r\n height: auto;\r\n z-index: 20002;\r\n}\r\n\r\n\r\ndiv.testarea {\r\n width: 200px;\r\n height: 100px;\r\n z-index: 999;\r\n border: 1px solid gray;\r\n background: #f7f7f7;\r\n position: absolute;\r\n top: 5%;\r\n left:5%;\r\n}\r\n\r\ndiv.trashcan { \r\n border: 1px solid gray;\r\n width: 175px; \r\n height: 50px; \r\n}\r\n\r\ndiv.editarea { \r\n margin-top:40px;\r\n padding:10px; \r\n float:left;\r\n border: 1px solid gray;\r\n}\r\n\r\ndiv.editquestion { \r\n padding:10px; \r\n float:left; \r\n}\r\ndiv.editanswer { \r\n padding:10px; \r\n float:left; \r\n}\r\n\r\n#submitbutton { padding:20px; }\r\n\r\ndiv.entry { \r\n padding-bottom:10px;\r\n padding-left:10px;\r\n}\r\n\r\nul.draglist { \r\n list-style: none;\r\n margin:0;\r\n padding:0;\r\n}\r\n\r\nul.draglist li {\r\n margin: 1px;\r\n}\r\n\r\nul.questionList {\r\n position: relative;\r\n background: #f7f7f7;\r\n border: 1px solid gray;\r\n list-style: none;\r\n margin:0;\r\n padding:0;\r\n min-height: 40px\r\n}\r\n\r\nli.section {\r\n background-color: #CCCCFF;\r\n border:1px solid #7EA6B2;\r\n cursor: move; \r\n min-height: 10px;\r\n}\r\nli.question {\r\n background-color: #D1E6EC;\r\n border:1px solid #7EA6B2;\r\n cursor: move; \r\n padding-left:10px; \r\n min-height: 10px;\r\n}\r\nli.answer {\r\n background-color: #F1FFB8;\r\n border:1px solid #7EA6B2;\r\n cursor: move; \r\n padding-left:15px; \r\n min-height: 10px;\r\n}\r\n#sections-panel li.selected {\r\n background-image: url(^Extras(\"toolbar/bullet/moveRight.gif\"););\r\n background-position:99% center;\r\n background-repeat: no-repeat;\r\n font-weight:bold;\r\n}\r\n\r\n#goto-yui-ac {\r\n width:15em;\r\n margin-top:0.5em;\r\n}\r\n.wGwarning {\r\n background-color:#FF6666;\r\n border:1px solid red;\r\n margin:5px;\r\n padding:10px;\r\n}\r\n.warning {\r\n padding: 5px;\r\n}\r\n#sections-panel .bd {\r\n overflow: auto;\r\n background-color:#fff;\r\n padding:10px;\r\n}\r\n#buttons {\r\n height: 30px; \r\n}\r\n#sections-panel_c .yui-resize .yui-resize-handle-r {\r\n right: -6px; /* make room for the scroll-bars */\r\n}\r\n#sections-panel div.ft {\r\n font-size: 100%;\r\n}\r\n',0,'text/css',1250243000,3600,'#editor_container { visibility: hidden; z-index: 100; }#loading-mask { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 20000; background-color: white; opacity:0.6; filter:alpha(opacity=60); }#loading { position: absolute; left: 50%; top: 50%; padding: 2px; z-index: 20001; height: auto; margin: -35px 0 0 -30px; }#loading .loading-indicator { background: url(^Extras(\"wobject/Survey/rel_interstitial_loading.gif\");) no-repeat; color: #555; font: bold 13px tahoma,arial,helvetica; padding: 18px 80px; margin: 0; text-align: center; height: auto; z-index: 20002; }div.testarea { width: 200px; height: 100px; z-index: 999; border: 1px solid gray; background: #f7f7f7; position: absolute; top: 5%; left:5%; }div.trashcan { border: 1px solid gray; width: 175px; height: 50px; }div.editarea { margin-top:40px; padding:10px; float:left; border: 1px solid gray; }div.editquestion { padding:10px; float:left; }div.editanswer { padding:10px; float:left; }#submitbutton { padding:20px; } div.entry { padding-bottom:10px; padding-left:10px; }ul.draglist { list-style: none; margin:0; padding:0; }ul.draglist li { margin: 1px; }ul.questionList { position: relative; background: #f7f7f7; border: 1px solid gray; list-style: none; margin:0; padding:0; min-height: 40px }li.section { background-color: #CCCCFF; border:1px solid #7EA6B2; cursor: move; min-height: 10px; }li.question { background-color: #D1E6EC; border:1px solid #7EA6B2; cursor: move; padding-left:10px; min-height: 10px; }li.answer { background-color: #F1FFB8; border:1px solid #7EA6B2; cursor: move; padding-left:15px; min-height: 10px; }#sections-panel li.selected { background-image: url(^Extras(\"toolbar/bullet/moveRight.gif\");); background-position:99% center; background-repeat: no-repeat; font-weight:bold; }#goto-yui-ac { width:15em; margin-top:0.5em; }.wGwarning { background-color:#FF6666; border:1px solid red; margin:5px; padding:10px; }.warning { padding: 5px; }#sections-panel .bd { overflow: auto; background-color:#fff; padding:10px; }#buttons { height: 30px; }#sections-panel_c .yui-resize .yui-resize-handle-r { right: -6px; /* make room for the scroll-bars */ }#sections-panel div.ft { font-size: 100%; }',0),('hkj6WeChxFyqfP85UlRP8w','.wg-clear {\r\n display: inline;\r\n clear: both;\r\n font-size:0px;\r\n line-height:0px;\r\n}\r\n\r\n/* COLUMN STYLES */\r\n#matrixLeft {\r\n float:left;\r\n width:65%;\r\n padding:1%;\r\n min-height:1%;\r\n background-color:#d2d2d2;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n}\r\n#matrixRight {\r\n float:left;\r\n width:25%;\r\n padding:0px;\r\n min-height:1%;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n border: solid silver 1px;\r\n background-color:white; \r\n margin-left:5px;\r\n}\r\n\r\n\r\n\r\n/* DROPSHADOW BUTTONS */\r\n#matrixLeft .buttons span {\r\n background-color:#888;\r\n position:relative;\r\n padding:5px 0px 0px 0px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px;\r\n\r\n}\r\n#matrixLeft .buttons button,\r\n#matrixLeft .buttons a#return {\r\n border:solid #2f495e 2px;\r\n position:relative;\r\n background-color:#e1e1e1;\r\n padding:auto 3px;\r\n margin:0px;\r\n font-size:11px;\r\n line-height:13px;\r\n position:relative;\r\n top:-6px;\r\n left:-2px;\r\n height:22px;\r\n cursor:pointer;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#333;\r\n}\r\n#matrixLeft .buttons a#return {\r\n font-size:10px;\r\n padding:3px 10px 2px 10px;\r\n}\r\n#matrixLeft .buttons button:hover,\r\n#matrixLeft .buttons a#return:hover {\r\n border-color:black;\r\n color:white;\r\n background-color:#444;\r\n}\r\n\r\n\r\n\r\n/* WHITE AREA FOR THE LISTING OF OBJECTS TO COMPARE */\r\n#matrixLeft .matrixListing {\r\n background-color:white;\r\n _height:300px;\r\n min-height:300px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius: 4px; \r\n margin:10px 2px 20px 2px;\r\n padding:auto 10px;\r\n}\r\n#matrixLeft .matrixListing table {\r\n border-collapse:collapse;\r\n margin:0px;\r\n padding:0px;\r\n display:block;\r\n}\r\n#matrixLeft .matrixListing table a:link {\r\n font-size:12px;\r\n color:#111;\r\n}\r\n#matrixLeft .matrixListing table a:visited {\r\n color:#333;\r\n font-size:12px;\r\n text-decoration:none;\r\n}\r\n#matrixLeft .matrixListing table a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* GRAY BAR THAT HOLDS THE SORT BUTTONS */\r\n#matrixLeft .matrixListing .sortButtons {\r\n background-color:#f1f1f1;\r\n border:solid silver 1px;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft: 4px;\r\n -webkit-border-radius-topRight: 4px; \r\n border-bottom:solid #D2D2D2 2px;\r\n display:block;\r\n}\r\n\r\n\r\n\r\n/* STYLES TO OVERRIDE THE SORT BUTTON CSS BUILT INTO THE PERL CODE */\r\n#sortByViews-button,\r\n#sortByCompares-button,\r\n#sortByUpdated-button,\r\n#sortByClicks-button,\r\n#sortByName-button {\r\n background: none;\r\n white-space:nowrap;\r\n border-style:none;\r\n cursor:pointer;\r\n padding-bottom:4px;\r\n border-style:none;\r\n background-color:transparent;\r\n border-right:solid silver 1px;\r\n color:#555;\r\n}\r\n#sortByViews-button:hover,\r\n#sortByCompares-button:hover,\r\n#sortByUpdated-button:hover,\r\n#sortByClicks-button:hover,\r\n#sortByName-button:hover {\r\n color:black;\r\n}\r\n\r\n\r\n\r\n/* MATRIX STATISTICS */\r\n#matrixRight .mainTitle {\r\n font-size:20px;\r\n padding:5px 10px;\r\n border-bottom: solid gray 1px;\r\n background-color:#d2d2d2;\r\n}\r\n#matrixRight .textBox {\r\n border-top:solid silver 1px;\r\n padding:10px 5px;\r\n}\r\n.matrixStatistics {\r\n padding:10px;\r\n}\r\n.matrixStatistics .title {\r\n font-weight:bold;\r\n background-color:#f1f1f1;\r\n padding:2px 5px;\r\n font-size:11px;\r\n -moz-border-radius:4px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n.matrixStatistics .statistics {\r\n margin-bottom:15px;\r\n}\r\n.matrixStatistics .label {\r\n text-align:right;\r\n width:100px;\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data {\r\n font-size:10px;\r\n}\r\n.matrixStatistics .data a {\r\n color:#111;\r\n}\r\n.matrixStatistics .data a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n\r\n\r\n/* LINKS TO CONTROL ADMIN FUNCTIONS */\r\n.adminLinks {\r\n background-color:#f1f1f1;\r\n}\r\n.adminLinks a:link,\r\n.adminLinks a:visited {\r\n display:block;\r\n text-align:center;\r\n text-decoration:none;\r\n color:#555;\r\n font-weight:normal;\r\n font-size:10px;\r\n padding:2px 5px;\r\n border-top:solid silver 1px;\r\n}\r\n.adminLinks a:hover {\r\n color:black;\r\n}\r\n.adminLinks a.newLink:link,\r\n.adminLinks a.newLink:visited {\r\n background-color:#3498d1;\r\n color:white;\r\n display:block;\r\n}\r\n.adminLinks a.newLink:hover {\r\n background-color:#39a6e5;\r\n}\r\n\r\n\r\n\r\n/* STYLE FOR THE DETAILED LISTING */\r\n#matrixDetail {\r\n min-width:1000px;\r\n}\r\n#matrixDetail .editBtns {\r\n font-size:9px;\r\n line-height:11px;\r\n vertical-align:middle;\r\n font-weight:normal;\r\n margin-left:10px;\r\n}\r\n#matrixDetail .editBtns a {\r\n color:black;\r\n text-decoration:underline;\r\n}\r\n#matrixDetail .editBtns a:hover {\r\n text-decoration:none;\r\n}\r\n\r\n#matrixDetail .stats .screenshot {\r\n float:left;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixDetail .commentsMail strong.title {\r\n margin-bottom:0px;\r\n margin-top:20px;\r\n display:block;\r\n background-color:#d2d2d2;\r\n padding:2px 10px;\r\n border:solid 1px gray;\r\n border-bottom-color:silver;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n}\r\n\r\n#matrixDetail .assetAspectComments {\r\n margin:0px 0px 20px 0px;\r\n border:solid gray 1px;\r\n background-color:#f1f1f1;\r\n -moz-border-radius-bottomLeft:4px;\r\n -moz-border-radius-bottomRight:4px;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectComment {\r\n border-top:solid silver 1px;\r\n border-bottom:solid gray 1px;\r\n padding:3px;\r\n background-color:#f5f5f5;\r\n}\r\n#matrixDetail .assetAspectComments .assetAspectCommentForm {\r\n border-top:solid #d2d2d2 5px;\r\n padding:20px;\r\n}\r\n\r\n\r\n\r\n#matrixDetail .stats ul, #matrixDetail .stats ul li {\r\n list-style-type:none;\r\n margin:0px;\r\n padding:0px;\r\n}\r\n#matrixDetail .stats ul li {\r\n display:block;\r\n line-height:20px;\r\n margin:4px 0px;\r\n}\r\n#matrixDetail .stats ul li strong {\r\n display:block;\r\n float:left;\r\n width:130px;\r\n text-align:right;\r\n background-color:#f1f1f1;\r\n padding-right:5px;\r\n margin-right:5px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:3px;\r\n font-size:11px;\r\n border:solid #d2d2d2 1px;\r\n}\r\n\r\n\r\n.showLink {\r\n background-color:#e1e1e1;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n.showLink:hover,\r\n.hideLink:hover {\r\n background-color:#555;\r\n color:white;\r\n}\r\n.hideLink {\r\n background-color:#f1f1f1;\r\n border:2px solid #2F495E;\r\n border-bottom-style:none;\r\n -moz-border-radius-topLeft:4px;\r\n -moz-border-radius-topRight:4px;\r\n -webkit-border-radius-topLeft:4px;\r\n -webkit-border-radius-topRight:4px;\r\n padding:3px 10px;\r\n text-decoration:none;\r\n color:black;\r\n}\r\n\r\n#matrixMail {\r\n background-color:#f1f1f1;\r\n padding:15px;\r\n border:2px solid #2F495E;\r\n -moz-border-radius:4px;\r\n -moz-border-radius-topLeft:0px;\r\n -webkit-border-radius:4px;\r\n -webkit-border-radius-topLeft:0px;\r\n margin-top:1px;\r\n}\r\n#matrixMail * .tableData {\r\n padding:5px;\r\n margin:0px;\r\n}\r\n#matrixMail * input {\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#matrixMail * .formDescription {\r\n text-align:right;\r\n vertical-align:middle;\r\n padding-right:10px;\r\n font-weight:bold;\r\n}\r\n#matrixMail form * img {\r\n margin-top:-18px;\r\n}\r\n#matrixMail #verify_formId {\r\n height:45px;\r\n line-height:45px;\r\n font-size:35px;\r\n padding:0px;\r\n margin:0px;\r\n margin-right:20px;\r\n}\r\n\r\n#matrixRatings {\r\n width:264px;\r\n position:relative;\r\n left:-2px;\r\n top:12px;\r\n}\r\n#matrixRatings table {\r\n margin-left:0px;\r\n}\r\n#matrixRatings td {\r\n overflow:hidden;\r\n}\r\n#matrixRatings .formDescription {\r\n text-align:right;\r\n background-color:#97BCD1;\r\n border:solid #4D606B 1px;\r\n padding:2px 5px;\r\n font-weight:bold;\r\n font-size:10x;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n color:#333;\r\n}\r\n#matrixRatings .formDescription a:before {\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a {\r\n display:block;\r\n color:red;\r\n text-decoration:none;\r\n}\r\n#matrixRatings .formDescription a:hover {\r\n text-decoration:underline;\r\n}\r\n\r\n\r\n\r\n\r\n#matrixAttributes {\r\n float:left;\r\n _width:40%;\r\n min-width:20%;\r\n max-width:45%;\r\n margin-right:20px;\r\n}\r\n#rightDetails {\r\n float:left;\r\n _width:20%;\r\n min-width:20%;\r\n max-width:45%;\r\n}\r\n\r\n\r\n\r\n#attributes {\r\n border:solid #d2d2d2 1px;\r\n background-color:#f1f1f1;\r\n margin-top:10px;\r\n -moz-border-radius:4px;\r\n -webkit-border-radius:4px;\r\n padding:10px;\r\n}\r\n#attributes table {\r\n border-collapse:collapse;\r\n padding:0px;\r\n margin:0px;\r\n}\r\n#attributes table * td {\r\n padding:2px;\r\n margin:0px;\r\n}\r\n\r\n\r\n.yui-dt0-col-value {\r\n font-weight:bold;\r\n font-size:14px;\r\n padding:3px;\r\n white-space:no-wrap;\r\n}\r\n\r\n\r\n\r\n/* COMPARISON STYLES */\r\n#compareList table {\r\n border-collapse:collapse;\r\n border:solid silver 1px;\r\n margin-top:5px;\r\n}\r\n#compareList table * th a {\r\n color:black;\r\n padding:1px 5px;\r\n}\r\n#compareList table * td {\r\n background-color:#f1f1f1;\r\n border-top:solid gray 1px;\r\n border-bottom:solid silver 1px;\r\n}\r\n\r\n#compareList .yui-dt-liner {\r\n color:#39A6E5;\r\n}\r\n\r\n#compareList .yui-dt-col-name .yui-dt-liner {\r\n font-style:italic;\r\n font-size:10px;\r\n color:#555;\r\n}\r\n#compareList .yui-dt-col-name .yui-dt-liner b {\r\n font-size:15px;\r\n font-style:normal;\r\n padding-right:25px;\r\n color:black;\r\n}',0,'text/css',1250243000,0,'.wg-clear{display:inline;clear:both;font-size:0px;line-height:0px;}#matrixLeft{float:left;width:65%;padding:1%;min-height:1%;background-color:#d2d2d2;-moz-border-radius:4px;-webkit-border-radius:4px;}#matrixRight{float:left;width:25%;padding:0px;min-height:1%;-moz-border-radius:4px;-webkit-border-radius:4px;border:solid silver 1px;background-color:white;margin-left:5px;}#matrixLeft .buttons span{background-color:#888;position:relative;padding:5px 0px 0px 0px;-moz-border-radius:4px;-webkit-border-radius:4px;}#matrixLeft .buttons button,#matrixLeft .buttons a#return{border:solid #2f495e 2px;position:relative;background-color:#e1e1e1;padding:auto 3px;margin:0px;font-size:11px;line-height:13px;position:relative;top:-6px;left:-2px;height:22px;cursor:pointer;-moz-border-radius:4px;-webkit-border-radius:4px;font-weight:bold;text-decoration:none;color:#333;}#matrixLeft .buttons a#return{font-size:10px;padding:3px 10px 2px 10px;}#matrixLeft .buttons button:hover,#matrixLeft .buttons a#return:hover{border-color:black;color:white;background-color:#444;}#matrixLeft .matrixListing{background-color:white;_height:300px;min-height:300px;-moz-border-radius:4px;-webkit-border-radius:4px;margin:10px 2px 20px 2px;padding:auto 10px;}#matrixLeft .matrixListing table{border-collapse:collapse;margin:0px;padding:0px;display:block;}#matrixLeft .matrixListing table a:link{font-size:12px;color:#111;}#matrixLeft .matrixListing table a:visited{color:#333;font-size:12px;text-decoration:none;}#matrixLeft .matrixListing table a:hover{text-decoration:none;}#matrixLeft .matrixListing .sortButtons{background-color:#f1f1f1;border:solid silver 1px;-moz-border-radius-topLeft:4px;-moz-border-radius-topRight:4px;-webkit-border-radius-topLeft:4px;-webkit-border-radius-topRight:4px;border-bottom:solid #D2D2D2 2px;display:block;}#sortByViews-button,#sortByCompares-button,#sortByUpdated-button,#sortByClicks-button,#sortByName-button{background:none;white-space:nowrap;border-style:none;cursor:pointer;padding-bottom:4px;border-style:none;background-color:transparent;border-right:solid silver 1px;color:#555;}#sortByViews-button:hover,#sortByCompares-button:hover,#sortByUpdated-button:hover,#sortByClicks-button:hover,#sortByName-button:hover{color:black;}#matrixRight .mainTitle{font-size:20px;padding:5px 10px;border-bottom:solid gray 1px;background-color:#d2d2d2;}#matrixRight .textBox{border-top:solid silver 1px;padding:10px 5px;}.matrixStatistics{padding:10px;}.matrixStatistics .title{font-weight:bold;background-color:#f1f1f1;padding:2px 5px;font-size:11px;-moz-border-radius:4px;border:solid #d2d2d2 1px;}.matrixStatistics .statistics{margin-bottom:15px;}.matrixStatistics .label{text-align:right;width:100px;font-size:10px;}.matrixStatistics .data{font-size:10px;}.matrixStatistics .data a{color:#111;}.matrixStatistics .data a:hover{text-decoration:none;}.adminLinks{background-color:#f1f1f1;}.adminLinks a:link,.adminLinks a:visited{display:block;text-align:center;text-decoration:none;color:#555;font-weight:normal;font-size:10px;padding:2px 5px;border-top:solid silver 1px;}.adminLinks a:hover{color:black;}.adminLinks a.newLink:link,.adminLinks a.newLink:visited{background-color:#3498d1;color:white;display:block;}.adminLinks a.newLink:hover{background-color:#39a6e5;}#matrixDetail{min-width:1000px;}#matrixDetail .editBtns{font-size:9px;line-height:11px;vertical-align:middle;font-weight:normal;margin-left:10px;}#matrixDetail .editBtns a{color:black;text-decoration:underline;}#matrixDetail .editBtns a:hover{text-decoration:none;}#matrixDetail .stats .screenshot{float:left;margin-right:20px;}#matrixDetail .commentsMail strong.title{margin-bottom:0px;margin-top:20px;display:block;background-color:#d2d2d2;padding:2px 10px;border:solid 1px gray;border-bottom-color:silver;-moz-border-radius-topLeft:4px;-moz-border-radius-topRight:4px;}#matrixDetail .assetAspectComments{margin:0px 0px 20px 0px;border:solid gray 1px;background-color:#f1f1f1;-moz-border-radius-bottomLeft:4px;-moz-border-radius-bottomRight:4px;}#matrixDetail .assetAspectComments .assetAspectComment{border-top:solid silver 1px;border-bottom:solid gray 1px;padding:3px;background-color:#f5f5f5;}#matrixDetail .assetAspectComments .assetAspectCommentForm{border-top:solid #d2d2d2 5px;padding:20px;}#matrixDetail .stats ul,#matrixDetail .stats ul li{list-style-type:none;margin:0px;padding:0px;}#matrixDetail .stats ul li{display:block;line-height:20px;margin:4px 0px;}#matrixDetail .stats ul li strong{display:block;float:left;width:130px;text-align:right;background-color:#f1f1f1;padding-right:5px;margin-right:5px;-moz-border-radius:4px;-webkit-border-radius:3px;font-size:11px;border:solid #d2d2d2 1px;}.showLink{background-color:#e1e1e1;border:2px solid #2F495E;-moz-border-radius:4px;-webkit-border-radius:4px;padding:3px 10px;text-decoration:none;color:black;}.showLink:hover,.hideLink:hover{background-color:#555;color:white;}.hideLink{background-color:#f1f1f1;border:2px solid #2F495E;border-bottom-style:none;-moz-border-radius-topLeft:4px;-moz-border-radius-topRight:4px;-webkit-border-radius-topLeft:4px;-webkit-border-radius-topRight:4px;padding:3px 10px;text-decoration:none;color:black;}#matrixMail{background-color:#f1f1f1;padding:15px;border:2px solid #2F495E;-moz-border-radius:4px;-moz-border-radius-topLeft:0px;-webkit-border-radius:4px;-webkit-border-radius-topLeft:0px;margin-top:1px;}#matrixMail * .tableData{padding:5px;margin:0px;}#matrixMail * input{padding:0px;margin:0px;}#matrixMail * .formDescription{text-align:right;vertical-align:middle;padding-right:10px;font-weight:bold;}#matrixMail form * img{margin-top:-18px;}#matrixMail #verify_formId{height:45px;line-height:45px;font-size:35px;padding:0px;margin:0px;margin-right:20px;}#matrixRatings{width:264px;position:relative;left:-2px;top:12px;}#matrixRatings table{margin-left:0px;}#matrixRatings td{overflow:hidden;}#matrixRatings .formDescription{text-align:right;background-color:#97BCD1;border:solid #4D606B 1px;padding:2px 5px;font-weight:bold;font-size:10x;-moz-border-radius:4px;-webkit-border-radius:4px;color:#333;}#matrixRatings .formDescription a:before{text-decoration:none;}#matrixRatings .formDescription a{display:block;color:red;text-decoration:none;}#matrixRatings .formDescription a:hover{text-decoration:underline;}#matrixAttributes{float:left;_width:40%;min-width:20%;max-width:45%;margin-right:20px;}#rightDetails{float:left;_width:20%;min-width:20%;max-width:45%;}#attributes{border:solid #d2d2d2 1px;background-color:#f1f1f1;margin-top:10px;-moz-border-radius:4px;-webkit-border-radius:4px;padding:10px;}#attributes table{border-collapse:collapse;padding:0px;margin:0px;}#attributes table * td{padding:2px;margin:0px;}.yui-dt0-col-value{font-weight:bold;font-size:14px;padding:3px;white-space:no-wrap;}#compareList table{border-collapse:collapse;border:solid silver 1px;margin-top:5px;}#compareList table * th a{color:black;padding:1px 5px;}#compareList table * td{background-color:#f1f1f1;border-top:solid gray 1px;border-bottom:solid silver 1px;}#compareList .yui-dt-liner{color:#39A6E5;}#compareList .yui-dt-col-name .yui-dt-liner{font-style:italic;font-size:10px;color:#555;}#compareList .yui-dt-col-name .yui-dt-liner b{font-size:15px;font-style:normal;padding-right:25px;color:black;}',0),('iCM9pRY5yYyjufROgaCDlg','.editStory { width: 100%;\r\n}\r\n\r\n.editStory legend {\r\n font-size: 1.8em;\r\n border-bottom: 2px solid;\r\n}\r\n\r\n.editStory tbody {\r\n width: 943px;\r\n}\r\n\r\n.editStory td {\r\n padding: 5px;\r\n}\r\n\r\n.editStory .story {\r\n float:left;\r\n}\r\n\r\n.editStory .story label, .editStory .photo label {\r\n display: block;\r\n width: 100%;\r\n text-align: right;}\r\n\r\n.editStory .photoContainer {\r\n border: 1px solid;\r\n float:left;\r\n margin: 10px 0 0 20px;\r\n}\r\n\r\n.editStory .photoContainer .photoHeader {\r\n font-size: 1.2em;\r\n font-weight: bold;\r\n}\r\n\r\n.editStory .buttons {\r\n clear: both;\r\n text-align: right;\r\n padding: 10px 0;\r\n}\r\n\r\n.editStory #story_formId_tbl {\r\n width: 100% !important;\r\n}\r\n\r\n.editStory fieldset {\r\n border: none;\r\n}\r\n\r\n\r\n\r\n.storyArchive { width: 100%;\r\n}\r\n\r\n.storyArchive h3 {\r\n border-bottom: 2px solid;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.storyArchive .storyList {\r\n list-style-type: none;\r\n padding-left: 0;\r\n}\r\n\r\n.storyArchive .storyList li {\r\n padding-left: 10px;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.storyArchive .pagination { \r\n float: left;\r\n list-style-type: none;\r\n}\r\n\r\n.storyArchive .keywords {\r\n width: 100%;\r\n clear: both;\r\n}\r\n\r\n.storyArchive img {\r\n border: none;\r\n}\r\n\r\n.storyArchive .controls a {\r\n margin-right: 10px;\r\n}\r\n\r\n.viewStory .storyTitle, .viewStory .storyUpdated, .viewStoryTopic .storyTitle, .viewStoryTopic .storyUpdated {\r\n float: left;\r\n}\r\n\r\n.viewStory .storyTitle, .viewStoryTopic .storyTitle {\r\n font-size: 1.5em;\r\n width: 100%;\r\n}\r\n\r\n.viewStory .storyHighlights, .viewStoryTopic .storyHighlights {\r\n float:right;\r\n margin-top: -1.5em;\r\n}\r\n\r\n.viewStory .storyPhoto, .viewStoryTopic .storyPhoto {\r\n float: left;\r\n margin: 0 10px 10px 0;\r\n}\r\n\r\n.viewStory .photoCaption, .viewStoryTopic .photoCaption {\r\n width: 496px;\r\n padding: 5px;\r\n display:block;\r\n}\r\n.viewStory .clear, .viewStoryTopic .clear {\r\n clear: both;\r\n}\r\n.storyTopic {\r\n width: 100%;\r\n}\r\n\r\n.storyTopic h3{ border-bottom: 2px solid;\r\n}\r\n.storyTopic .topStory {\r\n width: 340px;\r\n float: left;\r\n}\r\n\r\n.storyTopic .storyList {\r\n width: 250px;\r\n float: left;\r\n}\r\n\r\n.storyTopic .storyListBig {\r\n width: 100%;\r\n float: left;\r\n}\r\n\r\n#htmltagcloud, .wg-clear {\r\n clear:both;\r\n}\r\n',0,'text/css',1253305659,3600,'.editStory { width: 100%; }.editStory legend { font-size: 1.8em; border-bottom: 2px solid; }.editStory tbody { width: 943px; }.editStory td { padding: 5px; }.editStory .story { float:left; }.editStory .story label, .editStory .photo label { display: block; width: 100%; text-align: right;} .editStory .photoContainer { border: 1px solid; float:left; margin: 10px 0 0 20px; }.editStory .photoContainer .photoHeader { font-size: 1.2em; font-weight: bold; }.editStory .buttons { clear: both; text-align: right; padding: 10px 0; }.editStory #story_formId_tbl { width: 100% !important; }.editStory fieldset { border: none; }.storyArchive { width: 100%; }.storyArchive h3 { border-bottom: 2px solid; margin-bottom: 10px; }.storyArchive .storyList { list-style-type: none; padding-left: 0; }.storyArchive .storyList li { padding-left: 10px; margin-bottom: 10px; }.storyArchive .pagination { float: left; list-style-type: none; }.storyArchive .keywords { width: 100%; clear: both; }.storyArchive img { border: none; }.storyArchive .controls a { margin-right: 10px; }.viewStory .storyTitle, .viewStory .storyUpdated, .viewStoryTopic .storyTitle, .viewStoryTopic .storyUpdated { float: left; }.viewStory .storyTitle, .viewStoryTopic .storyTitle { font-size: 1.5em; width: 100%; }.viewStory .storyHighlights, .viewStoryTopic .storyHighlights { float:right; margin-top: -1.5em; }.viewStory .storyPhoto, .viewStoryTopic .storyPhoto { float: left; margin: 0 10px 10px 0; }.viewStory .photoCaption, .viewStoryTopic .photoCaption { width: 496px; padding: 5px; display:block; }.viewStory .clear, .viewStoryTopic .clear { clear: both; }.storyTopic { width: 100%; }.storyTopic h3{ border-bottom: 2px solid; }.storyTopic .topStory { width: 340px; float: left; }.storyTopic .storyList { width: 250px; float: left; }.storyTopic .storyListBig { width: 100%; float: left; }#htmltagcloud, .wg-clear { clear:both; }',0),('VyCINX2KixKYr2pzQGX9Mg','/*/ styles for the layout asset /*/\r\n.wg-left {\r\n float: left;\r\n}\r\n.wg-right {\r\n float: right;\r\n}\r\n.wg-clear {\r\n clear: both;\r\n}\r\n.sidebyside .wg-content-position, .oneovertwo .wg-content-position {\r\n width: 49%;\r\n}\r\n.oneovertwo .wg-top {\r\n width: 100%;\r\n}\r\n.oneoverthree .wg-first-column, .oneoverthree .wg-second-column, .oneoverthree .wg-third-column,\r\n.threeColumns .wg-first-column, .threeColumns .wg-second-column, .threeColumns .wg-third-column {\r\n width: 32%;\r\n}\r\n.oneoverthree .wg-first-column,\r\n.threeColumns .wg-first-column {\r\n margin-right:2%;\r\n}\r\n.rightcolumn .wg-first-column {\r\n width: 65%;\r\n}\r\n.rightcolumn .wg-second-column {\r\n width: 33%;\r\n}\r\n',0,'text/css',1254881103,0,'/*/ styles for the layout asset /*/ .wg-left { float: left; }.wg-right { float: right; }.wg-clear { clear: both; }.sidebyside .wg-content-position, .oneovertwo .wg-content-position { width: 49%; }.oneovertwo .wg-top { width: 100%; }.oneoverthree .wg-first-column, .oneoverthree .wg-second-column, .oneoverthree .wg-third-column { width: 32%; }.oneoverthree .wg-first-column { margin-right:2%; }.rightcolumn .wg-first-column { width: 65%; }.rightcolumn .wg-second-column { width: 33%; }',0),('zb_OPKNqcTuIjdvvbEkRjw','/*/ styles for the article asset /*/\r\n.withImage .articleContent, .linkedImage .articleContent {\r\n width:100%;\r\n overflow:hidden;\r\n}\r\n.withImage .articleImage, .linkedImage .articleImage {\r\n float:right;\r\n margin:0 0 10px 10px;\r\n}\r\n.linkedImage .caption {\r\n display:block;\r\n}\r\n',0,'text/css',1256092368,0,'/*/ styles for the article asset /*/ .withImage .articleContent, .linkedImage .articleContent { width:100%; overflow:hidden; }.withImage .articleImage, .linkedImage .articleImage { float:right; margin:0 0 10px 10px; }',0),('pbrobot000000000000001','User-agent: *\nDisallow: *?op=auth\nDisallow: *?op=account\nDisallow: *?op=ajaxGetI18N\nDisallow: *?op=makePrintable\nDisallow: *?op=viewHelp\nDisallow: *?op=viewHelpIndex\n\n',0,'text/plain',1256092369,3600,'User-agent: googlebot\nDisallow: *?op=displayLogin\nDisallow: *?op=makePrintable\n',0),('H_-8zjtWsO1FUpQqNtkxNQ','/*/ In this stylesheet you can find the styles that are used\r\nin more than one template. For example: file/attachment icons,\r\npagination etc. /*/\r\n/*/ Elements that are styled with this stylesheet have a\r\nclassname that starts with \"wg-\". /*/\r\n\r\n/*/ general /*/\r\n.wg-icon {\r\nborder:0px none;\r\nvertical-align: middle;\r\n}\r\n.wg-clear {\r\nclear:both;\r\n}\r\n/*/ inline list (pagination) /*/\r\n.wg-inline {\r\nmargin:0 0 1em;\r\npadding:0;\r\n}\r\n.wg-inline li {\r\ndisplay:inline;\r\nmargin:0;\r\npadding:0;\r\n}\r\n.wg-inline li.active {\r\nfont-weight:bold;\r\n}\r\n/*/ forms /*/\r\n.wg-captchaImage {\r\nborder:0 none;\r\nvertical-align:middle;\r\nmargin-left:5px;\r\n}\r\n\r\n',0,'text/css',1258524916,0,'/*/ In this stylesheet you can find the styles that are used in more than one template. For example: file/attachment icons, pagination etc. /*/ /*/ Elements that are styled with this stylesheet have a classname that starts with \"wg-\". /*/ /*/ general /*/ .wg-icon { border:0px none; vertical-align: middle; }.wg-clear { clear:both; }/*/ inline list (pagination) /*/ .wg-inline { margin:0 0 1em; padding:0; }.wg-inline li { display:inline; margin:0; padding:0; }.wg-inline li.active { font-weight:bold; }/*/ forms /*/ .wg-captchaImage { border:0 none; vertical-align:middle; margin-left:5px; }',0),('_XfvgNH__bY1ykMiKYSobQ','/* general */ \n\n.WGsubContent {\n color:#000000;\n} \n.WGbutton {\n float:right;\n padding-right:10px;\n} \n.centered {\n text-align: center;\n}\n.WGaccount_message {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 300px;\n margin-bottom: 10px;\n margin-left: 60px;\n margin-top: 20px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n padding:10px;\n text-align: left;\n vertical-align:top;\n width: 90%;\n}\n\n.WGprofileMember {\n font-size:9px;\n margin-right:20px;\n text-align:right;\n}\n.WGmember {\n color:#3e4f77;\n font: 9px Verdana, Arial, Helvetica, sans-serif;\n text-align:center;\n}\n.WGphotostyle {\n border:solid #3e4f77 2px;\n margin-bottom:5px;\n margin-top:5px\n }\n#rightalign {\n float: right;\n}\n/*.WGsend {\n float:right;\n padding-right: 75px;\n}*/\n\n\n/* bio, addtonetwork, network */\n.WGbordered {\n border-bottom: dashed #BECEF8 2px;\n padding-bottom: 10px;\n}\n.WGfriendpic {\n border: solid #BECEF8 1px;\n}\n.WGinvitemsg {\n width: 600px;\n height: 150px;\n}\nol.WGProfile_interests {\n color:#0B2259;\n font-size:15px;\n font-weight:bold;\n list-style-type:none;\n margin:0px;\n padding:0px;\n padding:5px 5px;\n}\nol.WGProfile_interests li {\n margin-bottom:15px;\n}\nol.WGProfile_interests span {\n font-size:12px;\n font-weight:normal;\n color:black;\n}\n.WGpBio {\n border-bottom:solid #DDE6FB 1px;\n margin:0px;\n margin-bottom:5px;\n padding-bottom:5px; \n}\n.WGpBio div {\n background-color:#DDE6FB;\n padding:2px 5px;\n margin-bottom:2px;\n}\n.WGprogram {\n font-size: 9px;\n}\n\n/* contributions */\n\n.WGContribCount {\n font-size:12px;\n text-align:left;\n padding:3px\n}\n.WGContribTitle {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n}\n.WGContribTitleLeft {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#0B2259;\n font-size:12px;\n font-weight:bold;\n min-height:25px;\n padding:3px;\n text-align:center;\n text-decoration: underline;\n} \n.WGContribEntry {\n text-align:center;\n padding:3px;\n}\n.WGContribEntryLeft {\n text-align:left;\n padding:3px;\n}\n \n/* edit box */\n.WGeditBox {\n /*background:white url(images/edit_box_bg.jpg) no-repeat bottom left;*/\n border:solid #8DABF1 2px;\n display:block;\n font-family:verdana;\n font-size:9px;\n font-weight:bold;\n left:100px;\n -moz-box-sizing:border-box;\n padding:5px;\n position:absolute;\n top:100px;\n width:590px;\n z-index:100;\n \n}\n.WGeditBox input, .WGeditBox select {\n font-size:9px; \n}\n\n/* friends */\n\n.WGfriends_name {\n font-weight:bold;\n width:90%;\n}\n.WGfriends_photo {\n font-weight:bold;\n width:10%;\n}\n.WGfriends_photo img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_private { \n float:right;\n padding-bottom: 5px;\n width: 50%;\n}\n.WGfriends_ninety { \n vertical-align:top;\n width: 90%;\n}\n.WGfriends_seventy { \n vertical-align:top;\n width: 70%;\n}\n.WGfriends_ten { \n width: 10%;\n}\n.WGfriends_ten img {\n height: 50px; \n width: 50px;\n}\n.WGfriends_twenty { \n width: 20%;\n}\n.WGaccepts {\n padding-bottom: 5px;\n}\n\n/* inbox */\n\n.WGProfile_msgcontainer {\n padding:2px;\n}\n.WGinbox_count {\n font-size:12px;\n font-weight:bold;\n padding:3px;\n text-align:left;\n}\n.WGinbox_errors {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n.WG_inbox_InviteLabel {\n width:50px;\n text-align:right;\n}\n.WG_inbox_InviteLabelView {\n font-weight:bold;\n width:120px;\n}\n.WGmsgcontainer {\n padding:6px;\n display:block;\n margin-bottom:6px;\n}\n/* inbox contacts */\n.WGdatacells {\n border-bottom: dashed #BECEF8 1px;\n}\n.WGinbox_contactsTbl {\n background-color:#EEF2FD;\n font-family:arial;\n font-size:9pt;\n width:100%;\n}\n#contacts {\n height: 275px;\n overflow: auto;\n}\n/* inbox forms */\n.WGbuttons_left {\n float: left;\n}\n.WGbuttons_right {\n float: right;\n}\n.WGinbox_from {\n color: black;\n font-weight: normal;\n text-decoration: none;\n}\n.WGinbox_subject {\n width: 530px;\n}\n.WGinbox_messageTo {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 50px;\n overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;\n width: 530px;\n}\n/* inbox pagination */\n.WGinbox_buttons {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%; \n}\n.WGinbox_pagination {\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGinbox_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGmessage {\n display:inline;\n float:left;\n font-size:10px;\n text-align:left;\n width:70%;\n}\n\n.WGmessagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n float: right;\n}\n\n.WG-previous-next {\n float: right;\n}\n\n/* inbox threads */\n\n.WGevenThread {\n background-color: #e1e8fb;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align:center;\n}\n.WGoddThread {\n background-color: #eef2fd;\n border-bottom: 1px solid #bfcef9;\n padding: 8px;\n text-align: center;\n}\n\n/* pagination */\n.WGProfile_pagination {\n font-size:10px;\n text-align:right;\n width:20%;\n}\n.WGProfile_messagerpp {\n font-size:10px;\n display:inline;\n text-align:right;\n width:20%;\n}\n.WGProfile_paginationLeft {\n font-size:10px;\n text-align:left;\n width:20%;\n}\n.WGProfile_paginationCenter {\n font-size:10px;\n text-align:center;\n width:20%;\n}\n.WGProfile_pagination a {\n background-color:#f2f5fa;\n border:solid #bfc8dc 1px;\n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination a:hover {\n background-color:#d8dee8;\n color:white;\n}\n.WGProfile_pagination .prevNext {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .prevNext:hover {\n background-color: transparent;\n border: none;\n color: black;\n}\n.WGProfile_pagination .active {\n background-color:#d8dee8;\n border:solid #bfc8dc 1px;\n color:white; \n font-size:10px;\n font-weight:bold;\n padding:1px 5px;\n text-decoration:none;\n}\n.WGProfile_pagination img {\n vertical-align:middle;\n margin-top:2px;\n border:none;\n}\n/* profile */\n.WGProfile_registration {\n background:none;\n border:none;\n font-size:9pt;\n font-family:arial;\n margin:0;\n padding:0;\n width:100%;\n}\n.WGProfile_registration .header {\n background-color:#818997;\n color:#3e4f77;\n font-size:10px;\n font-weight:bold;\n text-align:left; \n}\n.WGProfile_registration .header a {\n color:white;\n text-decoration:none; \n}\n.WGProfile_registration .help a {\n font-weight:bold;\n text-decoration:none;\n}\n.WGProfile_registration .inputText {\n font-size:10px;\n margin-right:1px;\n}\n.WGProfile_registration .label {\n font-size:9pt;\n font-weight:bold;\n text-align:right;\n white-space:nowrap;\n width:1%;\n} \n.WGProfile_registration .labelLeft {\n font-size:9pt;\n font-weight:bold;\n white-space:nowrap;\n width:1%;\n text-align: left;\n vertical-align: top;\n}\n.WGProfile_registration .smallLabel {\n font-size:8px;\n text-align:center;\n}\n.WGProfile_registration .smallText {\n font-size:9px;\n}\n\n.WGinboxTbl {\n display:block;\n margin: 4px;\n padding: 2px;\n}\n\n.WGProfile_registration .bar, .WGProfile_registration .barRight {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin:10px 0px 10px 0px;\n min-height:25px;\n padding:4px 4px 0px 4px;\n vertical-align:middle;\n}\n.WGProfile_registration .bar {\n text-align: center;\n}\n.WGProfile_registration .barRight {\n text-align: right;\n}\n.WGProfile_registration .bar a {\n color:#0B2259;\n font-size:10px;\n font-weight:bold;\n}\n.WGProfile_registration .barFive {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n text-align:center;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n width:4.3%;\n}\n.WGProfile_registration .barTen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:7.2%;\n}\n.WGProfile_registration .barFifteen {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:15%;\n}\n.WGProfile_registration .barFifty {\n background-color:#f2f5fa;\n border: solid #d8dee8 1px;\n color:#3e4f77;\n font-size:14px;\n font-weight:bold;\n margin-right:3px;\n min-height:25px;\n padding:2px;\n text-align:center;\n width:50%; \n}\n.WGbarContainer {\n display:block;\n margin:10px 0px 10px 0px; \n width:100%;\n\n}\n\n/* profile edit */\n\n.WGfields {\n padding: 2px;\n\n}\n.WGfields_left {\n padding:2px;\n vertical-align:top;\n width: 15%;\n}\n.WGfields_right {\n display:inline\n float:right;\n padding:2px;\n text-align:right;\n width:80%;\n vertical-align: top;\n}\n.WGProfile {\n display:table;\n margin: 0;\n padding: 0;\n width:100%;\n}\n.WGProfileFields {\n border:0;\n padding: 0;\n margin:0;\n width: 100%;\n \n}\n.WGProfileFields ol {\n display: inline;\n list-style-type: none;\n \n}\n.WGProfileFields ul {\n list-style-type: none;\n display: inline;\n}\n.WGProfileFields ul li {\n display: inline-block;\n *display: inline;\n zoom: 1;\n}\n/* profile view */\n.WGProfile_accepts {\n text-align:right;\n background-color:gray;\n padding:4px;\n width:100%;\n}\n.WGviewContainer {\n margin:0;\n padding:0;\n width:90%;\n}\n.WGinternational {\n background-color:red;\n color:white;\n display:inline;\n font-weight:bold;\n padding:4px;\n text-align:center;\n}\n\n.WGcategoryLabel {\n vertical-align:top; \n width:90%;\n}\n\n.WGprivateMessage {\n background-color:gray;\n padding:4px;\n text-align:right;\n}\n\n.WGprofileAlert {\n background-color:red;\n color:white;\n font-weight:bold;\n padding:4px;\n text-align:center;\n width:100%;\n}\nWGprofilePhoto {\n vertical-align:top;\n}\n\n/* profile errors */\n#WGprofileErrors {\n background-color: #ff0000;\n color: #ffffff;\n font-weight: bold;\n text-align: center;\n}\n.WGprofilefield_required_off {\n}\n.WGprofilefield_required {\n background-color: #ffd6bb;\n}\n.WGprofilefield_error {\n background-color: #FF9494;\n}\n.WGerrorMsg {\n font-weight:bold;\n color:red;\n text-align:center;\n}\n/* user */\n.WGuserInvite_subject {\n background-color: white;\n border: solid #BECEF8 1px;\n height: 25px;\n text-align: left;\n width: 500px;\n /*margin-left: 50px;*/\n /*margin-bottom: 20px;*/\n /*overflow:-moz-scrollbars-vertical;\n overflow-x:hidden;\n overflow-y:scroll;*/\n}\n/* view profile */\n\n.WGprofile_canEdit {\n text-align:center;\n background-color:red;\n padding:4px;\n color:white;\n font-weight:bold;\n}\n.WGprofile_fieldLabel {\n background: #DDE6FB;\n padding:2px;\n width:200px;\n}\n.WGprofile_fieldData {\n margin-left: 5px;\n}\n.WGprofile_fieldStatus {\n padding:4px;\n color:white;\n font-weight:bold\n}\n\n/**********************************************************************/\n/* TABS */\n/**********************************************************************/\n\n/* TABS - outer */\n\n.WGbottombutton {\n float:right;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n} \n.WGcontent {\n padding:10px;\n\n}\n.WGcleartab {\n clear: both; \n height:0;\n}\n.WGsubContent { /* color setting for border under outer tabs that surrounds inner tabs */\n border: solid #d8dee8 6px;\n}\n.WGtopbutton {\n float:right;\n clear:both;\n padding-right:2px;\n padding-top: 2px;\n position: relative;\n}\n\n\nul.WGtopTabs,\nul.WGtopTabs li {\n list-style-type:none;\n margin:10px 0px 0px 0px;\n padding:0px;\n position:relative;\n width:auto;\n Xposition:relative;\n zoom:1;\n}\nul.WGtopTabs li {\n display:block;\n float:left;\n margin-right: 3px;\n}\nul.WGtopTabs li b { \n background-color: #eef2fd;\n border-top:solid #d8dee8 1px;\n display:block;\n padding:4px 8px;\n position:relative;\n top:-1px; \n}\nul.WGtopTabs a { /* non-selected tabs color settings */\n display:block;\n color:#9ea0bb;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n background-color:#f2f5fa;\n border-left: solid #d8dee8 1px;\n border-right: solid #d8dee8 1px; \n}\n\nul.WGtopTabs a:hover,\nul.WGtopTabs a:hover b,\nul.WGtopTabs a.selected,\nul.WGtopTabs a.selected b { /* selected tab color settings */\n background-color:#d8dee8;\n color:#3e4f77;\n}\ntext-align: right;\n/* TABS - YUI */\n\n.WGcleardiv {\n clear: both;\n margin: 0px 0px 0px 0px;\n padding: 0px;\n}\n\n.WGviewProfile, .wgView {\n border: none;\n font: bold 10px Verdana;\n color: #3e4f77;\n text-decoration:none;\n}\n\n.WGview {\n position: absolute;\n right: 4px;\n top:4px;\n}\n\n.WGprofile_displayView {\n -x-system-font:none;\n border:medium none;\n color:#0B2258;\n display:inline;\n float:right;\n font-family:Verdana;\n font-size:10px;\n font-size-adjust:none;\n font-stretch:normal;\n font-style:normal;\n font-variant:normal;\n font-weight:bold;\n line-height:normal;\n padding-right:8px;\n padding-top:3px;\n text-decoration: none;\n}\n\n.WGprofile_displaySubContent { /* border around friends tab content */\n border: solid #d8dee8 6px;\n border-top: solid #d8dee8 18px;\n}\n\n\n /*\nCopyright (c) 2008, Yahoo! Inc. All rights reserved.\nCode licensed under the BSD License:\nhttp://developer.yahoo.net/yui/license.txt\nversion: 2.6.0\n*/\n\n/* yui tabs color settings below */\n\n/* .yui-navset defaults to .yui-navset-top */\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-nav { /* protect nested tabviews from other orientations */\n border:solid #eef2fd; /* color between tab list and content */\n border-width:0 0 5px;\n Xposition:relative;\n zoom:1;\n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav a,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-nav a {\n background:#ffffff; /* tab background */\n border:solid #ffffff;\n border-width:0 1px;\n color:#bfccdd;\n position:relative;\n text-decoration:none;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n font-weight: bold;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav a em,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em {\n border:solid #eef2fd;\n border-width:1px 0 0;\n cursor:hand;\n padding:0.25em .75em;\n left:0; right: 0; bottom: 0; /* protect from other orientations */\n top:-1px; /* for 1px rounded corners */\n position:relative;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a:focus, /* no focus effect for selected */\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a:hover { /* no hover effect for selected */\n background: #eef2fd; /* selected tab background */\n color: #3e4f77;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a em {\n border-color:#eef2fd; /* selected tab border color */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav a:hover,\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav a:focus {\n background: #eef2fd; /* hover tab background */\n color: #3e4f77;\n outline:0;\n font-size:12px;\n font-family: Arial, Helvetica, sans-serif;\n text-decoration:none;\n font-weight: bold;\n\n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-content {\n background: #eef2fd; /* content background color */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-content,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-content {\n border:5px solid #eef2fd; /* content border */\n padding:0.75em 1em; /* content padding */\n}\n\n/* left and right orientations */\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n Xposition:absolute; /* from tabview-core; have to reiterate for skin-sam due to pos:rel on skin-sam yui-nav */\n top:0; bottom:0; /* stretch to fill content height */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-right .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.3em; /* space between tabs */\n padding:0 0 0 1px; /* gecko: make room for overflow */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0; /* gecko: make room for overflow */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav .selected,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected { \n margin:0 -1px 0.16em 0;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav .selected { \n margin:0 0 0.16em -1px;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a em,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n padding:0.2em .75em;\n top:auto;\n left:-1px; /* for 1px rounded corners */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px; /* for 1px rounded corners */\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a,\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav a,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none; /* no left-right or bottom-top gradient */\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-content {\n border:1px solid #d8dee8; /* content border */\n}\n/* bottom orientation */\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav {\n border-width:5px 0 0; /* color between tab list and content */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav .selected { \n margin:-1px 0.3em 0 0; /* for overlap */\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav li { \n padding:0 0 1px 0; /* gecko: make room for overflow */\n vertical-align:top;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav li a { \n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav a em {\n border-width:0 0 1px;\n top:auto;\n bottom:-1px; /* for 1px rounded corners */\n}\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-content,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-content {\n border:1px solid #f2f5fa; /* content border */\n}\n.WGsubContent .yui-skin-sam {\n background-color: #d8dee8;\n padding: 10px 5 5 5px;\n display:block;\n}\n\n/* yui tab placement settings below */\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-nav li {\n margin:0 0.3em 0 0; /* space between tabs */\n padding:5px 0 0; /* gecko: make room for overflow */\n zoom:1;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected { \n margin:0 0.3em -1px 0; /* for overlap */\n}\n\n.WGsubContent .yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.WGsubContent .yui-navset .yui-navset-bottom .yui-nav li {\n margin:0 0.5em 0 0;\n}\n.WGsubContent .yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n margin:0 0 0.5em;\n}\n.WGsubContent .yui-navset .yui-content .yui-hidden {\n display:none;\n}\n.WGsubContent .yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.WGsubContent .yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n width:6em;\n}\n.WGsubContent .yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n width:auto;\n}\n.WGsubContent .yui-navset .yui-navset-left,.yui-navset-left {\n padding:0 0 0 6em;\n}\n.WGsubContent .yui-navset-right {\n padding:0 6em 0 0;\n}\n.WGsubContent .yui-navset-top,.yui-navset-bottom {\n padding:auto;\n}\n.WGsubContent .yui-nav,.yui-nav li {\n list-style:none;\n margin:0;\n padding:0; \n}\n.WGsubContent .yui-navset li em {\n font-style:normal;\n}\n.WGsubContent .yui-navset {\n position:relative;\n zoom:1;\n}\n.WGsubContent .yui-navset .yui-content {\n zoom:1;\n}\n.WGsubContent .yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,\n.WGsubContent .yui-navset .yui-navset-bottom .yui-nav li {\n display:inline-block;\n display:-moz-inline-stack;\n *display:inline;\n vertical-align:bottom;\n cursor:pointer;\n zoom:1;\n}\n.WGsubContent .yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li {\n display:block;\n}\n.WGsubContent .yui-navset .yui-nav a {\n position:relative;\n}\n.WGsubContent .yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,\n.WGsubContent .yui-navset-bottom .yui-nav li a {\n display:block;\n display:inline-block;\n vertical-align:bottom;\n zoom:1;\n}\n.WGsubContent .yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a {\n display:block;\n}\n.WGsubContent .yui-navset-bottom .yui-nav li a {\n vertical-align:text-top;\n}\n.WGsubContent .yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,\n.WGsubContent .yui-navset-bottom .yui-nav li a em {\n display:block;\n}\n.WGsubContent .yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,\n.WGsubContent .yui-navset-left .yui-nav,.yui-navset-right .yui-nav {\n position:absolute;\n z-index:1;\n}\n.WGsubContent .yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav {\n position:static;\n}\n.WGsubContent .yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav {\n left:0;\n right:auto;\n}\n.WGsubContent .yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav {\n left:auto;\n right:0;\n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-nav .selected a em {\n padding:0.35em 0.75em;\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 5px 0 0;\n bottom:0;\n top:0;\n Xposition:absolute;\n}\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav {\n border-width:0 0 0 5px;\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav li {\n margin:0 0 0.16em;\n padding:0 0 0 1px;\n}\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav li {\n padding:0 1px 0 0;\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a {\n border-width:1px 0;\n}\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 0 0 1px;\n left:-1px;\n padding:0.2em .75em;\n top:auto;\n}\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a em {\n border-width:0 1px 0 0;\n left:auto;\n right:-1px;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,\n.WGsubContent .yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav a:hover {\n background-image:none;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav .selected {\n margin:-1px 0.16em 0 0;\n}\n\n.WGsubContent .yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,\n.WGsubContent .yui-skin-sam .yui-navset-bottom .yui-nav li {\n padding:0 0 1px 0;\n vertical-align:top;\n}\n',0,'text/css',1270612323,3600,'body{margin:0;padding:0;font:11px Verdana;}a{cursor:pointer;}button{cursor:pointer;}img{border:none;}.WGbutton{float:right;padding-right:10px;}.centered{text-align:center;}.WGaccount_message{background-color:white;border:solid #BECEF8 1px;height:300px;margin-bottom:10px;margin-left:60px;margin-top:20px;overflow:-moz-scrollbars-vertical;overflow-x:hidden;overflow-y:scroll;padding:10px;text-align:left;vertical-align:top;width:90%;}.WGprofileMember{font-size:9px;margin-right:20px;text-align:right;}.WGmember{color:#3e4f77;font:9px Verdana,Arial,Helvetica,sans-serif;text-align:center;}.WGphotostyle{border:solid #3e4f77 2px;margin-bottom:5px;\n margin-top:5px}#rightalign{float:right;}.WGbordered{border-bottom:dashed #BECEF8 2px;padding-bottom:10px;}.WGfriendpic{border:solid #BECEF8 1px;}.WGinvitemsg{width:600px;height:150px;}ol.WGProfile_interests{color:#0B2259;font-size:15px;font-weight:bold;list-style-type:none;margin:0px;padding:0px;padding:5px 5px;}ol.WGProfile_interests li{margin-bottom:15px;}ol.WGProfile_interests span{font-size:12px;font-weight:normal;color:black;}.WGpBio{border-bottom:solid #DDE6FB 1px;margin:0px;margin-bottom:5px;padding-bottom:5px;}.WGpBio div{background-color:#DDE6FB;padding:2px 5px;margin-bottom:2px;}.WGprogram{font-size:9px;}.WGContribCount{font-size:12px;text-align:left;\n padding:3px}.WGContribTitle{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#0B2259;font-size:12px;font-weight:bold;min-height:25px;padding:3px;text-align:center;text-decoration:underline;}.WGContribTitleLeft{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#0B2259;font-size:12px;font-weight:bold;min-height:25px;padding:3px;text-align:center;text-decoration:underline;}.WGContribEntry{text-align:center;padding:3px;}.WGContribEntryLeft{text-align:left;padding:3px;}.WGeditBox{border:solid #8DABF1 2px;display:block;font-family:verdana;font-size:9px;font-weight:bold;left:100px;-moz-box-sizing:border-box;padding:5px;position:absolute;top:100px;width:590px;z-index:100;}.WGeditBox input,.WGeditBox select{font-size:9px;}.WGfriends_name{font-weight:bold;width:90%;}.WGfriends_photo{font-weight:bold;width:10%;}.WGfriends_photo img{height:50px;width:50px;}.WGfriends_private{float:right;padding-bottom:5px;width:50%;}.WGfriends_ninety{vertical-align:top;width:90%;}.WGfriends_seventy{vertical-align:top;width:70%;}.WGfriends_ten{width:10%;}.WGfriends_ten img{height:50px;width:50px;}.WGfriends_twenty{width:20%;}.WGaccepts{padding-bottom:5px;}.WGProfile_msgcontainer{padding:2px;}.WGinbox_count{font-size:12px;font-weight:bold;padding:3px;text-align:left;}.WGinbox_errors{font-weight:bold;color:red;text-align:center;}.WG_inbox_InviteLabel{width:50px;text-align:right;}.WG_inbox_InviteLabelView{font-weight:bold;width:120px;}.WGmsgcontainer{padding:6px;display:block;margin-bottom:6px;}.WGdatacells{border-bottom:dashed #BECEF8 1px;}.WGinbox_contactsTbl{background-color:#EEF2FD;font-family:arial;font-size:9pt;width:100%;}#contacts{height:275px;overflow:auto;}.WGbuttons_left{float:left;}.WGbuttons_right{float:right;}.WGinbox_from{color:black;font-weight:normal;text-decoration:none;}.WGinbox_subject{width:530px;}.WGinbox_messageTo{background-color:white;border:solid #BECEF8 1px;height:50px;overflow:-moz-scrollbars-vertical;overflow-x:hidden;overflow-y:scroll;width:530px;}.WGinbox_buttons{display:inline;float:left;font-size:10px;text-align:left;width:70%;}.WGinbox_pagination{display:inline;text-align:right;width:20%;}.WGinbox_messagerpp{font-size:10px;display:inline;text-align:right;width:20%;}.WGmessage{display:inline;float:left;font-size:10px;text-align:left;width:70%;}.WGmessagerpp{font-size:10px;display:inline;text-align:right;float:right;}.WG-previous-next{float:right;}.WGevenThread{background-color:#e1e8fb;border-bottom:1px solid #bfcef9;padding:8px;text-align:center;}.WGoddThread{background-color:#eef2fd;border-bottom:1px solid #bfcef9;padding:8px;text-align:center;}.WGProfile_pagination{font-size:10px;text-align:right;width:20%;}.WGProfile_messagerpp{font-size:10px;display:inline;text-align:right;width:20%;}.WGProfile_paginationLeft{font-size:10px;text-align:left;width:20%;}.WGProfile_paginationCenter{font-size:10px;text-align:center;width:20%;}.WGProfile_pagination a{background-color:#f2f5fa;border:solid #bfc8dc 1px;font-size:10px;font-weight:bold;padding:1px 5px;text-decoration:none;}.WGProfile_pagination a:hover{background-color:#d8dee8;color:white;}.WGProfile_pagination .prevNext{background-color:transparent;border:none;color:black;}.WGProfile_pagination .prevNext:hover{background-color:transparent;border:none;color:black;}.WGProfile_pagination .active{background-color:#d8dee8;border:solid #bfc8dc 1px;color:white;font-size:10px;font-weight:bold;padding:1px 5px;text-decoration:none;}.WGProfile_pagination img{vertical-align:middle;margin-top:2px;border:none;}.WGProfile_registration{background:none;border:none;font-size:9pt;font-family:arial;margin:0;padding:0;width:100%;}.WGProfile_registration .header{background-color:#818997;color:#3e4f77;font-size:10px;font-weight:bold;text-align:left;}.WGProfile_registration .header a{color:white;text-decoration:none;}.WGProfile_registration .help a{font-weight:bold;text-decoration:none;}.WGProfile_registration .inputText{font-size:10px;margin-right:1px;}.WGProfile_registration .label{font-size:9pt;font-weight:bold;text-align:right;white-space:nowrap;width:1%;}.WGProfile_registration .labelLeft{font-size:9pt;font-weight:bold;white-space:nowrap;width:1%;text-align:left;vertical-align:top;}.WGProfile_registration .smallLabel{font-size:8px;text-align:center;}.WGProfile_registration .smallText{font-size:9px;}.WGinboxTbl{display:block;margin:4px;padding:2px;}.WGProfile_registration .bar,.WGProfile_registration .barRight{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#3e4f77;font-size:14px;font-weight:bold;margin:10px 0px 10px 0px;min-height:25px;padding:4px 4px 0px 4px;vertical-align:middle;}.WGProfile_registration .bar{text-align:center;}.WGProfile_registration .barRight{text-align:right;}.WGProfile_registration .bar a{color:#0B2259;font-size:10px;font-weight:bold;}.WGProfile_registration .barFive{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#3e4f77;font-size:14px;font-weight:bold;text-align:center;margin-right:3px;min-height:25px;padding:2px;width:4.3%;}.WGProfile_registration .barTen{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#3e4f77;font-size:14px;font-weight:bold;min-height:25px;padding:2px;text-align:center;width:7.2%;}.WGProfile_registration .barFifteen{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#3e4f77;font-size:14px;font-weight:bold;margin-right:3px;min-height:25px;padding:2px;text-align:center;width:15%;}.WGProfile_registration .barFifty{background-color:#f2f5fa;border:solid #d8dee8 1px;color:#3e4f77;font-size:14px;font-weight:bold;margin-right:3px;min-height:25px;padding:2px;text-align:center;width:50%;}.WGbarContainer{display:block;margin:10px 0px 10px 0px;width:100%;}.WGfields{padding:2px;}.WGfields_left{padding:2px;vertical-align:top;width:15%;}.WGfields_right{display:inline float:right;padding:2px;text-align:right;width:80%;vertical-align:top;}.WGProfile{display:table;margin:0;padding:0;width:100%;}.WGProfileFields{border:0;padding:0;margin:0;width:100%;}.WGProfileFields ol{display:inline;list-style-type:none;}.WGProfileFields ul{list-style-type:none;display:inline;}.WGProfileFields ul li{display:inline-block;*display:inline;zoom:1;}.WGProfile_accepts{text-align:right;background-color:gray;padding:4px;width:100%;}.WGviewContainer{margin:0;padding:0;width:90%;}.WGinternational{background-color:red;color:white;display:inline;font-weight:bold;padding:4px;text-align:center;}.WGcategoryLabel{vertical-align:top;width:90%;}.WGprivateMessage{background-color:gray;padding:4px;text-align:right;}.WGprofileAlert{background-color:red;color:white;font-weight:bold;padding:4px;text-align:center;width:100%;}WGprofilePhoto{vertical-align:top;}#WGprofileErrors{background-color:#ff0000;color:#ffffff;font-weight:bold;text-align:center;}.WGprofilefield_required_off{}.WGprofilefield_required{background-color:#ffd6bb;}.WGprofilefield_error{background-color:#FF9494;}.WGerrorMsg{font-weight:bold;color:red;text-align:center;}.WGuserInvite_subject{background-color:white;border:solid #BECEF8 1px;height:25px;text-align:left;width:500px;}.WGprofile_canEdit{text-align:center;background-color:red;padding:4px;color:white;font-weight:bold;}.WGprofile_fieldLabel{background:#DDE6FB;padding:2px;width:200px;}.WGprofile_fieldData{margin-left:5px;}.WGprofile_fieldStatus{padding:4px;color:white;\n font-weight:bold}.WGbottombutton{float:right;padding-right:2px;padding-top:2px;position:relative;}.WGcontent{padding:10px;}.WGcleartab{clear:both;height:0;}.WGsubContent{border:solid #d8dee8 6px;}.WGtopbutton{float:right;clear:both;padding-right:2px;padding-top:2px;position:relative;}ul.WGtopTabs,ul.WGtopTabs li{list-style-type:none;margin:10px 0px 0px 0px;padding:0px;position:relative;width:auto;Xposition:relative;zoom:1;}ul.WGtopTabs li{display:block;float:left;margin-right:3px;}ul.WGtopTabs li b{background-color:#eef2fd;border-top:solid #d8dee8 1px;display:block;padding:4px 8px;position:relative;top:-1px;}ul.WGtopTabs a{display:block;color:#9ea0bb;font-size:12px;font-family:Arial,Helvetica,sans-serif;text-decoration:none;background-color:#f2f5fa;border-left:solid #d8dee8 1px;border-right:solid #d8dee8 1px;}ul.WGtopTabs a:hover,ul.WGtopTabs a:hover b,ul.WGtopTabs a.selected,ul.WGtopTabs a.selected b{background-color:#d8dee8;color:#3e4f77;}.WGcleardiv{clear:both;margin:0px 0px 0px 0px;padding:0px;}.WGview{border:none;font:bold 10px Verdana;color:#3e4f77;text-decoration:none;position:absolute;right:4px;top:4px;}.WGprofile_displayView{-x-system-font:none;border:medium none;color:#0B2258;display:inline;float:right;font-family:Verdana;font-size:10px;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:bold;line-height:normal;padding-right:8px;padding-top:3px;text-decoration:none;}.WGprofile_displaySubContent{border:solid #d8dee8 6px;border-top:solid #d8dee8 18px;}.yui-skin-sam .yui-navset .yui-nav,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav{border:solid #eef2fd;border-width:0 0 5px;Xposition:relative;zoom:1;}.yui-skin-sam .yui-navset .yui-nav a,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a{background:#ffffff;border:solid #ffffff;border-width:0 1px;color:#bfccdd;position:relative;text-decoration:none;font-size:12px;font-family:Arial,Helvetica,sans-serif;font-weight:bold;}.yui-skin-sam .yui-navset .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav a em{border:solid #eef2fd;border-width:1px 0 0;cursor:hand;padding:0.25em .75em;left:0;right:0;bottom:0;top:-1px;position:relative;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a:focus,.yui-skin-sam .yui-navset .yui-nav .selected a:hover{background:#eef2fd;color:#3e4f77;font-size:12px;font-family:Arial,Helvetica,sans-serif;text-decoration:none;font-weight:bold;}.yui-skin-sam .yui-navset .yui-nav .selected a,.yui-skin-sam .yui-navset .yui-nav .selected a em{border-color:#eef2fd;}.yui-skin-sam .yui-navset .yui-nav a:hover,.yui-skin-sam .yui-navset .yui-nav a:focus{background:#eef2fd;color:#3e4f77;outline:0;font-size:12px;font-family:Arial,Helvetica,sans-serif;text-decoration:none;font-weight:bold;}.yui-skin-sam .yui-navset .yui-content{background:#eef2fd;}.yui-skin-sam .yui-navset .yui-content,.yui-skin-sam .yui-navset .yui-navset-top .yui-content{border:5px solid #eef2fd;padding:0.75em 1em;}.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 5px 0 0;Xposition:absolute;top:0;bottom:0;}.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 0 0 5px;}.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset-right .yui-nav li{margin:0 0 0.3em;padding:0 0 0 1px;}.yui-skin-sam .yui-navset-right .yui-nav li{padding:0 1px 0 0;}.yui-skin-sam .yui-navset-left .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav .selected{margin:0 -1px 0.16em 0;}.yui-skin-sam .yui-navset-right .yui-nav .selected{margin:0 0 0.16em -1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a{border-width:1px 0;}.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 0 0 1px;padding:0.2em .75em;top:auto;left:-1px;}.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 1px 0 0;left:auto;right:-1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,.yui-skin-sam .yui-navset-bottom .yui-nav a:hover{background-image:none;}.yui-skin-sam .yui-navset-left .yui-content{border:1px solid #d8dee8;}.yui-skin-sam .yui-navset-bottom .yui-nav,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav{border-width:5px 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,.yui-skin-sam .yui-navset-bottom .yui-nav .selected{margin:-1px 0.3em 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,.yui-skin-sam .yui-navset-bottom .yui-nav li{padding:0 0 1px 0;vertical-align:top;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li a,.yui-skin-sam .yui-navset-bottom .yui-nav li a{}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav a em,.yui-skin-sam .yui-navset-bottom .yui-nav a em{border-width:0 0 1px;top:auto;bottom:-1px;}.yui-skin-sam .yui-navset-bottom .yui-content,.yui-skin-sam .yui-navset .yui-navset-bottom .yui-content{border:1px solid #f2f5fa;}.yui-skin-sam{background-color:#d8dee8;padding:10px 5 5 5px;display:block;}.yui-skin-sam .yui-navset .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav li{margin:0 0.3em 0 0;padding:5px 0 0;zoom:1;}.yui-skin-sam .yui-navset .yui-nav .selected,.yui-skin-sam .yui-navset .yui-navset-top .yui-nav .selected{margin:0 0.3em -1px 0;}.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{margin:0 0.5em 0 0;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{margin:0 0 0.5em;}.yui-navset .yui-content .yui-hidden{display:none;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{width:6em;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{width:auto;}.yui-navset .yui-navset-left,.yui-navset-left{padding:0 0 0 6em;}.yui-navset-right{padding:0 6em 0 0;}.yui-navset-top,.yui-navset-bottom{padding:auto;}.yui-nav,.yui-nav li{list-style:none;margin:0;padding:0;}.yui-navset li em{font-style:normal;}.yui-navset{position:relative;zoom:1;}.yui-navset .yui-content{zoom:1;}.yui-navset .yui-nav li,.yui-navset .yui-navset-top .yui-nav li,.yui-navset .yui-navset-bottom .yui-nav li{display:inline-block;display:-moz-inline-stack;*display:inline;vertical-align:bottom;cursor:pointer;zoom:1;}.yui-navset-left .yui-nav li,.yui-navset-right .yui-nav li{display:block;}.yui-navset .yui-nav a{position:relative;}.yui-navset .yui-nav li a,.yui-navset-top .yui-nav li a,.yui-navset-bottom .yui-nav li a{display:block;display:inline-block;vertical-align:bottom;zoom:1;}.yui-navset-left .yui-nav li a,.yui-navset-right .yui-nav li a{display:block;}.yui-navset-bottom .yui-nav li a{vertical-align:text-top;}.yui-navset .yui-nav li a em,.yui-navset-top .yui-nav li a em,.yui-navset-bottom .yui-nav li a em{display:block;}.yui-navset .yui-navset-left .yui-nav,.yui-navset .yui-navset-right .yui-nav,.yui-navset-left .yui-nav,.yui-navset-right .yui-nav{position:absolute;z-index:1;}.yui-navset-top .yui-nav,.yui-navset-bottom .yui-nav{position:static;}.yui-navset .yui-navset-left .yui-nav,.yui-navset-left .yui-nav{left:0;right:auto;}.yui-navset .yui-navset-right .yui-nav,.yui-navset-right .yui-nav{left:auto;right:0;}.yui-skin-sam .yui-navset .yui-nav .selected a em{padding:0.35em 0.75em;}.yui-skin-sam .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav,.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 5px 0 0;bottom:0;top:0;Xposition:absolute;}.yui-skin-sam .yui-navset .yui-navset-right .yui-nav,.yui-skin-sam .yui-navset-right .yui-nav{border-width:0 0 0 5px;}.yui-skin-sam .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav li,.yui-skin-sam .yui-navset-right .yui-nav li{margin:0 0 0.16em;padding:0 0 0 1px;}.yui-skin-sam .yui-navset-right .yui-nav li{padding:0 1px 0 0;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav a{border-width:1px 0;}.yui-skin-sam .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset .yui-navset-left .yui-nav a em,.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 0 0 1px;left:-1px;padding:0.2em .75em;top:auto;}.yui-skin-sam .yui-navset-right .yui-nav a em{border-width:0 1px 0 0;left:auto;right:-1px;}.yui-skin-sam .yui-navset-left .yui-nav a,.yui-skin-sam .yui-navset-left .yui-nav .selected a,.yui-skin-sam .yui-navset-left .yui-nav a:hover,.yui-skin-sam .yui-navset-right .yui-nav a,.yui-skin-sam .yui-navset-right .yui-nav .selected a,.yui-skin-sam .yui-navset-right .yui-nav a:hover,.yui-skin-sam .yui-navset-bottom .yui-nav a,.yui-skin-sam .yui-navset-bottom .yui-nav .selected a,.yui-skin-sam .yui-navset-bottom .yui-nav a:hover{background-image:none;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav .selected,.yui-skin-sam .yui-navset-bottom .yui-nav .selected{margin:-1px 0.16em 0 0;}.yui-skin-sam .yui-navset .yui-navset-bottom .yui-nav li,.yui-skin-sam .yui-navset-bottom .yui-nav li{padding:0 0 1px 0;vertical-align:top;}',0),('qxd0WpRGqDPWP8WBicYvEA','// Create our own namespace. For the moment we leave this here since\r\n// there are no other JS modules for the gallery.\r\nvar Gallery = {};\r\n\r\n// Configure the drag\'n\'drop sorting app\r\nGallery.DDSorting = {\r\n parentId : \'photos\', // Element Id of the container element\r\n draggableNodeTags : \'li\', // Type of tag used for draggable items\r\n idPrefix : \'photoId\', // Prefix used in Ids of draggable items\r\n};\r\n\r\n// Create some shortcuts\r\nvar Dom = YAHOO.util.Dom;\r\nvar Event = YAHOO.util.Event;\r\nvar DDM = YAHOO.util.DragDropMgr;\r\n\r\n//////////////////////////////////////////////////////////////////////////////\r\n// Drag\'n\'drop sorting app for the gallery\r\n//////////////////////////////////////////////////////////////////////////////\r\n\r\nGallery.DDSorting.init = function() {\r\n // Make list element containing photos a drop target\r\n new YAHOO.util.DDTarget(this.parentId);\r\n\r\n // Get all items within list of photos\r\n var items = document.getElementById(this.parentId).getElementsByTagName(this.draggableNodeTags);\r\n // Initialize DDList object for all list items\r\n for (i=0; i < items.length; i=i+1) {\r\n new Gallery.DDList(this, items[i].id, \'gallery\');\r\n }\r\n};\r\n\r\n//////////////////////////////////////////////////////////////////////////////\r\n// Custom drag and drop implementation\r\n//////////////////////////////////////////////////////////////////////////////\r\n\r\nGallery.DDList = function(app, id, sGroup, config) {\r\n\r\n Gallery.DDList.superclass.constructor.call(this, id, sGroup, config);\r\n\r\n var el = this.getDragEl();\r\n Dom.setStyle(el, \"opacity\", 0.67); // The proxy is slightly transparent\r\n\r\n // Assign reference to application object\r\n this.app = app;\r\n\r\n // Init variables for direction and replacement tracking\r\n this.goingUp = false;\r\n this.goingLeft = false;\r\n this.lastY = 0;\r\n this.lastX = 0;\r\n this.before = false; \r\n this.lastReplaced = null;\r\n};\r\n\r\n \r\nYAHOO.extend(Gallery.DDList, YAHOO.util.DDProxy, {\r\n\r\n startDrag: function(x, y) {\r\n\r\n // Make the proxy look like the source element\r\n var dragEl = this.getDragEl();\r\n var clickEl = this.getEl();\r\n Dom.setStyle(clickEl, \"visibility\", \"hidden\");\r\n\r\n // Copy source element to proxy and set class\r\n dragEl.className = clickEl.className;\r\n dragEl.innerHTML = clickEl.innerHTML;\r\n },\r\n\r\n endDrag: function(e) {\r\n\r\n var srcEl = this.getEl();\r\n var proxy = this.getDragEl();\r\n\r\n // Show the proxy element and animate it to the src element\'s location\r\n Dom.setStyle(proxy, \"visibility\", \"\");\r\n var a = new YAHOO.util.Motion(\r\n proxy, {\r\n points: {\r\n to: Dom.getXY(srcEl)\r\n }\r\n },\r\n 0.2,\r\n YAHOO.util.Easing.easeOut\r\n )\r\n var proxyid = proxy.id;\r\n var thisid = this.id;\r\n\r\n // Hide the proxy and show the source element when finished with the animation\r\n a.onComplete.subscribe(function() {\r\n Dom.setStyle(proxyid, \"visibility\", \"hidden\");\r\n Dom.setStyle(thisid, \"visibility\", \"\");\r\n });\r\n a.animate();\r\n\r\n // Do nothing more if no element has been replaced\r\n if (this.lastReplaced == null) return;\r\n\r\n // Get assed ids of the target to move and the last photo replaced\r\n var target = srcEl.id.replace(this.app.idPrefix, \'\');\r\n var dest = this.lastReplaced.id.replace(this.app.idPrefix, \'\');\r\n \r\n // Prepare call to ajax service of the gallery asset. We need\r\n // to set the action argument to \'moveFile\', provide the asset\r\n // id of the target photo in \'target\' and the asset id of the\r\n // photo replaced in \'before\' or \'after\' depending on order.\r\n var args = {};\r\n args.action = \"moveFile\";\r\n args.target = target;\r\n if (this.before) {\r\n args.before = dest;\r\n } else {\r\n args.after = dest;\r\n }\r\n\r\n // Callback function for asynchronous request. This is\r\n // required for error handling.\r\n var callback = {\r\n success: function (o) {\r\n // Parse answer from ajax service\r\n result = YAHOO.lang.JSON.parse(o.responseText);\r\n // Check for errors\r\n if (result.err) {\r\n // Display error message\r\n alert(\'Failed to move photo: \' + result.errMessage);\r\n // Request a reload of the page so we are back in sync\r\n location.reload();\r\n }\r\n },\r\n \r\n failure: function (o) {\r\n // Display generic error message\r\n alert(\'AJAX service for moving photos is currently not available. Failed to move photo!\');\r\n // Request a reload of the page so we are back in sync\r\n location.reload();\r\n }\r\n };\r\n\r\n // Convert args object to JSON string\r\n var postData = \"func=ajax;args=\" + encodeURI(YAHOO.lang.JSON.stringify(args));\r\n // Make asynchronous call to gallery asset\r\n YAHOO.util.Connect.asyncRequest(\"POST\", this.app.url, callback, postData);\r\n },\r\n\r\n onDrag: function(e) {\r\n\r\n // Keep track of the direction of the drag for use during onDragOver\r\n var y = Event.getPageY(e);\r\n var x = Event.getPageX(e);\r\n\r\n // Check in vertical direction\r\n if (y < this.lastY) {\r\n this.goingUp = true;\r\n } else if (y > this.lastY) {\r\n this.goingUp = false;\r\n }\r\n\r\n // Check in horizontal direction\r\n if (x < this.lastX) {\r\n this.goingLeft = true;\r\n } else if (x > this.lastX) {\r\n this.goingLeft = false;\r\n }\r\n\r\n this.lastY = y;\r\n this.lastX = x;\r\n },\r\n\r\n onDragOver: function(e, id) {\r\n\r\n var srcEl = this.getEl();\r\n var destEl = Dom.get(id);\r\n\r\n // We are only concerned with list items, we ignore the dragover\r\n // notifications for the list.\r\n if (destEl.nodeName.toLowerCase() == this.app.draggableNodeTags) {\r\n var orig_p = srcEl.parentNode;\r\n var p = destEl.parentNode;\r\n\r\n if (this.goingUp || this.goingLeft) {\r\n // Insert above/before\r\n p.insertBefore(srcEl, destEl);\r\n // Keep track of where we moved\r\n this.lastReplaced = destEl;\r\n this.before = true;\r\n } else {\r\n // Insert below/after\r\n p.insertBefore(srcEl, destEl.nextSibling);\r\n // Keep track of where we moved\r\n this.lastReplaced = destEl;\r\n this.before = false;\r\n }\r\n\r\n DDM.refreshCache();\r\n }\r\n }\r\n});\r\n\r\n// Start application after DOM is ready\r\nEvent.onDOMReady(Gallery.DDSorting.init, Gallery.DDSorting, true);\r\n\r\n',0,'text/javascript',1271820952,3600,'// Create our own namespace. For the moment we leave this here since\n// there are no other JS modules for the gallery.\nvar Gallery = {};\n// Configure the drag\'n\'drop sorting app\nGallery.DDSorting = {\nparentId : \'photos\', // Element Id of the container element\ndraggableNodeTags : \'li\', // Type of tag used for draggable items\nidPrefix : \'photoId\', // Prefix used in Ids of draggable items\n};\n// Create some shortcuts\nvar Dom = YAHOO.util.Dom;\nvar Event = YAHOO.util.Event;\nvar DDM = YAHOO.util.DragDropMgr;\n//////////////////////////////////////////////////////////////////////////////\n// Drag\'n\'drop sorting app for the gallery\n//////////////////////////////////////////////////////////////////////////////\nGallery.DDSorting.init = function() {\n// Make list element containing photos a drop target\nnew YAHOO.util.DDTarget(this.parentId);\n// Get all items within list of photos\nvar items = document.getElementById(this.parentId).getElementsByTagName(this.draggableNodeTags);\n// Initialize DDList object for all list items\nfor (i=0; i this.lastY) {\nthis.goingUp = false;\n}\n// Check in horizontal direction\nif (x this.lastX) {\nthis.goingLeft = false;\n}\nthis.lastY = y;\nthis.lastX = x;\n},\nonDragOver: function(e, id) {\nvar srcEl = this.getEl();\nvar destEl = Dom.get(id);\n// We are only concerned with list items, we ignore the dragover\n// notifications for the list.\nif (destEl.nodeName.toLowerCase() == this.app.draggableNodeTags) {\nvar orig_p = srcEl.parentNode;\nvar p = destEl.parentNode;\nif (this.goingUp || this.goingLeft) {\n// Insert above/before\np.insertBefore(srcEl, destEl);\n// Keep track of where we moved\nthis.lastReplaced = destEl;\nthis.before = true;\n} else {\n// Insert below/after\np.insertBefore(srcEl, destEl.nextSibling);\n// Keep track of where we moved\nthis.lastReplaced = destEl;\nthis.before = false;\n}\nDDM.refreshCache();\n}\n}\n});\n// Start application after DOM is ready\nEvent.onDOMReady(Gallery.DDSorting.init, Gallery.DDSorting, true);',0),('JOuCU4x5BJfVHfkfMkVQdQ','/*\r\n Project: CrystalX\r\n URL: http://www.nuvio.cz\r\n \r\n Output device: screen, projection\r\n \r\n Author: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)\r\n Last revision: 2006-12-05, 12:00 GMT+1\r\n\r\n Structure:\r\n display | position | float | overflow | width | height | border | margin | padding | background | align | font\r\n*/\r\n\r\n* {min-height:1px;}\r\nbody {border:0; margin:0; padding:0; background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif);\') 0 0 repeat-x; font:70%/160% \"verdana\",sans-serif; color:#192666; text-align:center;}\r\n\r\na {color:#192666;}\r\na:hover {color:#4F6AD7;}\r\n\r\np {border:0; margin:15px 0; padding:0;}\r\n\r\ndiv {display:block; border:0; margin:0; padding:0; overflow:hidden;}\r\n\r\nh1, h2, h3, h4, h5 {border:0; margin:15px 0 10px 0; padding:0; font-weight:bold;}\r\nh1 {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\r\nh2 {font-size:180%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\r\nh3 {font-size:120%; line-height:100%; font-weight:bold;}\r\nh4 {font-size:120%;}\r\nh5 {font-size:100%;}\r\n\r\ntable {display:table; border-collapse:collapse; margin:15px 1px; padding:0; border:1px solid #B7CAF6; font-size:100%;}\r\ntr {display:table-row;}\r\nth, td {display: table-cell; border:1px solid #B7CAF6; margin:0; padding:5px; vertical-align:top; text-align:left;}\r\nth {background:#E7ECFD; text-align:center; color:#192666; font-weight:bold;}\r\n\r\nul, ol {display:block; border:0; margin:15px 0 15px 40px; padding:0;}\r\nol {list-style-type:decimal;}\r\nli {display:list-item; border:0; margin:0; padding:0; min-height:1px;}\r\nul ul, ul ol, ol ol, ol ul {margin: 0 0 0 20px;}\r\n\r\ndl {border-bottom:1px solid #E0E8FA; margin:0; padding:5px 10px; background:#CEDBF9;}\r\ndt {border:0; margin:0; padding:0; font-weight:bold;}\r\ndd {border:0; margin:0 0 0 30px; padding:0;}\r\n\r\nform {border:0; margin:0; padding:0;}\r\nfieldset {border:1px solid #ccc; margin:15px 0; padding:10px;}\r\nlegend {margin-left:10px; font-size:100%; font-weight:bold; color:#008;}\r\n\r\nhr {height:1px; width:724px; margin: 5px 23px; padding: 0; background:#CCC; border:0 solid #CCC; color:#CCC;}\r\n\r\na, img, span {border:0; margin:0; padding:0; overflow:hidden;}\r\nabbr, acronym {border-bottom:1px dotted #CCC; cursor:help;}\r\n\r\ndel, .through {text-decoration:line-through;}\r\nstrong, .strong {font-weight:bold;}\r\ncite, em, q, var {font-style:italic;}\r\ncode, kbd, samp {font-family:monospace; font-size:110%;}\r\n\r\n.box {min-height:1px;}\r\n.box:after {content:\".\"; display:block; line-height:0px; font-size:0px; visibility:hidden; clear:both;}\r\n\r\n.nom {margin:0;}\r\n.noscreen {display:none;}\r\n\r\n/* -----------------...........--------------------------------------------------------------------------------------- */\r\n\r\n#main {width:770px; margin:0 auto; text-align:left;}\r\n\r\n/* Top (empty space for the background img to fit) */\r\n#main #topspace {position:relative; top:0; left:0; height:50px; margin:0; padding:0;}\r\n\r\n/* Header */\r\n#header {position:relative; width:770px; height:100px; margin:0; padding:0; background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg);\') 0 0 no-repeat; color:#FFFFFF;}\r\n\r\n /* Header - logo */\r\n #header #logo {position:absolute; top:35px; left:35px; margin:0;}\r\n #header #logo a {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:bold; color:#FFF;}\r\n #header #logo a:hover {color:#B5C4E3; text-decoration:none;}\r\n\r\n /* Header - Search */\r\n #header #search form {position:absolute; top:35px; right:20px; height:30px;}\r\n #header #search .formContents {position:absolute; top:0; right:0px; width:200px; height:28px; margin:0; padding:0; border:0; background:url(\'^FileUrl(/crystalx/img/search.png);\') 0 0 no-repeat; font:bold 90%/100% \"verdana\",sans-serif; color:#192666;}\r\n #header #search input#keywords_formId {width:140px; margin:5px 8px; padding:3px 0; border:0; background:#FFF; font:bold 100%/100% \"verdana\",sans-serif; color:#192666;}\r\n #header #search #search_form {position:absolute; top:0; right:0px; width:41px; height:28px; cursor:point; margin:0; padding:0;}\r\n\r\n /* Search Result*/\r\n #header #search #search_result {position:absolute; top:220px;}\r\n #header #search #home_link, #header #search #no_result, #header #search #pagination {visibility:hidden;}\r\n #page #page-in #pagination {color:#6182D1; font-weight:bold; padding:5px; text-align:right;}\r\n #page #page-in #pagination a {color:#6182D1;}\r\n #page #page-in #pagination a:hover {color:#192666;}\r\n #page #page-in #home_link {padding:5px 5px 15px; color:#6182D1; font-weight:bold; text-align:right;}\r\n #page #page-in #home_link a {color:#6182D1;}\r\n #page #page-in #home_link a:hover {color:#192666;}\r\n #search_result {margin:10px 0;}\r\n dl#odd {background:#A0B9F3;}\r\n #page #page-in #no_result {margin:0 10px; color:#192666; font-weight:bold;}\r\n\r\n/* Main menu (tabs) */\r\n#menu {background:#192666; margin:0 5px; padding:10px 10px 0; height:32px; overflow:hidden;}\r\n#menu a {cursor:pointer; font-size:11px;}\r\n\r\n/* Page (dynamic) */\r\n#page {width:770px; background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y;}\r\n#page-in {min-height:400px; background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg);\') 0 0 no-repeat; padding:10px 0 0;}\r\n\r\n/* Strip */\r\n#strip {position:relative; clear:both; padding:3px 20px 10px 20px; color:#6182D1;}\r\n\r\n /* Strip - Location */\r\n #strip #location {float: left; background:url(\'^FileUrl(/crystalx/img/ico_comments.gif);\') 0 50% no-repeat; padding: 0 15px;}\r\n #strip #location a {color:#6182D1;}\r\n #strip #location a:hover {color:#192666;}\r\n #strip #location a#currentpage {font-weight:bold; text-decoration:none;}\r\n\r\n /* Strip - DateTime */\r\n #strip #datetime {float:right; background:url(\'^FileUrl(/crystalx/img/ico_date.gif);\') 0 50% no-repeat; padding: 0 10px 0 15px;}\r\n\r\n/* Content Container */\r\n#contentContainer {margin:0; padding:0 20px; width:730px; overflow:hidden;}\r\n\r\n /* Contents */\r\n #contentContainer .content {clear:both; margin:10px 10px 0 0; padding:20px; max-width:710px; background:url(\'^FileUrl(/crystalx/img/content_all_bg.png);\') 0 0 no-repeat; overflow:hidden;}\r\n #contentContainer .content h2 {margin:0 -10px; padding:10px 25px; color:#192666; background:url(\'^FileUrl(/crystalx/img/ico_list.gif);\') 0 50% no-repeat;}\r\n #contentContainer .content p {text-align:justify;}\r\n \r\n/* Utility */\r\n#utility {background: #FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y; padding: 10px 0 15px;}\r\n\r\n /* Utility - Toggles */\r\n #toggles {font-size:10px; font-weight:bold; text-align:left; margin-left:42px;}\r\n #toggles a {margin:0 10px; padding:2px 0; text-decoration:none; border-bottom:1px dashed; color:#6182D1;}\r\n #toggles a:hover {border-bottom:1px solid; color:#4F6AD7;}\r\n #toggles span.userAcc {background:url(\'^FileUrl(/crystalx/img/ico_user.gif);\') 0 50% no-repeat; margin: 0 0 0 8px;}\r\n\r\n/* Footer */\r\n#footer {position:relative; clear:both; width:770px; height:80px; margin-bottom:30px; background:url(\'^FileUrl(/crystalx/img/footer.jpg);\') 0 0 no-repeat; color:#6685CC;}\r\n#footer a {color:#6685CC;}\r\n#footer a:hover {color:#192666;}\r\n\r\n /* Footer - \"back on top\" */\r\n #top {position:absolute; top:55px; left:550px;}\r\n #top p {position:relative; width:30px; height:25px; margin:0; overflow:hidden;}\r\n #top p a {display:block; position:absolute; left:0; top:0; z-index:1; width:30px; height:25px; background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') 0 0 no-repeat; cursor:pointer;}\r\n #top a:hover {background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') -30px 0 no-repeat;} \r\n\r\n /* Footer - copyright */\r\n #footer p#copyright {position:absolute; top:10px; left:40px; margin:0;}\r\n\r\n /* Footer - created by */\r\n #createdby {position:absolute; top:10px; left:562px; margin:0; color:#8CA3D8;}\r\n #createdby a {color:#8CA3D8;}\r\n',0,'text/css',1273032718,3600,'/*\nProject: CrystalX\nURL: http://www.nuvio.cz\nOutput device: screen, projection\nAuthor: Vit Dlouhy (vit.dlouhy@nuvio.cz); Nuvio (www.nuvio.cz)\nLast revision: 2006-12-05, 12:00 GMT+1\nStructure:\ndisplay | position | float | overflow | width | height | border | margin | padding | background | align | font\n*/\n* {min-height:1px;}\nbody {border:0; margin:0; padding:0; background:#F2F5FE url(\'^FileUrl(/crystalx/img/bg.gif);\') 0 0 repeat-x; font:70%/160% \"verdana\",sans-serif; color:#192666; text-align:center;}\na {color:#192666;}\na:hover {color:#4F6AD7;}\np {border:0; margin:15px 0; padding:0;}\ndiv {display:block; border:0; margin:0; padding:0; overflow:hidden;}\nh1, h2, h3, h4, h5 {border:0; margin:15px 0 10px 0; padding:0; font-weight:bold;}\nh1 {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\nh2 {font-size:180%; line-height:100%; font-family:\"georgia\",serif; font-weight:normal;}\nh3 {font-size:120%; line-height:100%; font-weight:bold;}\nh4 {font-size:120%;}\nh5 {font-size:100%;}\ntable {display:table; border-collapse:collapse; margin:15px 1px; padding:0; border:1px solid #B7CAF6; font-size:100%;}\ntr {display:table-row;}\nth, td {display: table-cell; border:1px solid #B7CAF6; margin:0; padding:5px; vertical-align:top; text-align:left;}\nth {background:#E7ECFD; text-align:center; color:#192666; font-weight:bold;}\nul, ol {display:block; border:0; margin:15px 0 15px 40px; padding:0;}\nol {list-style-type:decimal;}\nli {display:list-item; border:0; margin:0; padding:0; min-height:1px;}\nul ul, ul ol, ol ol, ol ul {margin: 0 0 0 20px;}\ndl {border-bottom:1px solid #E0E8FA; margin:0; padding:5px 10px; background:#CEDBF9;}\ndt {border:0; margin:0; padding:0; font-weight:bold;}\ndd {border:0; margin:0 0 0 30px; padding:0;}\nform {border:0; margin:0; padding:0;}\nfieldset {border:1px solid #ccc; margin:15px 0; padding:10px;}\nlegend {margin-left:10px; font-size:100%; font-weight:bold; color:#008;}\nhr {height:1px; width:724px; margin: 5px 23px; padding: 0; background:#CCC; border:0 solid #CCC; color:#CCC;}\na, img, span {border:0; margin:0; padding:0; overflow:hidden;}\nabbr, acronym {border-bottom:1px dotted #CCC; cursor:help;}\ndel, .through {text-decoration:line-through;}\nstrong, .strong {font-weight:bold;}\ncite, em, q, var {font-style:italic;}\ncode, kbd, samp {font-family:monospace; font-size:110%;}\n.box {min-height:1px;}\n.box:after {content:\".\"; display:block; line-height:0px; font-size:0px; visibility:hidden; clear:both;}\n.nom {margin:0;}\n.noscreen {display:none;}\n/* -----------------...........--------------------------------------------------------------------------------------- */\n#main {width:770px; margin:0 auto; text-align:left;}\n/* Top (empty space for the background img to fit) */\n#main #topspace {position:relative; top:0; left:0; height:50px; margin:0; padding:0;}\n/* Header */\n#header {position:relative; width:770px; height:100px; margin:0; padding:0; background:#233C9B url(\'^FileUrl(/crystalx/img/header.jpg);\') 0 0 no-repeat; color:#FFFFFF;}\n/* Header - logo */\n#header #logo {position:absolute; top:35px; left:35px; margin:0;}\n#header #logo a {font-size:260%; line-height:100%; font-family:\"georgia\",serif; font-weight:bold; color:#FFF;}\n#header #logo a:hover {color:#B5C4E3; text-decoration:none;}\n/* Header - Search */\n#header #search form {position:absolute; top:35px; right:20px; height:30px;}\n#header #search .formContents {position:absolute; top:0; right:0px; width:200px; height:28px; margin:0; padding:0; border:0; background:url(\'^FileUrl(/crystalx/img/search.png);\') 0 0 no-repeat; font:bold 90%/100% \"verdana\",sans-serif; color:#192666;}\n#header #search input#keywords_formId {width:140px; margin:5px 8px; padding:3px 0; border:0; background:#FFF; font:bold 100%/100% \"verdana\",sans-serif; color:#192666;}\n#header #search #search_form {position:absolute; top:0; right:0px; width:41px; height:28px; cursor:point; margin:0; padding:0;}\n/* Search Result*/\n#header #search #search_result {position:absolute; top:220px;}\n#header #search #home_link, #header #search #no_result, #header #search #pagination {visibility:hidden;}\n#page #page-in #pagination {color:#6182D1; font-weight:bold; padding:5px; text-align:right;}\n#page #page-in #pagination a {color:#6182D1;}\n#page #page-in #pagination a:hover {color:#192666;}\n#page #page-in #home_link {padding:5px 5px 15px; color:#6182D1; font-weight:bold; text-align:right;}\n#page #page-in #home_link a {color:#6182D1;}\n#page #page-in #home_link a:hover {color:#192666;}\n#search_result {margin:10px 0;}\ndl#odd {background:#A0B9F3;}\n#page #page-in #no_result {margin:0 10px; color:#192666; font-weight:bold;}\n/* Main menu (tabs) */\n#menu {background:#192666; margin:0 5px; padding:10px 10px 0; height:32px; overflow:hidden;}\n#menu a {cursor:pointer; font-size:11px;}\n/* Page (dynamic) */\n#page {width:770px; background:#FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y;}\n#page-in {min-height:400px; background:url(\'^FileUrl(/crystalx/img/bg_page_in.jpg);\') 0 0 no-repeat; padding:10px 0 0;}\n/* Strip */\n#strip {position:relative; clear:both; padding:3px 20px 10px 20px; color:#6182D1;}\n/* Strip - Location */\n#strip #location {float: left; background:url(\'^FileUrl(/crystalx/img/ico_comments.gif);\') 0 50% no-repeat; padding: 0 15px;}\n#strip #location a {color:#6182D1;}\n#strip #location a:hover {color:#192666;}\n#strip #location a#currentpage {font-weight:bold; text-decoration:none;}\n/* Strip - DateTime */\n#strip #datetime {float:right; background:url(\'^FileUrl(/crystalx/img/ico_date.gif);\') 0 50% no-repeat; padding: 0 10px 0 15px;}\n/* Content Container */\n#contentContainer {margin:0; padding:0 20px; width:730px; overflow:hidden;}\n/* Contents */\n#contentContainer .content {clear:both; margin:10px 10px 0 0; padding:20px; max-width:710px; background:url(\'^FileUrl(/crystalx/img/content_all_bg.png);\') 0 0 no-repeat; overflow:hidden;}\n#contentContainer .content h2 {margin:0 -10px; padding:10px 25px; color:#192666; background:url(\'^FileUrl(/crystalx/img/ico_list.gif);\') 0 50% no-repeat;}\n#contentContainer .content p {text-align:justify;}\n/* Utility */\n#utility {background: #FFFFFF url(\'^FileUrl(/crystalx/img/bg_page.jpg);\') 0 0 repeat-y; padding: 10px 0 15px;}\n/* Utility - Toggles */\n#toggles {font-size:10px; font-weight:bold; text-align:left; margin-left:42px;}\n#toggles a {margin:0 10px; padding:2px 0; text-decoration:none; border-bottom:1px dashed; color:#6182D1;}\n#toggles a:hover {border-bottom:1px solid; color:#4F6AD7;}\n#toggles span.userAcc {background:url(\'^FileUrl(/crystalx/img/ico_user.gif);\') 0 50% no-repeat; margin: 0 0 0 8px;}\n/* Footer */\n#footer {position:relative; clear:both; width:770px; height:80px; margin-bottom:30px; background:url(\'^FileUrl(/crystalx/img/footer.jpg);\') 0 0 no-repeat; color:#6685CC;}\n#footer a {color:#6685CC;}\n#footer a:hover {color:#192666;}\n/* Footer - \"back on top\" */\n#top {position:absolute; top:55px; left:550px;}\n#top p {position:relative; width:30px; height:25px; margin:0; overflow:hidden;}\n#top p a {display:block; position:absolute; left:0; top:0; z-index:1; width:30px; height:25px; background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') 0 0 no-repeat; cursor:pointer;}\n#top a:hover {background:url(\'^FileUrl(/crystalx/img/ico_top.gif);\') -30px 0 no-repeat;}\n/* Footer - copyright */\n#footer p#copyright {position:absolute; top:10px; left:40px; margin:0;}\n/* Footer - created by */\n#createdby {position:absolute; top:10px; left:562px; margin:0; color:#8CA3D8;}\n#createdby a {color:#8CA3D8;}',0),('w0QifHLhsrzeOpFKl-DX-Q','',0,'text/css',1273032718,3600,'',0),('egpnaaFqWmJwYTZ5CvFH9g','/********************************************\r\n AUTHOR: Erwin Aligam \r\n WEBSITE: http://www.styleshout.com/\r\n TEMPLATE NAME: Underground\r\n TEMPLATE CODE: S-0006\r\n VERSION: 1.1\r\n\r\n Changes for WebGUI by Doug Bell (Preaction) doug@plainblack.com\r\n \r\n *******************************************/\r\n \r\n/********************************************\r\n HTML ELEMENTS\r\n********************************************/ \r\n\r\n/* top elements */\r\n* { margin: 0; padding: 0; }\r\n\r\nbody {\r\n margin: 0; padding: 0;\r\n font: 70%/1.5 Verdana, Tahoma, Arial, Helvetica, sans-serif;\r\n color: #333; \r\n background: #FFF url(^FileUrl(style-underground/images/bg.gif);) repeat-x; \r\n}\r\n\r\n/* links */\r\na {\r\n color: #003366;\r\n background-color: inherit;\r\n text-decoration: none;\r\n}\r\na:hover {\r\n color: #CC0001; \r\n background-color: inherit;\r\n}\r\n\r\n/* headers */\r\nh1, h2, h3 {\r\n font-family: Arial, \'Trebuchet MS\', Sans-Serif;\r\n font-weight: bold;\r\n color: #333;\r\n}\r\nh1 {\r\n font-size: 120%;\r\n letter-spacing: .5px;\r\n}\r\nh2 {\r\n font-size: 115%; \r\n text-transform: uppercase; \r\n}\r\nh3 {\r\n font-size: 115%;\r\n color: #003366; \r\n}\r\n\r\n/* images */\r\nimg {\r\n border: 2px solid #CCC;\r\n}\r\nimg.float-right {\r\n margin: 5px 0px 10px 10px; \r\n}\r\nimg.float-left {\r\n margin: 5px 10px 10px 0px;\r\n}\r\n\r\nh1, h2, h3, p {\r\n padding: 0; \r\n margin: 10px;\r\n}\r\n\r\nul, ol {\r\n margin: 10px 20px;\r\n padding: 0 20px;\r\n}\r\n\r\ncode {\r\n margin: 10px 0;\r\n padding: 10px;\r\n text-align: left;\r\n display: block;\r\n overflow: auto; \r\n font: 500 1em/1.5em \'Lucida Console\', \'courier new\', monospace;\r\n /* white-space: pre; */\r\n background: #FAFAFA;\r\n border: 1px solid #f2f2f2; \r\n border-left: 4px solid #CC0000;\r\n}\r\nacronym {\r\n cursor: help;\r\n border-bottom: 1px solid #777;\r\n}\r\nblockquote {\r\n margin: 10px;\r\n padding: 0 0 0 32px; \r\n background: #FAFAFA url(^FileUrl(style-underground/images/quote.gif);) no-repeat 5px 10px !important; \r\n background-position: 8px 10px;\r\n border: 1px solid #f2f2f2; \r\n border-left: 4px solid #CC0000; \r\n font-weight: bold; \r\n}\r\n\r\n/* form elements */\r\nform {\r\n margin:10px; padding: 0 5px;\r\n border: 1px solid #f2f2f2; \r\n background-color: #FAFAFA; \r\n}\r\nlabel {\r\n display:block;\r\n font-weight:bold;\r\n margin:5px 0;\r\n}\r\ninput {\r\n padding: 2px;\r\n border:1px solid #eee;\r\n font: normal 1em Verdana, sans-serif;\r\n color:#777;\r\n}\r\ntextarea {\r\n width:400px;\r\n padding:2px;\r\n font: normal 1em Verdana, sans-serif;\r\n border:1px solid #eee;\r\n height:100px;\r\n display:block;\r\n color:#777;\r\n}\r\ninput.button { \r\n margin: 0; \r\n font: bolder 12px Arial, Sans-serif; \r\n border: 1px solid #CCC; \r\n padding: 1px; \r\n background: #FFF;\r\n color: #CC0000;\r\n}\r\n/* search form */\r\nform.search {\r\n position: absolute;\r\n top: 5px; right: 5px;\r\n padding: 0; margin: 0;\r\n border: none;\r\n background-color: transparent; \r\n}\r\nform.search input.textbox { \r\n margin: 0; \r\n width: 120px;\r\n border: 1px solid #CCC; \r\n background: #FFF;\r\n color: #333; \r\n}\r\nform.search input.searchbutton { \r\n margin: 0; \r\n font-size: 100%; \r\n font-family: Arial, Sans-serif; \r\n border: 1px solid #CCC; \r\n background: #FFFFFF url(^FileUrl(style-underground/images/headerbg.gif);) repeat-x bottom left; \r\n padding: 1px; \r\n font-weight: bold; \r\n height: 23px;\r\n color: #333;\r\n width: 60px;\r\n}\r\n\r\n/**********************************\r\n LAYOUT \r\n***********************************/\r\n#wrap {\r\n margin: 0 auto; \r\n width: 90%;\r\n}\r\n\r\n/* header */\r\n#header {\r\n position: relative;\r\n margin: 0; padding: 0;\r\n height: 60px;\r\n}\r\n#header span#slogan {\r\n z-index: 3;\r\n position: absolute;\r\n left: 3px; bottom: 7px;\r\n font: bold 1.2em Verdana, Arial, Tahoma, Sans-serif; \r\n color: #FFF; \r\n}\r\n\r\n#header-logo {\r\n position: relative;\r\n clear: both;\r\n height: 50px; \r\n margin: 0; padding: 0; \r\n}\r\n#header-logo #logo {\r\n position: absolute;\r\n top: 3px; left: 5px;\r\n font: bold 30px \"trebuchet MS\", Arial, Tahoma, Sans-Serif;\r\n margin: 0; padding: 0;\r\n letter-spacing: -1px;\r\n color: #000;\r\n}\r\n\r\n/* navigation tabs */\r\n#header ul {\r\n position: absolute;\r\n margin:0;\r\n list-style:none;\r\n right:-18px ; bottom: 3px;\r\n font: bold 13px \'Trebuchet MS\', Arial, Sans-serif;\r\n}\r\n#header li {\r\n display:inline;\r\n margin:0; padding:0;\r\n}\r\n#header a {\r\n float:left;\r\n background: url(^FileUrl(style-underground/images/tableft.gif);) no-repeat left top;\r\n margin:0;\r\n padding:0 0 0 4px;\r\n text-decoration:none;\r\n}\r\n#header a span {\r\n float:left;\r\n display:block;\r\n background: url(^FileUrl(style-underground/images/tabright.gif);) no-repeat right top;\r\n padding:5px 15px 4px 6px;\r\n color:#FFF;\r\n}\r\n/* Commented Backslash Hack hides rule from IE5-Mac \\*/\r\n#header a span {float:none;}\r\n/* End IE5-Mac hack */\r\n#header a:hover span {\r\n color:#FFF;\r\n}\r\n#header a:hover {\r\n background-position:0% -42px;\r\n}\r\n#header a:hover span {\r\n background-position:100% -42px;\r\n}\r\n#header #current a {\r\n background-position:0% -42px;\r\n}\r\n#header #current a span {\r\n background-position:100% -42px;\r\n}\r\n\r\n/* main column */\r\n#main {\r\n float: right;\r\n margin: 0; padding: 0;\r\n width: 78%; \r\n}\r\n#main h1 {\r\n margin: 10px 0;\r\n padding: 4px 0 4px 8px; \r\n font-size: 105%;\r\n color: #FFF;\r\n text-transform: uppercase; \r\n background-color: #CC0000; \r\n letter-spacing: .5px;\r\n}\r\n\r\n/* sidebar */\r\n#sidebar {\r\n float: left;\r\n width: 20%;\r\n margin: 0; padding: 0; \r\n background-color: #FFFFFF; \r\n}\r\n#sidebar h1 {\r\n margin: 10px 0 0 0; \r\n padding: 4px 0 4px 8px; \r\n font: bold 105% Arial, Sans-Serif;\r\n color: #FFF;\r\n text-transform: uppercase; \r\n background: #333; \r\n letter-spacing: 1px; \r\n}\r\n#sidebar .left-box {\r\n border: 1px solid #EBEBEB;\r\n margin: 0 0 5px 0; \r\n background: #FFF;\r\n}\r\n#sidebar ul.sidemenu {\r\n list-style: none;\r\n text-align: left;\r\n margin: 3px 0px 8px 0; padding: 0;\r\n text-decoration: none; \r\n}\r\n#sidebar ul.sidemenu li {\r\n border-bottom: 1px solid #f2f2f2; \r\n background: url(^FileUrl(style-underground/images/bullet.gif);) no-repeat 3px 2px; \r\n padding: 3px 5px 3px 25px;\r\n margin: 0; \r\n}\r\n#sidebar ul.sidemenu a {\r\n font-weight: bolder;\r\n padding: 3px 0px; \r\n background: none;\r\n}\r\n\r\n/* footer */\r\n.footer { \r\n clear: both; \r\n border-top: 1px solid #f2f2f2;\r\n background: #FFF url(^FileUrl(style-underground/images/footerbg.gif);) repeat-x;\r\n padding: 2px 0 10px 0; \r\n text-align: center; \r\n line-height: 1.5em; \r\n font-size: 95%;\r\n}\r\n.footer a { \r\n text-decoration: none; \r\n font-weight: bold; \r\n}\r\n\r\n/* alignment classes */\r\n.float-left { float: left; }\r\n.float-right { float: right; }\r\n.align-left { text-align: left; }\r\n.align-right { text-align: right; }\r\n\r\n/* display and additional classes */\r\n.clear { clear: both; }\r\n.red { color: #CC0000; }\r\n.comments { \r\n margin: 20px 10px 5px 10px; \r\n padding: 3px 0;\r\n border-bottom: 1px dashed #EFF0F1; \r\n border-top: 1px dashed #EFF0F1; \r\n}\r\n',0,'text/css',1273032719,3600,'/********************************************\nAUTHOR: Erwin Aligam\nWEBSITE: http://www.styleshout.com/\nTEMPLATE NAME: Underground\nTEMPLATE CODE: S-0006\nVERSION: 1.1\nChanges for WebGUI by Doug Bell (Preaction) doug@plainblack.com\n*******************************************/\n/********************************************\nHTML ELEMENTS\n********************************************/\n/* top elements */\n* { margin: 0; padding: 0; }\nbody {\nmargin: 0; padding: 0;\nfont: 70%/1.5 Verdana, Tahoma, Arial, Helvetica, sans-serif;\ncolor: #333;\nbackground: #FFF url(^FileUrl(style-underground/images/bg.gif);) repeat-x;\n}\n/* links */\na {\ncolor: #003366;\nbackground-color: inherit;\ntext-decoration: none;\n}\na:hover {\ncolor: #CC0001;\nbackground-color: inherit;\n}\n/* headers */\nh1, h2, h3 {\nfont-family: Arial, \'Trebuchet MS\', Sans-Serif;\nfont-weight: bold;\ncolor: #333;\n}\nh1 {\nfont-size: 120%;\nletter-spacing: .5px;\n}\nh2 {\nfont-size: 115%;\ntext-transform: uppercase;\n}\nh3 {\nfont-size: 115%;\ncolor: #003366;\n}\n/* images */\nimg {\nborder: 2px solid #CCC;\n}\nimg.float-right {\nmargin: 5px 0px 10px 10px;\n}\nimg.float-left {\nmargin: 5px 10px 10px 0px;\n}\nh1, h2, h3, p {\npadding: 0;\nmargin: 10px;\n}\nul, ol {\nmargin: 10px 20px;\npadding: 0 20px;\n}\ncode {\nmargin: 10px 0;\npadding: 10px;\ntext-align: left;\ndisplay: block;\noverflow: auto;\nfont: 500 1em/1.5em \'Lucida Console\', \'courier new\', monospace;\n/* white-space: pre; */\nbackground: #FAFAFA;\nborder: 1px solid #f2f2f2;\nborder-left: 4px solid #CC0000;\n}\nacronym {\ncursor: help;\nborder-bottom: 1px solid #777;\n}\nblockquote {\nmargin: 10px;\npadding: 0 0 0 32px;\nbackground: #FAFAFA url(^FileUrl(style-underground/images/quote.gif);) no-repeat 5px 10px !important;\nbackground-position: 8px 10px;\nborder: 1px solid #f2f2f2;\nborder-left: 4px solid #CC0000;\nfont-weight: bold;\n}\n/* form elements */\nform {\nmargin:10px; padding: 0 5px;\nborder: 1px solid #f2f2f2;\nbackground-color: #FAFAFA;\n}\nlabel {\ndisplay:block;\nfont-weight:bold;\nmargin:5px 0;\n}\ninput {\npadding: 2px;\nborder:1px solid #eee;\nfont: normal 1em Verdana, sans-serif;\ncolor:#777;\n}\ntextarea {\nwidth:400px;\npadding:2px;\nfont: normal 1em Verdana, sans-serif;\nborder:1px solid #eee;\nheight:100px;\ndisplay:block;\ncolor:#777;\n}\ninput.button {\nmargin: 0;\nfont: bolder 12px Arial, Sans-serif;\nborder: 1px solid #CCC;\npadding: 1px;\nbackground: #FFF;\ncolor: #CC0000;\n}\n/* search form */\nform.search {\nposition: absolute;\ntop: 5px; right: 5px;\npadding: 0; margin: 0;\nborder: none;\nbackground-color: transparent;\n}\nform.search input.textbox {\nmargin: 0;\nwidth: 120px;\nborder: 1px solid #CCC;\nbackground: #FFF;\ncolor: #333;\n}\nform.search input.searchbutton {\nmargin: 0;\nfont-size: 100%;\nfont-family: Arial, Sans-serif;\nborder: 1px solid #CCC;\nbackground: #FFFFFF url(^FileUrl(style-underground/images/headerbg.gif);) repeat-x bottom left;\npadding: 1px;\nfont-weight: bold;\nheight: 23px;\ncolor: #333;\nwidth: 60px;\n}\n/**********************************\nLAYOUT\n***********************************/\n#wrap {\nmargin: 0 auto;\nwidth: 90%;\n}\n/* header */\n#header {\nposition: relative;\nmargin: 0; padding: 0;\nheight: 60px;\n}\n#header span#slogan {\nz-index: 3;\nposition: absolute;\nleft: 3px; bottom: 7px;\nfont: bold 1.2em Verdana, Arial, Tahoma, Sans-serif;\ncolor: #FFF;\n}\n#header-logo {\nposition: relative;\nclear: both;\nheight: 50px;\nmargin: 0; padding: 0;\n}\n#header-logo #logo {\nposition: absolute;\ntop: 3px; left: 5px;\nfont: bold 30px \"trebuchet MS\", Arial, Tahoma, Sans-Serif;\nmargin: 0; padding: 0;\nletter-spacing: -1px;\ncolor: #000;\n}\n/* navigation tabs */\n#header ul {\nposition: absolute;\nmargin:0;\nlist-style:none;\nright:-18px ; bottom: 3px;\nfont: bold 13px \'Trebuchet MS\', Arial, Sans-serif;\n}\n#header li {\ndisplay:inline;\nmargin:0; padding:0;\n}\n#header a {\nfloat:left;\nbackground: url(^FileUrl(style-underground/images/tableft.gif);) no-repeat left top;\nmargin:0;\npadding:0 0 0 4px;\ntext-decoration:none;\n}\n#header a span {\nfloat:left;\ndisplay:block;\nbackground: url(^FileUrl(style-underground/images/tabright.gif);) no-repeat right top;\npadding:5px 15px 4px 6px;\ncolor:#FFF;\n}\n/* Commented Backslash Hack hides rule from IE5-Mac \\*/\n#header a span {float:none;}\n/* End IE5-Mac hack */\n#header a:hover span {\ncolor:#FFF;\n}\n#header a:hover {\nbackground-position:0% -42px;\n}\n#header a:hover span {\nbackground-position:100% -42px;\n}\n#header #current a {\nbackground-position:0% -42px;\n}\n#header #current a span {\nbackground-position:100% -42px;\n}\n/* main column */\n#main {\nfloat: right;\nmargin: 0; padding: 0;\nwidth: 78%;\n}\n#main h1 {\nmargin: 10px 0;\npadding: 4px 0 4px 8px;\nfont-size: 105%;\ncolor: #FFF;\ntext-transform: uppercase;\nbackground-color: #CC0000;\nletter-spacing: .5px;\n}\n/* sidebar */\n#sidebar {\nfloat: left;\nwidth: 20%;\nmargin: 0; padding: 0;\nbackground-color: #FFFFFF;\n}\n#sidebar h1 {\nmargin: 10px 0 0 0;\npadding: 4px 0 4px 8px;\nfont: bold 105% Arial, Sans-Serif;\ncolor: #FFF;\ntext-transform: uppercase;\nbackground: #333;\nletter-spacing: 1px;\n}\n#sidebar .left-box {\nborder: 1px solid #EBEBEB;\nmargin: 0 0 5px 0;\nbackground: #FFF;\n}\n#sidebar ul.sidemenu {\nlist-style: none;\ntext-align: left;\nmargin: 3px 0px 8px 0; padding: 0;\ntext-decoration: none;\n}\n#sidebar ul.sidemenu li {\nborder-bottom: 1px solid #f2f2f2;\nbackground: url(^FileUrl(style-underground/images/bullet.gif);) no-repeat 3px 2px;\npadding: 3px 5px 3px 25px;\nmargin: 0;\n}\n#sidebar ul.sidemenu a {\nfont-weight: bolder;\npadding: 3px 0px;\nbackground: none;\n}\n/* footer */\n.footer {\nclear: both;\nborder-top: 1px solid #f2f2f2;\nbackground: #FFF url(^FileUrl(style-underground/images/footerbg.gif);) repeat-x;\npadding: 2px 0 10px 0;\ntext-align: center;\nline-height: 1.5em;\nfont-size: 95%;\n}\n.footer a {\ntext-decoration: none;\nfont-weight: bold;\n}\n/* alignment classes */\n.float-left { float: left; }\n.float-right { float: right; }\n.align-left { text-align: left; }\n.align-right { text-align: right; }\n/* display and additional classes */\n.clear { clear: both; }\n.red { color: #CC0000; }\n.comments {\nmargin: 20px 10px 5px 10px;\npadding: 3px 0;\nborder-bottom: 1px dashed #EFF0F1;\nborder-top: 1px dashed #EFF0F1;\n}',0),('BBpxqoSseIor5C9ei9JEFQ','.wg-toolbar p {\r\n margin: 0px;\r\n}\r\n\r\nimg.wg-toolbar-icon {\r\n border: 0px none;\r\n}\r\n\r\n.toolbarIcon {\r\n margin: 0px;\r\n}',0,'text/css',1273032719,0,'.wg-toolbar p {\nmargin: 0px;\n}\nimg.wg-toolbar-icon {\nborder: 0px none;\n}\n.toolbarIcon {\nmargin: 0px;\n}',0),('xyyn5mz3xGyvrcI1rY8C-w','/* CSS Document */\r\n\r\n\r\nbody,html {\r\n text-align:center;\r\n height: 100%;\r\n ! margin: 3px 3px 3px 3px;\r\n font-family: Verdana, Sans-Serif;\r\n line-height: 125%;\r\n color:#CCCCCC;\r\n background: #222625;\r\n}\r\n\r\nh1,h2,h3,h4,h5,h6{font-weight:bold;}\r\n\r\nh1{font-size:18px;}\r\n\r\nh2{font-size:16px;}\r\n\r\nh3{font-size:14px;}\r\n\r\n h4{font-size:12px;}\r\n\r\nh5{font-size:11px;}\r\n\r\nh6{font-size:10px;}\r\n\r\n#main\r\n{\r\n width:80%;\r\n height:100%;\r\n margin-left:auto;\r\n margin-right:auto;\r\n position:relative;\r\n}\r\n\r\nbody > #main\r\n{\r\n height:auto;\r\n min-height:100%; \r\n font-size:10px;\r\n}\r\n\r\n#main #mainHeader\r\n{\r\n width:100%;\r\n height:125px;\r\n background: url(\'^FileUrl(/greenportal_image/logo.jpg);\') top center no-repeat;\r\n margin-bottom:5px;\r\n position:relative;\r\n}\r\n\r\n#main #mainHeader #title\r\n{\r\n position:absolute;\r\n top:55px;\r\n left:180px;\r\n font-size:36pt;\r\n font-family: \"Edwardian Script ITC\", Arial, Sans-Serif;\r\n /* font-variant: small-caps; */\r\n /* font-style: italic; */\r\n color:#CCCCCC;\r\n font-weight: bold;\r\n overflow: visible;\r\n padding: 20px;\r\n}\r\n\r\n#main #mainHeader #title a {\r\n color:#CCCCCC;\r\n text-decoration:none;\r\n}\r\n\r\n#main #mainHeader #title a:hover {\r\n color:#FFFFFF;\r\n text-decoration:none;\r\n font-size:37pt;\r\n}\r\n\r\n#main #mainMenu\r\n{\r\n width:186px;\r\n position:absolute;\r\n top:125px;\r\n left:0px;\r\n}\r\n\r\n#main #mainMenu li {\r\n list-style: none;\r\n font-size: 9pt;\r\n text-align:left;\r\n}\r\n\r\n#main #mainMenu .menuTop {\r\n color:#99CC33;\r\n background: url(\'^FileUrl(/greenportal_image/menu_top.png);\') no-repeat;\r\n margin-left:-3px;\r\n padding:2px 0px 3px 26px;\r\n width:162px; ! 186px-24px\r\n font-size:10pt;\r\n font-weight: bold;\r\n}\r\n\r\n#main #mainMenu .indent1 {\r\n margin-left:0px;\r\n width:186px;\r\n}\r\n\r\n#main #mainMenu .indent2 {\r\n margin-left:17px;\r\n width:168px; ! 186-17px;\r\n}\r\n\r\n#main #mainMenu a {\r\n display:block;\r\n height:24px;\r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#CCCCCC;\r\n background: url(\'^FileUrl(/greenportal_image/menu_dark.png);\') no-repeat;\r\n padding:2px 0px 0px 24px;\r\n}\r\n\r\n#main #mainMenu a:hover,active {\r\n display:block;\r\n height:24px;\r\n font-weight:bold;\r\n text-decoration:none;\r\n color:#FFFFFF;\r\n background: url(\'^FileUrl(/greenportal_image/menu_light.png);\') no-repeat;\r\n padding:2px 0px 0px 24px;\r\n}\r\n\r\n#main #mainContent\r\n{\r\n ! width:75%;\r\n height:100%; \r\n margin-top:5px;\r\n margin-left:215px;\r\n text-align:left;\r\n border: 1px solid #CCCCCC;\r\n}\r\n\r\n#main > #mainContent\r\n{\r\n margin-top:0px;\r\n ! min-height:500px;\r\n}\r\n\r\n#main > #mainContent > p {\r\n margin-top:0px;\r\n}\r\n\r\n#main #mainContent #topMenu{\r\n margin-right: 10px;\r\n text-align: right;\r\n font-size: 8pt;\r\n font-weight: bold;\r\n}\r\n\r\n#main #mainContent #topMenu a{\r\n color: #99CC33;\r\n text-decoration: none;\r\n}\r\n\r\n#main #mainContent #topMenu a:hover{\r\n text-decoration:underline;\r\n}\r\n\r\n#main #mainContent #mainText\r\n{\r\n margin: 10px 5px 5px 10px;\r\n font-size:8pt;\r\n padding: 5px;\r\n min-height: 423px;\r\n text-align: left;\r\n}\r\n\r\n#main #mainContent #mainText a{\r\n color:#FFFFFF;\r\n text-decoration: none;\r\n font-weight: bold;\r\n}\r\n\r\n#main #mainContent #mainText a:hover {\r\n color:#FFFF00;\r\n text-decoration: none;\r\n font-weight: bold;\r\n}\r\n\r\n#main #mainFooter {\r\n text-align:left;\r\n padding:10px;\r\n margin:5px 0px 5px 200px;\r\n ! width:75%;\r\n font-size:9px;\r\n background:url(^FileUrl(/greenportal_image/logo.jpg);) no-repeat;\r\n}\r\n\r\n#main #mainFooter a {\r\ncolor:#CCCCCC;\r\nfont-weight:bold;\r\ntext-decoration:none;\r\n}\r\n\r\n#main #mainFooter a:hover {\r\ncolor:#FFFFFF;\r\nfont-weight:bold;\r\ntext-decoration:none;\r\n}\r\n\r\n\r\n\r\n',0,'text/css',1273032721,3600,'/* CSS Document */\nbody,html {\ntext-align:center;\nheight: 100%;\n! margin: 3px 3px 3px 3px;\nfont-family: Verdana, Sans-Serif;\nline-height: 125%;\ncolor:#CCCCCC;\nbackground: #222625;\n}\nh1,h2,h3,h4,h5,h6{font-weight:bold;}\nh1{font-size:18px;}\nh2{font-size:16px;}\nh3{font-size:14px;}\nh4{font-size:12px;}\nh5{font-size:11px;}\nh6{font-size:10px;}\n#main\n{\nwidth:80%;\nheight:100%;\nmargin-left:auto;\nmargin-right:auto;\nposition:relative;\n}\nbody> #main\n{\nheight:auto;\nmin-height:100%;\nfont-size:10px;\n}\n#main #mainHeader\n{\nwidth:100%;\nheight:125px;\nbackground: url(\'^FileUrl(/greenportal_image/logo.jpg);\') top center no-repeat;\nmargin-bottom:5px;\nposition:relative;\n}\n#main #mainHeader #title\n{\nposition:absolute;\ntop:55px;\nleft:180px;\nfont-size:36pt;\nfont-family: \"Edwardian Script ITC\", Arial, Sans-Serif;\n/* font-variant: small-caps; */\n/* font-style: italic; */\ncolor:#CCCCCC;\nfont-weight: bold;\noverflow: visible;\npadding: 20px;\n}\n#main #mainHeader #title a {\ncolor:#CCCCCC;\ntext-decoration:none;\n}\n#main #mainHeader #title a:hover {\ncolor:#FFFFFF;\ntext-decoration:none;\nfont-size:37pt;\n}\n#main #mainMenu\n{\nwidth:186px;\nposition:absolute;\ntop:125px;\nleft:0px;\n}\n#main #mainMenu li {\nlist-style: none;\nfont-size: 9pt;\ntext-align:left;\n}\n#main #mainMenu .menuTop {\ncolor:#99CC33;\nbackground: url(\'^FileUrl(/greenportal_image/menu_top.png);\') no-repeat;\nmargin-left:-3px;\npadding:2px 0px 3px 26px;\nwidth:162px; ! 186px-24px\nfont-size:10pt;\nfont-weight: bold;\n}\n#main #mainMenu .indent1 {\nmargin-left:0px;\nwidth:186px;\n}\n#main #mainMenu .indent2 {\nmargin-left:17px;\nwidth:168px; ! 186-17px;\n}\n#main #mainMenu a {\ndisplay:block;\nheight:24px;\nfont-weight:bold;\ntext-decoration:none;\ncolor:#CCCCCC;\nbackground: url(\'^FileUrl(/greenportal_image/menu_dark.png);\') no-repeat;\npadding:2px 0px 0px 24px;\n}\n#main #mainMenu a:hover,active {\ndisplay:block;\nheight:24px;\nfont-weight:bold;\ntext-decoration:none;\ncolor:#FFFFFF;\nbackground: url(\'^FileUrl(/greenportal_image/menu_light.png);\') no-repeat;\npadding:2px 0px 0px 24px;\n}\n#main #mainContent\n{\n! width:75%;\nheight:100%;\nmargin-top:5px;\nmargin-left:215px;\ntext-align:left;\nborder: 1px solid #CCCCCC;\n}\n#main> #mainContent\n{\nmargin-top:0px;\n! min-height:500px;\n}\n#main> #mainContent> p {\nmargin-top:0px;\n}\n#main #mainContent #topMenu{\nmargin-right: 10px;\ntext-align: right;\nfont-size: 8pt;\nfont-weight: bold;\n}\n#main #mainContent #topMenu a{\ncolor: #99CC33;\ntext-decoration: none;\n}\n#main #mainContent #topMenu a:hover{\ntext-decoration:underline;\n}\n#main #mainContent #mainText\n{\nmargin: 10px 5px 5px 10px;\nfont-size:8pt;\npadding: 5px;\nmin-height: 423px;\ntext-align: left;\n}\n#main #mainContent #mainText a{\ncolor:#FFFFFF;\ntext-decoration: none;\nfont-weight: bold;\n}\n#main #mainContent #mainText a:hover {\ncolor:#FFFF00;\ntext-decoration: none;\nfont-weight: bold;\n}\n#main #mainFooter {\ntext-align:left;\npadding:10px;\nmargin:5px 0px 5px 200px;\n! width:75%;\nfont-size:9px;\nbackground:url(^FileUrl(/greenportal_image/logo.jpg);) no-repeat;\n}\n#main #mainFooter a {\ncolor:#CCCCCC;\nfont-weight:bold;\ntext-decoration:none;\n}\n#main #mainFooter a:hover {\ncolor:#FFFFFF;\nfont-weight:bold;\ntext-decoration:none;\n}',0),('MBZK_LPVzqhb4TV4mMRTJg','input.captionEnter {\r\n margin-left: -5px;\r\n width: 92px;\r\n}',0,'text/css',1277868923,3600,'input.captionEnter{margin-left:-5px;width:92px;}',0),('_hELmIJfgbAyXFNqPyApxQ','#adminWrapper {\r\n text-align:left;\r\n font-family:arial;\r\n font-size:11px;\r\n position: relative;\r\n z-index: 2;\r\n}\r\n\r\nh2 {\r\n font-size:15px;\r\n}\r\n\r\n.messageStyle {\r\n font-weight:bold;\r\n font-family:arial;\r\n font-size:10px;\r\n margin-bottom:8px;\r\n}\r\n\r\n.adminButton {\r\n border:solid silver 1px;\r\n background-color:#e0e0e0;\r\n font-weight:bold;\r\n font-size:10px;\r\n color:#333;\r\n cursor:pointer;\r\n padding: 0.5em 1em;\r\n} \r\n\r\n.adminTable {\r\n border:solid silver 1px;\r\n background-color:#F0F0F0;\r\n color: black;\r\n width:320px;\r\n padding:5px;\r\n}\r\n\r\n.adminTable select, .adminTable input, .adminTable textarea{\r\n border:solid gray 1px;\r\n font-size:10px;\r\n padding-left:5px;\r\n}\r\n\r\n.label {\r\n white-space:nowrap;\r\n text-align:right;\r\n padding-right:10px;\r\n font-weight:bold;\r\n width:1px;\r\n vertical-align:top;\r\n}\r\n\r\n.galleryOrg {\r\n list-style-type:none;\r\n display:block;\r\n width:95%;\r\n margin-top:3px;\r\n padding-top:10px;\r\n margin-left:5px;\r\n border:gray solid 1px;\r\n text-align:center;\r\n font-family:verdana,arial;\r\n font-size:9pt;\r\n background-color:#dedede;\r\n}\r\n\r\n.galleryOrgList {\r\n margin: 0px;\r\n padding: 0px;\r\n}\r\n\r\n.galleryOrg .left {\r\n float: left;\r\n width: 36%;\r\n}\r\n\r\n.galleryOrg .right {\r\n width: 63%;\r\n}\r\n\r\n.galleryOrg img {\r\n display:block;\r\n height:150px;\r\n margin:0px auto;\r\n border: none;\r\n}\r\n\r\n.galleryOrg select, .galleryOrg input, .galleryOrg textarea {\r\n border:solid gray 1px;\r\n font-size:10px;\r\n padding-left:5px;\r\n}\r\n\r\n.promote {\r\n margin-left:3px;\r\n}\r\n\r\n.promote img {\r\n height:14px;\r\n width:16px;\r\n}\r\n\r\n.demote {\r\n margin-right:3px;\r\n}\r\n\r\n.demote img {\r\n height:14px;\r\n width:16px;\r\n}\r\n\r\n.delete img {\r\n height: 14px;\r\n}\r\n\r\n.numbering {\r\n position:absolute;\r\n top:0px;\r\n left:0px;\r\n padding:1px;\r\n background-color:black;\r\n color:white;\r\n -moz-border-radius-bottomRight:5px\r\n}\r\n\r\ninput.captionEnter {\r\n width:93px;\r\n clear:both;\r\n margin-bottom:3px\r\n}\r\n\r\n.galleryOrg button {\r\n border-style:none;\r\n background:none;\r\n}\r\n.galleryOrg button img {\r\n width:16px;\r\n height:auto;\r\n}\r\n.galleryOrg .synopsis input {\r\n width:80px;\r\n}',0,'text/css',1277868923,3600,'#adminWrapper{text-align:left;font-family:arial;font-size:11px;position:relative;z-index:2;}h2{font-size:15px;}.messageStyle{font-weight:bold;font-family:arial;font-size:10px;margin-bottom:8px;}.adminButton{border:solid silver 1px;background-color:#e0e0e0;font-weight:bold;font-size:10px;color:#333;cursor:pointer;padding:0.5em 1em;}.adminTable{border:solid silver 1px;background-color:#F0F0F0;color:black;width:320px;padding:5px;}.adminTable select,.adminTable input,.adminTable textarea{border:solid gray 1px;font-size:10px;padding-left:5px;}.label{white-space:nowrap;text-align:right;padding-right:10px;font-weight:bold;width:1px;vertical-align:top;}.galleryOrg{position:relative;margin-top:0px;padding-top:0px;margin-left:5px;border:gray solid 1px;text-align:center;margin-top:3px;width:95%;\n background-color: #DEDEDE}.galleryOrg .left{float:left;width:36%;}.galleryOrg .right{width:63%;}.galleryOrg img{display:block;height:150px;margin:0px auto;}.promote{margin-left:3px;}.promote img{height:14px;width:16px;}.demote{margin-right:3px;}.demote img{height:14px;width:16px;}.delete img{height:14px;}.numbering{position:absolute;top:0px;left:0px;padding:1px;background-color:black;color:white;\n -moz-border-radius-bottomRight:5px}input.captionEnter{width:93px;clear:both;\n margin-bottom:3px}.galleryOrg button{border-style:none;background:none;}.galleryOrg button img{width:16px;height:auto;}.galleryOrg .synopsis input{width:80px;}',0),('_9_eiaPgxzF_x_upt6-PNQ','/* FIXES FLOAT ISSUES. WITHOUT THIS, FLOATS GET ALL NUTSY ESPECIALLY IN OPERA AND SAFARI */\n.clearfix:after {\n content: \".\";\n display: block;\n height: 0;\n clear: both;\n visibility: hidden;\n}\n.clearfix {display: inline-block;}\n/* END FLOAT FIX */\n\n\n\n.wgGallery {\n font-family:verdana, arial;\n text-align:left;\n}\n\n\n\n\n.firstBar {\n background: black;\n color:white;\n font-size:18px;\n font-weight:bold;\n}\n\n.firstBar .title { \n margin-left:20px; \n line-height:42px; \n}\n.firstBar .title a {\n font-size:18px;\n font-weight:bold;\n color:white;\n}\n.firstBar .buttons {\n float:right;\n}\n.firstBar .buttons a {\n display:block;\n float:left;\n height:42px;\n line-height:42px; \n font-size:10px;\n color:white;\n font-weight:bold;\n text-align:center;\n padding:0px 5px; \n}\n.firstBar .buttons .rss {\n display:block;\n height:29px;\n position:relative;\n background:transparent;\n padding-top:13px;\n}\n\n\n\n\n.secondBar {\n background: #F1F1F1;\n text-align:left;\n border-top:solid #8B8B8B 5px; \n color: black;\n overflow: hidden;\n}\n.secondBar .author {\n font-size:10px;\n}\n\n\n.secondBar .desc p {\n margin-left: 20px;\n margin-top: 0;\n color: black;\n}\n\n.pictures {\n \n}\n\n\n.searchArea {\n float:right;\n}\n.searchArea * {\n float:left;\n} \n.searchArea input.searchText {\n border:solid black 1px; \n width:100px; \n margin:0px;\n padding:2px;\n margin-top:5px;\n font-size:10px;\n height:15px;\n margin-right:10px;\n} \n.searchArea input.searchBtn {\n border:solid black 1px; \n margin:0px;\n padding:3px;\n margin-top:5px;\n font-size:10px; \n vertical-align:middle;\n cursor:pointer;\n height:21px;\n} \n.searchArea a:link,\n.searchArea a:visited,\n.secondBar .author a:link,\n.secondBar .author a:visited {\n font-size:11px;\n color:black;\n}\n.searchArea .current {\n font-weight:bold;\n text-transform:uppercase;\n text-decoration:none;\n font-size:10px;\n} \n\n\n\n\n.wgAlbum {\n /* display: -moz-inline-box; Although this works in later versions of FireFox, it does not work in 2.x */\n display:block;\n float:left;\n display: inline-block; /* Op, Saf, IE \\*/\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\n width:250px;\n margin:10px;\n}\n.wgAlbum .albumTitle { \n background: black;\n color:white;\n font-size:12px;\n font-weight:bold;\n padding:10px;\n padding-right:50px;\n border:solid #475f6f 1px;\n border-bottom:solid #8B8B8B 5px;\n text-align:left;\n display:block;\n}\n.wgAlbum .albumImage {\n background: #F1F1F1;\n border-left: solid black 1px;\n border-right: solid black 1px;\n padding-top:15px;\n height:135px;\n} \n.wgAlbum .albumImage a {\n height:135px;\n width:200px;\n overflow:hidden; \n display:block;\n margin:0px 23px;\n}\n.wgAlbum .albumImage img { \n border-style:none;\n display:block;\n width:200px;\n height:auto; \n border:solid black 1px; \n}\n.wgAlbum .albumDesc {\n background: #F1F1F1;\n border-left: solid black 1px;\n border-right: solid black 1px;\n border-bottom: solid black 1px;\n text-align:center;\n padding: 5px 23px;\n}\n.wgAlbum .description {\n font-size:10px; \n height:40px;\n overflow:auto;\n text-align:left;\n border:solid silver 1px;\n padding:5px;\n background-color: #fff;\n color:#222;\n}\n.albumDesc .description * {\n margin:2px 0px;\n}\n\n\n\n\n/* PAGINATION STYLES */\n.wgGallery .paginationContainer {\n text-align:center; \n background: black;\n height:42px;\n}\n.wgGallery .container {\n clear:both;\n text-align:center;\n}\n.wgGallery .pagination { \n margin:0px auto 20px auto;\n display:table;\n list-style-type:none;\n white-space:nowrap;\n padding:0px;\n height:42px;\n}\n.wgGallery .pagination li {\n display:table-cell;\n}\n.wgGallery .pagination a {\n display:block;\n width:50px; \n line-height:42px;\n color:white; \n font-size:10px; \n text-align:center;\n}\n\n\n\n.wgPicture a:link,\n.wgPicture a:visited {\n color:black;\n}\n.wgPicture {\n width:250px;\n margin:10px;\n /*display: -moz-inline-box; This does not work in earlier versions of Firefox */\n display:block;\n float:left;\n display: inline-block; /* Op, Saf, IE \\*/\n vertical-align: top; /* IE Mac non capisce e a volte crea extra v space */\n}\n.wgPicture .title {\n background:#e0e0e0;\n display:block;\n font-size:12px;\n text-align:center;\n padding:2px 5px;\n border:solid black 1px;\n border-bottom:solid #8B8B8B 4px;\n}\n.wgPicture .title a {\n font-size:12px;\n}\n.wgPicture .thumbnail {\n text-align:center;\n background: #F1F1F1;\n padding:15px 23px 15px 23px;\n margin:0px;\n border-left:solid black 1px;\n\n\n\n\n\n border-right:solid black 1px;\n}\n.wgPicture .thumbnail a {\n display:block;\n width:200px;\n height:120px;\n overflow:hidden;\n border:solid black 1px;\n}\n.wgPicture .thumbnail img {\n border-style:none;\n width:200px;\n height:auto;\n}\n.wgPicture .pictureDesc {\n padding:0px;\n border-top:solid #e1e1e1 1px;\n border-bottom:solid gray 1px;\n border-left:solid black 1px;\n border-right:solid black 1px;\n background:#F1F1F1;\n margin:0px;\n}\n.wgPicture .pictureDesc .description {\n margin:0px;\n padding:5px;\n font-size:10px;\n}\n.wgPicture .details {\n background:#e0e0e0;\n border:solid #999 1px;\n border-top:solid #aaa 1px;\n font-size:9px;\n padding:1px 3px; \n}\n.wgPicture .details .date {\n float:right;\n}\n.wgPicture .details .comments {\n float:left;\n}\n.wgPicture .details a { \n font-size:9px; \n}\n\n\n\n/*\n* --BEGIN STYLES FOR PHOTO VIEW --\n * The Photo view uses some/all of the above classes, plus those in this section.\n*/\n.wgSnapshot {\n float:left;\n margin:10px;\n max-width:250px; \n width:25%;\n}\n.wgSnapshot fieldset { \n background-color:#fefefe;\n border:solid #555 2px;\n padding:10px;\n background-color:#f9f9f9;\n text-align:center;\n}\n.navigation {\n width: 100%;\n text-align: center;\n font-weight: bold;\n color: navy;\n}\n.wgSnapshot p {\n max-width:230px;\n}\n.wgSnapshot .navigation {\n width:100%;\n margin:5px 0 0;\n text-align:center;\n}\n.wgSnapshot .navigation img {\n border: none;\n}\n.wgSnapshot legend {\n color:#333;\n font-size:15px;\n font-weight:bold;\n max-width:250px;\n}\n.wgSnapshot a.thumbnail img {\n width:200px;\n height:auto;\n border:solid #555 2px;\n}\n.wgSnapshot .description {\n font-size:9px;\n border:solid #555555 2px;\n padding:5px;\n width:190px;\n margin:0px auto;\n background-color:#fff;\n height:50px;\n overflow:auto;\n text-align:left;\n overflow:auto;\n}\n.wgSnapshot a.fullSize {\n margin:0px auto;\n}\n\n\n\n.wgPictureDetails {\n float:left;\n width:70%; \n margin:10px;\n overflow: hidden;\n}\n.wgPictureDetails a:link,\n.wgPictureDetails a:visited {\n color:black;\n}\n.wgPictureDetails fieldset { \n background-color:#fefefe;\n border:solid #555 2px;\n padding:10px;\n background-color:#f9f9f9; \n margin-bottom:10px;\n}\n.wgPictureDetails legend {\n color:#333;\n font-size:15px;\n font-weight:bold;\n}\n\n\n.rowOne, .rowTwo {\n margin:1px;\n color:black;\n padding:3px;\n}\n\n.rowOne {\n background: #EFEFEF;\n border:solid #CDCDCD 1px;\n}\n.rowTwo {\n background: #DCDCDC;\n border:solid #DDDDDD 1px;\n}\n.rowOne .label, .rowTwo .label {\n margin-left:15px;\n text-align:left;\n font-weight:bold;\n font-size:11px;\n}\n.rowOne .data, .rowTwo .data { \n font-size:10px;\n margin-left:5px;\n}\na.fullSize:link,\na.fullSize:visited { \n color:black;\n display:block;\n text-align:center;\n font-weight:bold;\n font-size:10px; \n}\n\n\n\n\n.wgComments { \n font-size:9px; \n margin:10px;\n width:90%;\n}\n.wgComments .title {\n font-size:14px;\n font-weight:bold;\n color:#333;\n border-bottom:solid #555555 2px;\n padding-bottom:2px;\n} \n.wgComments .title a {\n color:navy;\n text-decoration:none;\n}\n.wgComments .comment, .wgComments .commentAlt {\n position:relative; \n padding:5px; \n}\n.wgComments .comment {\n background-color:#e1e1e1;\n border-top:solid #F7F7F7 1px;\n border-bottom:solid #C9C9C9 1px;\n}\n.wgComments .commentAlt {\n background-color:#f0f0f0; \n border-bottom:solid #CDCDCD 1px;\n border-top:solid #FBFBFB 1px;\n}\n.wgComments .number {\n float:left;\n font-size:30px;\n color:silver;\n margin:5px 10px 5px 5px;\n}\n.wgComments .posted { \n font-style:italic;\n padding-top:3px;\n font-size:9px;\n color:gray;\n}\n.wgComments .posted a {\n color:navy;\n text-decoration:underline;\n}\n\n\n\n\n/*\n* --BEGIN STYLES FOR THUMBNAIL VIEW --\n * The Thumbnail view uses some/all of the above classes, plus those in this section.\n*/\n\n.thumbView {\n width:400px;\n height:auto;\n}\n.thumbView .thumbnail a {\n display:block;\n width:350px;\n height:auto; \n border:solid black 1px;\n}\n.thumbView .thumbnail img {\n border-style:none;\n width:350px;\n height:auto;\n}\n.thumb {\n width:100px;\n height:65px;\n overflow:hidden;\n display:block;\n float:left;\n border:solid black 2px;\n margin:10px;\n z-index: 0;\n position: relative;\n}\n.thumb:hover {\n background-color: transparent;\n z-index: 50;\n overflow: visible;\n}\n.thumb img {\n width:100px;\n height:auto;\n border-style:none;\n}\n.thumb:hover img {\n bottom: 65px;\n left: -75px;\n position: absolute;\n width: 250px;\n}\n\n/*\n* --BEGIN STYLES FOR SLIDESHOW VIEW --\n * The Slideshow view uses some/all of the above classes, plus those in this section.\n*/\n.wgSlideshow .controls {\n background: url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;\n width:500px;\n height:42px;\n margin:0px auto;\n border:solid black 2px;\n}\n.wgSlideshow { \n text-align:center;\n}\n#slideshow-container {\n width:500px;\n height:auto;\n margin:0px auto;\n text-align:center;\n border:solid black 2px;\n position:relative;\n z-index:0;\n}\n#slideshow-container .slideshow-item img {\n width:100%;\n height:auto;\n border-style:none;\n display:block;\n}\n#slideshow-container .slideshow-item .title {\n background-color:black;\n padding:3px;\n color:white;\n border-top:solid white 1px;\n border-bottom:solid white 1px;\n}\n#slideshow-container .slideshow-item .title a {\n color:white;\n font-size:11px;\n font-weight:bold; \n}\n#slideshow-container .slideshow-item .counter {\n background-color:black;\n padding:3px;\n color:white;\n font-size:11px;\n font-weight:bold;\n}\n#slideshow-container .slideshow-item .synopsis {\n width:494px;\n background-color:white;\n padding:3px;\n color:black;\n font-size:11px;\n font-weight:bold;\n border-top:solid black 1px;\n text-align:left;\n}\n\n\n\n\n\n\n/*\n* --BEGIN STYLES FOR SEARCH VIEW --\n * The Search view uses some/all of the above classes, plus those in this section.\n*/\n#adminWrapper {\n margin-top:20px;\n}\n#adminWrapper .label {\n background:black;\n font-weight:bold; \n font-size:10px;\n color:white;\n}\n#adminWrapper td.data input {\n background: #f1f1f1;\n vertical-align:middle;\n}\n#adminWrapper td.radio input {\n border-style:none;\n background:none;\n}\n#adminWrapper .forwardButton {\n cursor:pointer;\n float:rigbt;\n}\n#adminWrapper .forwardButton:hover {\n color:gold;\n}',0,'text/css',1277868924,3600,'.clearfix:after{content:\".\";display:block;height:0;clear:both;visibility:hidden;}.clearfix{display:inline-block;}.wgGallery{font-family:verdana,arial;text-align:left;}.firstBar{background:black;color:white;font-size:18px;font-weight:bold;}.firstBar .title{margin-left:20px;line-height:42px;}.firstBar .title a{font-size:18px;font-weight:bold;color:white;}.firstBar .buttons{float:right;}.firstBar .buttons a{display:block;float:left;height:42px;line-height:42px;font-size:10px;color:white;font-weight:bold;text-align:center;padding:0px 5px;}.firstBar .buttons .rss{display:block;height:29px;position:relative;background:transparent;padding-top:13px;}.secondBar{background:#F1F1F1;text-align:left;border-top:solid #8B8B8B 5px;color:black;overflow:hidden;}.secondBar .author{font-size:10px;}.secondBar .desc p{margin-left:20px;margin-top:0;color:black;}.pictures{}.searchArea{float:right;}.searchArea *{float:left;}.searchArea input.searchText{border:solid black 1px;width:100px;margin:0px;padding:2px;margin-top:5px;font-size:10px;height:15px;margin-right:10px;}.searchArea input.searchBtn{border:solid black 1px;margin:0px;padding:3px;margin-top:5px;font-size:10px;vertical-align:center;cursor:pointer;height:21px;}.searchArea a:link,.searchArea a:visited,.secondBar .author a:link,.secondBar .author a:visited{font-size:11px;color:black;}.searchArea .current{font-weight:bold;text-transform:uppercase;text-decoration:none;font-size:10px;}.wgAlbum{display:-moz-inline-box;display:inline-block;/*\\*/\n vertical-align:top;/**/\n width:250px;margin:10px;}.wgAlbum .albumTitle{background:black;color:white;font-size:12px;font-weight:bold;padding:10px;padding-right:50px;border:solid #475f6f 1px;border-bottom:solid #8B8B8B 5px;text-align:left;display:block;}.wgAlbum .albumImage{background:#F1F1F1;border-left:solid black 1px;border-right:solid black 1px;padding-top:15px;height:135px;}.wgAlbum .albumImage a{height:135px;width:200px;overflow:hidden;display:block;margin:0px 23px;}.wgAlbum .albumImage img{border-style:none;display:block;width:200px;height:auto;border:solid black 1px;}.wgAlbum .albumDesc{background:#F1F1F1;border-left:solid black 1px;border-right:solid black 1px;border-bottom:solid black 1px;text-align:center;padding:5px 23px;}.wgAlbum .description{font-size:10px;height:40px;overflow:auto;text-align:left;border:solid silver 1px;padding:5px;background-color:#fff;color:#222;}.albumDesc .description *{margin:2px 0px;}.wgGallery .paginationContainer{text-align:center;background:black;height:42px;}.wgGallery .container{clear:both;text-align:center;}.wgGallery .pagination{margin:0px auto 20px auto;display:table;list-style-type:none;white-space:nowrap;padding:0px;height:42px;}.wgGallery .pagination li{display:table-cell;}.wgGallery .pagination a{display:block;width:50px;line-height:42px;color:white;font-size:10px;text-align:center;}.wgPicture a:link,.wgPicture a:visited{color:black;}.wgPicture{width:250px;margin:10px;display:-moz-inline-box;display:inline-block;/*\\*/\n vertical-align:top; /**/}.wgPicture .title{background:#e0e0e0;display:block;font-size:12px;text-align:center;padding:2px 5px;border:solid black 1px;border-bottom:solid #8B8B8B 4px;}.wgPicture .thumbnail{text-align:center;background:#F1F1F1;padding:15px 23px 15px 23px;margin:0px;border-left:solid black 1px;border-right:solid black 1px;}.wgPicture .thumbnail a{display:block;width:200px;height:120px;overflow:hidden;border:solid black 1px;}.wgPicture .thumbnail img{border-style:none;width:200px;height:auto;}.wgPicture .pictureDesc{padding:0px;border-top:solid #e1e1e1 1px;border-bottom:solid gray 1px;border-left:solid black 1px;border-right:solid black 1px;background:#F1F1F1;margin:0px;}.wgPicture .pictureDesc .description{margin:0px;padding:5px;font-size:10px;}.wgPicture .details{background:#e0e0e0;border:solid #999 1px;border-top:solid #aaa 1px;font-size:9px;padding:1px 3px;}.wgPicture .details .date{float:right;}.wgPicture .details .comments{float:left;}.wgPicture .details a{font-size:9px;}.wgSnapshot{float:left;margin:10px;max-width:250px;width:25%;}.wgSnapshot fieldset{background-color:#fefefe;border:solid #555 2px;padding:10px;background-color:#f9f9f9;text-align:center;}.wgSnapshot p{max-width:230px;}.wgSnapshot legend{color:#333;font-size:15px;font-weight:bold;max-width:250px;}.wgSnapshot a.thumbnail img{width:200px;height:auto;border:solid #555 2px;}.wgSnapshot .description{font-size:9px;border:solid #555555 2px;padding:5px;width:190px;margin:0px auto;background-color:#fff;height:50px;overflow:auto;text-align:left;overflow:auto;}.wgSnapshot a.fullSize{margin:0px auto;}.wgPictureDetails{float:left;width:70%;margin:10px;}.wgPictureDetails a:link,.wgPictureDetails a:visited{color:black;}.wgPictureDetails fieldset{background-color:#fefefe;border:solid #555 2px;padding:10px;background-color:#f9f9f9;margin-bottom:10px;}.wgPictureDetails legend{color:#333;font-size:15px;font-weight:bold;}.rowOne{background:#EFEFEF;margin:1px;border:solid #CDCDCD 1px;color:black;padding:3px;}.rowTwo{background:#DCDCDC;margin:1px;border:solid #DDDDDD 1px;color:black;padding:3px;}.rowOne .label,.rowTwo .label{margin-left:15px;display:inline;text-align:left;font-weight:bold;font-size:11px;}.rowOne .data,.rowTwo .data{font-size:10px;margin-left:5px;display:inline;}a.fullSize:link,a.fullSize:visited{color:black;display:block;text-align:center;font-weight:bold;font-size:10px;}.wgComments{font-size:9px;margin:10px;width:90%;}.wgComments .title{font-size:14px;font-weight:bold;color:#333;border-bottom:solid #555555 2px;padding-bottom:2px;}.wgComments .title a{color:navy;text-decoration:none;}.wgComments .comment,.wgComments .commentAlt{position:relative;padding:5px;}.wgComments .comment{background-color:#e1e1e1;border-top:solid #F7F7F7 1px;border-bottom:solid #C9C9C9 1px;}.wgComments .commentAlt{background-color:#f0f0f0;border-bottom:solid #CDCDCD 1px;border-top:solid #FBFBFB 1px;}.wgComments .number{float:left;font-size:30px;color:silver;margin:5px 10px 5px 5px;}.wgComments .posted{font-style:italic;padding-top:3px;font-size:9px;color:gray;}.wgComments .posted a{color:navy;text-decoration:underline;}.thumbView{width:400px;height:auto;}.thumbView .thumbnail a{display:block;width:350px;height:auto;border:solid black 1px;}.thumbView .thumbnail img{border-style:none;width:350px;height:auto;}.thumb{width:100px;height:65px;overflow:hidden;display:block;float:left;border:solid black 2px;margin:10px;}.thumb img{width:100px;height:auto;border-style:none;}.thumb-popup{border:solid #555 1px;padding:2px;padding-bottom:4px;padding-right:4px;background-color:silver;}.thumb-popup img{border:solid #555 1px;}.thumb-popup .caption{background-color:black;color:white;padding:4px;border:solid #555 2px;}.wgSlideshow .controls{background:url(^FileUrl(root/import/gallery-templates/images/pagination_bg.jpg);) repeat-x;width:500px;height:42px;margin:0px auto;border:solid black 2px;}.wgSlideshow{text-align:center;}#slideshow-container{width:500px;height:auto;margin:0px auto;text-align:center;border:solid black 2px;position:relative;z-index:0;}#slideshow-container .slideshow-item img{width:100%;height:auto;border-style:none;display:block;}#slideshow-container .slideshow-item .title{background-color:black;padding:3px;color:white;border-top:solid white 1px;border-bottom:solid white 1px;}#slideshow-container .slideshow-item .title a{color:white;font-size:11px;font-weight:bold;}#slideshow-container .slideshow-item .counter{background-color:black;padding:3px;color:white;font-size:11px;font-weight:bold;}#slideshow-container .slideshow-item .synopsis{width:494px;background-color:white;padding:3px;color:black;font-size:11px;font-weight:bold;border-top:solid black 1px;text-align:left;}#adminWrapper{margin-top:20px;}#adminWrapper .label{background:black;font-weight:bold;font-size:10px;color:white;}#adminWrapper td.data input{background:#f1f1f1;vertical-align:middle;}#adminWrapper td.radio input{border-style:none;background:none;}#adminWrapper .forwardButton{cursor:pointer;float:rigbt;}#adminWrapper .forwardButton:hover{color:gold;}',0),('7fE8md51vTCcuJFOvxNaGA','// Depends on BrowserDetect.js\r\n\r\n// Make the thumbnails a little bigger while the mouse is over them\r\nfunction scaleThumbUp ( e, anchor ) {\r\n \r\n // IE6 doesn\'t like to do the right thing with the CSS stuff below, exclude it\r\n if ( BrowserDetect ) {\r\n if ( BrowserDetect.browser == \"Explorer\" && BrowserDetect.version < 7 ) {\r\n return;\r\n }\r\n }\r\n\r\n // Make a new image with the same image src as the anchor\r\n var oldImage = anchor.getElementsByTagName(\"img\")[0];\r\n\r\n var newContainer = document.createElement(\"div\");\r\n newContainer.className = \"thumb-popup\";\r\n newContainer.style.position = \"absolute\";\r\n newContainer.style.zIndex = \"1\";\r\n var newWidth = oldImage.offsetWidth * 3;\r\n var newHeight = oldImage.offsetHeight * 3;\r\n var newLeft = ( ( anchor.offsetLeft + ( anchor.offsetWidth / 2 ) ) - ( newWidth / 2 ) );\r\n var newTop = ( ( anchor.offsetTop + ( anchor.offsetHeight / 2 ) ) - ( newHeight / 2 ) ); \r\n newContainer.style.left = newLeft + \"px\";\r\n newContainer.style.top = newTop + \"px\";\r\n newContainer.style.width = newWidth + \"px\";\r\n newContainer.style.height = newHeight + \"px\";\r\n\r\n var newImage = document.createElement(\"img\");\r\n newImage.src = oldImage.src;\r\n newImage.style.width = \"100%\";\r\n newImage.style.height = \"100%\";\r\n newContainer.appendChild( newImage );\r\n \r\n // Make some text for the caption\r\n var caption = document.createElement(\"div\");\r\n caption.appendChild( document.createTextNode( anchor.title ) );\r\n caption.className = \"caption\";\r\n newContainer.appendChild( caption );\r\n\r\n var newBox = document.createElement(\"a\");\r\n newBox.href = anchor.href;\r\n newBox.style.display = \"block\";\r\n newBox.style.position = \"absolute\";\r\n newBox.style.zIndex = \"10\";\r\n newBox.style.left = ( anchor.offsetLeft ) + \"px\";\r\n newBox.style.top = ( anchor.offsetTop ) + \"px\";\r\n newBox.style.height = ( anchor.offsetHeight ) + \"px\";\r\n newBox.style.width = ( anchor.offsetWidth ) + \"px\";\r\n newBox.style.border = \"1px solid transparent\";\r\n\r\n anchor.parentNode.appendChild( newContainer );\r\n anchor.parentNode.appendChild( newBox );\r\n\r\n YAHOO.util.Event.addListener( newBox, \"click\", function () { window.location.href = anchor.href } );\r\n YAHOO.util.Event.addListener( newContainer, \"mouseout\", scaleThumbDown, [ newBox, newContainer, caption ] );\r\n YAHOO.util.Event.addListener( newBox, \"mouseout\", scaleThumbDown, [ newBox, newContainer, caption ] );\r\n}\r\n\r\nfunction scaleThumbDown ( e, elements ) {\r\n for ( var i = 0; i < elements.length; i++ ) {\r\n elements[i].parentNode.removeChild( elements[i] );\r\n }\r\n}\r\n\r\nvar anchorTimeout;\r\nfunction enterAnchor ( e, anchor ) {\r\n if ( typeof anchorTimeout != \"undefined\" ) {\r\n clearTimeout( anchorTimeout );\r\n }\r\n anchorTimeout = setTimeout( function() { scaleThumbUp( e, anchor ); }, 150 );\r\n}\r\n\r\nfunction leaveAnchor ( e, anchor ) {\r\n if ( typeof anchorTimeout != \"undefined\" ) {\r\n clearTimeout( anchorTimeout );\r\n }\r\n}\r\n\r\nfunction initThumb () {\r\n var anchors = YAHOO.util.Dom.getElementsByClassName( \"thumb\" );\r\n for ( var i = 0; i < anchors.length; i++ ) {\r\n YAHOO.util.Event.addListener( anchors[i], \"mouseover\", enterAnchor, anchors[i] );\r\n YAHOO.util.Event.addListener( anchors[i], \"mouseout\", leaveAnchor, anchors[i] );\r\n }\r\n}\r\n\r\nYAHOO.util.Event.onDOMReady( initThumb );\r\n',0,'text/javascript',1277868926,3600,'function scaleThumbUp(e,f){if(BrowserDetect){if(BrowserDetect.browser==\"Explorer\"&&BrowserDetect.version<7){return}}var h=f.getElementsByTagName(\"img\")[0];var a=document.createElement(\"div\");a.className=\"thumb-popup\";a.style.position=\"absolute\";a.style.zIndex=\"1\";var c=h.offsetWidth*3;var d=h.offsetHeight*3;var b=((f.offsetLeft+(f.offsetWidth/ 2 ) ) - ( c/2));var newTop=((anchor.offsetTop+(anchor.offsetHeight/ 2 ) ) - ( d /2));a.style.left=b+\"px\";a.style.top=newTop+\"px\";a.style.width=c+\"px\";a.style.height=d+\"px\";var i=document.createElement(\"img\");i.src=h.src;i.style.width=\"100%\";i.style.height=\"100%\";a.appendChild(i);var g=document.createElement(\"div\");g.appendChild(document.createTextNode(f.title));g.className=\"caption\";a.appendChild(g);var j=document.createElement(\"a\");j.href=f.href;j.style.display=\"block\";j.style.position=\"absolute\";j.style.zIndex=\"10\";j.style.left=(f.offsetLeft)+\"px\";j.style.top=(f.offsetTop)+\"px\";j.style.height=(f.offsetHeight)+\"px\";j.style.width=(f.offsetWidth)+\"px\";j.style.border=\"1px solid transparent\";f.parentNode.appendChild(a);f.parentNode.appendChild(j);YAHOO.util.Event.addListener(j,\"click\",function(){window.location.href=f.href});YAHOO.util.Event.addListener(a,\"mouseout\",scaleThumbDown,[j,a,g]);YAHOO.util.Event.addListener(j,\"mouseout\",scaleThumbDown,[j,a,g])}function scaleThumbDown(e,a){for(var i=0;i= items.length ) {\r\n showIndex = 0;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex >= items.length ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n if ( items[ hideIndex ] )\r\n items[ hideIndex ].style.display = \"none\";\r\n if ( items[ showIndex ] ) {\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n }\r\n};\r\n\r\n/**\r\n showPrevious ( )\r\n Show the previous slide\r\n*/\r\nWebGUI.Slideshow.prototype.showPrevious\r\n= function () {\r\n var items = this.getSlideshowItems();\r\n \r\n var hideIndex = this.currentIndex;\r\n var showIndex = this.currentIndex - 1;\r\n\r\n // Wrap around\r\n if ( this.wrap && showIndex < 0 ) {\r\n showIndex = items.length - 1;\r\n }\r\n // Don\'t allow going past the last item\r\n else if ( showIndex < 0 ) { \r\n return;\r\n }\r\n\r\n // Do the switch\r\n items[ hideIndex ].style.display = \"none\";\r\n items[ showIndex ].style.display = \"block\";\r\n this.currentIndex = showIndex;\r\n};\r\n\r\n/**\r\n togglePlay ( )\r\n If it\'s paused, play it. If it\'s playing, pause it.\r\n Return true if the slideshow is now playing.\r\n*/\r\nWebGUI.Slideshow.prototype.togglePlay\r\n= function () {\r\n if ( this.isPlaying == false ) {\r\n this.play();\r\n return true;\r\n }\r\n else {\r\n this.pause();\r\n }\r\n};\r\n\r\n/**\r\n updatePlayPauseButton ( )\r\n Update the Play/Pause button to have the correct image\r\n*/\r\nWebGUI.Slideshow.prototype.updatePlayPauseButton\r\n= function () {\r\n if ( this.playPauseButtonId ) {\r\n if ( this.isPlaying && this.playImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.pauseImageSrc;\r\n }\r\n else if ( this.pauseImageSrc ) {\r\n document.getElementById( this.playPauseButtonId ).src = this.playImageSrc;\r\n }\r\n }\r\n};',0,'text/javascript',1277868927,3600,'if(typeof WebGUI==\"undefined\"){WebGUI={}}WebGUI.Slideshow=function(a){this.containerId=a&&a.containerId?a.containerId:\"slideshow-container\";this.currentIndex=a&&a.currentIndex?a.currentIndex:0;this.isPlaying=a&&a.isPlaying?a.isPlaying:false;this.itemClassName=a&&a.itemClassName?a.itemClassName:\"slideshow-item\";this.nextButtonId=a?a.nextButtonId:undefined;this.pauseImageSrc=a?a.pauseImageSrc:undefined;this.playDelay=a&&a.playDelay?a.playDelay:5000;this.playImageSrc=a?a.playImageSrc:undefined;this.playPauseButtonId=a?a.playPauseButtonId:undefined;this.previousButtonId=a?a.previousButtonId:undefined;this.wrap=a&&a.wrap?a.wrap:false;YAHOO.util.Event.onDOMReady(this.init,this,true)};WebGUI.Slideshow.prototype.clearPlayTimeout=function(){clearTimeout(this.playTimeout);this.playTimeout=undefined}WebGUI.Slideshow.prototype.doPlayTick=function(a){a.showNext();a.setPlayTimeout()}WebGUI.Slideshow.prototype.getSlideshowContainer=function(){return document.getElementById(this.containerId)};WebGUI.Slideshow.prototype.showPrevious=function(){var items=this.getSlideshowItems();var hideIndex=this.currentIndex;var showIndex=this.currentIndex-1;if(this.wrap&&showIndex<0){showIndex=items.length-1}/**\n togglePlay ( )\n If it\'s paused,play it.If it\'s playing,pause it.Return true if the slideshow is now playing.*/WebGUI.Slideshow.prototype.togglePlay=function(){if(this.isPlaying==false){this.play();return true}else{this.pause()}};WebGUI.Slideshow.prototype.updatePlayPauseButton=function(){if(this.playPauseButtonId){if(this.isPlaying&&this.playImageSrc){document.getElementById(this.playPauseButtonId).src=this.pauseImageSrc}else if(this.pauseImageSrc){document.getElementById(this.playPauseButtonId).src=this.playImageSrc}}};',0),('3qiVYhNTXMVC5hfsumVHgg','var BrowserDetect = {\r\n init: function () {\r\n this.browser = this.searchString(this.dataBrowser) || \"An unknown browser\";\r\n this.version = this.searchVersion(navigator.userAgent)\r\n || this.searchVersion(navigator.appVersion)\r\n || \"an unknown version\";\r\n this.OS = this.searchString(this.dataOS) || \"an unknown OS\";\r\n },\r\n searchString: function (data) {\r\n for (var i=0;i\">','Macro/AdminToggle',1,1,'PBtmpl0000000000000036',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/a_account',1,1,'PBtmpl0000000000000037',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/EditableToggle',1,1,'PBtmpl0000000000000038',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/GroupAdd',1,1,'PBtmpl0000000000000040',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/GroupDelete',1,1,'PBtmpl0000000000000041',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/H_homeLink',1,1,'PBtmpl0000000000000042',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/LoginToggle',1,1,'PBtmpl0000000000000043',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/r_printable',1,1,'PBtmpl0000000000000045',1129049186,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\">','Macro/File',1,1,'PBtmpl0000000000000091',1129049189,'WebGUI::Asset::Template::HTMLTemplate',1,'\">',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n
    /opaque.gif);\">\n \n
    \n\n\n\n
    /opaque.gif);\">\n \n
    \n
    \n
    \n','Shortcut',1,1,'PBtmpl0000000000000140',1129573244,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    /opaque.gif);\">
    /opaque.gif);\">
    ',0,NULL,NULL),('

    \n\n\n
    \n \n
    \n
    \n
    :
    \n
    \n
    \n
    \n
    \n\n\n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n','AdminConsole',1,1,'PBtmplHelp000000000001',1147642410,'WebGUI::Asset::Template::HTMLTemplate',1,'


    :
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n class=\"even\">\n \">
    \n \n \n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n \">\n by\n \n \n \n \">\n \n on @ \n \n
    \n \n
    \n\n

    \n \n
    \n
    \n \n

    \n \n\n\n\n','MessageBoard',1,1,'PBtmpl0000000000000047',1147642414,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \">

    class=\"even\"> \">
    class=\"even\" align=\"center\"> class=\"even\" align=\"center\"> class=\"even\" align=\"center\"> class=\"even\" align=\"center\"> class=\"even\"> \"> by \"> on @


    ',0,NULL,NULL),('\nThis is the Manager\'s View\n\n','TimeTracking_manager',1,1,'TimeTrackingTMPL000002',1147642417,'WebGUI::Asset::Template::HTMLTemplate',1,'This is the Manager\'s View',0,NULL,NULL),('

    \n\n

    \n\n

    \n\n
    \n\n\">\n\n          \n\n\">\n\n
    \n','prompt',1,1,'PBtmpl0000000000000057',1147642418,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">           \">
    ',0,NULL,NULL),('\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()','Macro/File',1,1,'PBtmpl0000000000000107',1147642420,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />()',0,NULL,NULL),('

    RandomThread macro debug output:

    \n
    \n
    approve.url:
    \n
    assetId:
    \n
    assetSize:
    \n\n
    <tmpl_loop attachment_loop>:
    \n
    \n
    filename:
    \n
    icon:
    \n
    isImage:
    \n
    thumbnail:
    \n
    url:
    \n</tmpl_loop>\n\n\n
    attachment.icon:
    \n
    attachment.thumbnail:
    \n
    attachment.url:
    \n
    className:
    \n
    content:
    \n
    contentType:
    \n
    createdBy:
    \n
    creationDate:
    \n
    dateSubmitted:
    \n
    dateSubmitted.human:
    \n
    dateUpdated:
    \n
    dateUpdated.human:
    \n
    delete.url:
    \n
    deny.url:
    \n
    edit.url:
    \n
    encryptPage:
    \n
    endDate:
    \n
    extraHeadTags:
    \n
    groupIdEdit:
    \n
    groupIdView:
    \n
    hasRated:
    \n
    image.url
    \n
    image.thumbnail
    \n
    isHidden:
    \n
    isLocked:
    \n
    isLockedBy:
    \n
    isMarkedRead:
    \n
    isPackage:
    \n
    isPrototype:
    \n
    isSticky:
    \n
    isSystem:
    \n
    lastPostDate:
    \n
    lastPostId:
    \n
    lineage:
    \n
    menuTitle:
    \n
    newWindow:
    \n
    ownerUserId:
    \n
    parentId:
    \n
    rate.url.1:
    \n
    rate.url.2:
    \n
    rate.url.3:
    \n
    rate.url.4:
    \n
    rate.url.5:
    \n
    rating:
    \n
    rating.value:
    \n
    replies:
    \n
    reply.url:
    \n
    reply.withquote.url:
    \n
    revisedBy:
    \n
    revisionDate:
    \n
    startDate:
    \n
    state:
    \n
    stateChanged:
    \n
    stateChangedBy:
    \n
    status:
    \n
    storageId:
    \n
    subscriptionGroupId:
    \n
    synopsis:
    \n
    tagId:
    \n
    threadId:
    \n
    title:
    \n
    title.short:
    \n
    url:
    \n
    user.canEdit:
    \n
    user.isPoster:
    \n
    userDefined1:
    \n
    userDefined2:
    \n
    userDefined3:
    \n
    userDefined4:
    \n
    userDefined5:
    \n
    userId:
    \n
    userProfile.url:
    \n
    username:
    \n
    views:
    \n
    \n','Macro/RandomThread',1,1,'WVtmpl0000000000000001',1147642426,'WebGUI::Asset::Template::HTMLTemplate',1,'

    RandomThread macro debug output:

    approve.url:
    assetId:
    assetSize:
    <tmpl_loop attachment_loop>:
    filename:
    icon:
    isImage:
    thumbnail:
    url:
    </tmpl_loop>
    attachment.icon:
    attachment.thumbnail:
    attachment.url:
    className:
    content:
    contentType:
    createdBy:
    creationDate:
    dateSubmitted:
    dateSubmitted.human:
    dateUpdated:
    dateUpdated.human:
    delete.url:
    deny.url:
    edit.url:
    encryptPage:
    endDate:
    extraHeadTags:
    groupIdEdit:
    groupIdView:
    hasRated:
    image.url
    image.thumbnail
    isHidden:
    isLocked:
    isLockedBy:
    isMarkedRead:
    isPackage:
    isPrototype:
    isSticky:
    isSystem:
    lastPostDate:
    lastPostId:
    lineage:
    menuTitle:
    newWindow:
    ownerUserId:
    parentId:
    rate.url.1:
    rate.url.2:
    rate.url.3:
    rate.url.4:
    rate.url.5:
    rating:
    rating.value:
    replies:
    reply.url:
    reply.withquote.url:
    revisedBy:
    revisionDate:
    startDate:
    state:
    stateChanged:
    stateChangedBy:
    status:
    storageId:
    subscriptionGroupId:
    synopsis:
    tagId:
    threadId:
    title:
    title.short:
    url:
    user.canEdit:
    user.isPoster:
    userDefined1:
    userDefined2:
    userDefined3:
    userDefined4:
    userDefined5:
    userId:
    userProfile.url:
    username:
    views:
    ',0,NULL,NULL),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n class=\"navOn\"
    class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n\n
    \n','Navigation',1,1,'stevenav00000000000001',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1,'

           class=\"navOn\" class=\"navOn\">  onclick=\"window.open(\'\')\" href=\"#\" href=\"\">  
    ',0,NULL,NULL),('\n

    \n
    \n \n\n

    \n
    \n \n\n \n \n \n       \n \n \n class=\"navOn\" class=\"navOn\">\n  \n \n onclick=\"window.open(\'\')\" href=\"#\" href=\"\">\n \n  \n \n \n \n','Navigation',1,1,'PBnav000000style01lvl2',1147642499,'WebGUI::Asset::Template::HTMLTemplate',1,'

           class=\"navOn\" class=\"navOn\">  onclick=\"window.open(\'\')\" href=\"#\" href=\"\">  ',0,NULL,NULL),('
    \n\n \n
    \n
    \n
    \n
    \n \n \n \n

    \">

    \n
    \n\n \n \">.\n \">\n \n \n \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000044',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \">\n \n\n \n \">.\n \">\n \n
    \n
    \n
    \n
    \n\n','Macro/L_loginBox',1,1,'PBtmpl0000000000000092',1148579524,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />\n','Macro/File',1,1,'PBtmpl0000000000000039',1154535073,'WebGUI::Asset::Template::HTMLTemplate',1,'\">\" style=\"border-style:none;vertical-align:middle;\" alt=\"\" />',0,NULL,NULL),('\n\n\n class=\"odd\">\n \n \n \n \n\n
    /\">\n \" />\n \n (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />\n
    \n','ProjectManager_resourceList',1,1,'ProjectManagerTMPL0006',1157679165,'WebGUI::Asset::Template::HTMLTemplate',1,'class=\"odd\">
    /\"> \" /> (\'\', \'\')\">/\" style=\"border-style:none;\" alt=\"\" title=\"\" />
    ',0,NULL,NULL),('\n\n
    \n \n \n
    px;top:px;\">♦
    \n
    \n
    px;top:px;width:px;background-color:\">\n
    %;\">
    \n \n
    \n
    \n \n
    px;top:3px;margin-top:-3px;\">
    \n
    \n
    \n
    \n
    \n \" id=\"projectTableWidth\">\n \" id=\"projectScrollPercentWidth\">\n px;z-index:1;\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"monthName\" style=\"height:20px;\">
    \" class=\"empty\" style=\"height:21px;\"> 
    \n
    \n
    \n\n','ProjectManager_gantt',1,1,'ProjectManagerTMPL0003',1159989349,'WebGUI::Asset::Template::HTMLTemplate',1,'
    px;top:px;\">♦
    px;top:px;width:px;background-color:\">
    %;\">
    px;top:3px;margin-top:-3px;\">
    \" id=\"projectTableWidth\"> \" id=\"projectScrollPercentWidth\"> px;z-index:1;\">
    \" class=\"monthName\" style=\"height:20px;\">
    \" class=\"empty\" style=\"height:21px;\"> 

    ',0,NULL,NULL),('

    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n\n\n\n','InOutBoard/Report',1,1,'IOB0000000000000000002',1166019641,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ',0,NULL,NULL),('\n\n \n

    \n
    \n
    \n\n\n
      \n
    • \n
    \n
    \n\n\n \">\n\n \n \n \n \n \n \n','ZipArchiveAsset',1,1,'ZipArchiveTMPL00000001',1169738426,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \"> ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n
    \n\n \n

    \n
    \n\n
    \n \n

    \n
    \n\n
    \n\n \">\n\n\n \n  · \n \n \">\n\n
    \n\n \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n class=\"odd\">\n \n \n \n

    \n \n \n\n','InOutBoard',1,1,'IOB0000000000000000001',1169795123,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">



    \">  ·  \">
    class=\"odd\"> class=\"odd\"> class=\"odd\"> class=\"odd\">

    ',0,NULL,NULL),('\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n','SQLReport/Download',1,1,'SQLReportDownload00001',1171466654,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \">
     
    \">
     
    \">
     
    \">
     
    ',0,NULL,NULL),('\n

    \n\n\n

    \n \">
    \n

    \n

    \n
    \n\n

    \n\n','newsletter',1,1,'newsletter000000000001',1185754569,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">

    ',0,NULL,NULL),('\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n

    \">

    \n\n\n\n\n','TimeTracking_user',1,1,'TimeTrackingTMPL000001',1201205738,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">

    ',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Month',1,1,'CalendarPrintMonth0001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
    © Plain Black 2006
    ',0,NULL,NULL),('
    \r\n   -   \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Week',1,1,'CalendarPrintWeek00001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
      -  
    © Plain Black 2006
    ',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    :00\r\n
      \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n
    \r\n © Plain Black 2006\r\n
    \r\n','Calendar/Print/Day',1,1,'CalendarPrintDay000001',1204890714,'WebGUI::Asset::Template::HTMLTemplate',1,'
    :00
    © Plain Black 2006
    ',0,NULL,NULL),('\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \" alt=\"\" />\r\n
    \r\n
     
    \r\n\r\n
    \r\n X\r\n
    \r\n
    \r\n
    \r\n
    °F
    \r\n

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\">\r\n
    \"The
    \r\n','WeatherData',1,1,'WeatherDataTmpl0000001',1210711353,'WebGUI::Asset::Template::HTMLTemplate',1,'\">

    \" alt=\"\" />
     
    X

    °F

    \">
    \"The
    ',0,NULL,NULL),('
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n
    ^International(location,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(description label,Asset_Event);
    \r\n
    \r\n
    \r\n
    \r\n
    ^International(scheduled,Asset_Event);
    \r\n
    \r\n
    \r\n ,\r\n \r\n \r\n : , \r\n \r\n \r\n : \r\n
    \r\n
    \r\n
    ^International(related material,Asset_Event);
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n','Calendar/Print/Event',1,1,'CalendarPrintEvent0001',1215396964,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(location,Asset_Event);
    ^International(description label,Asset_Event);
    ^International(scheduled,Asset_Event);
    ,: ,:
    ^International(related material,Asset_Event);
    ',0,NULL,NULL),('\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
     
    \r\n\r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n \r\n \">\r\n \r\n \r\n \r\n\r\n\r\n\r\n
    _div\" class=\"dragable uncommitted-asset\">\r\n \r\n\r\n
    \r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n
     
    \r\n \r\n
    \r\n','Layout',1,1,'PBtmpl0000000000000094',1220655703,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \r\n
    \r\n
    Add/Edit Task
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
      
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n :

    \r\n \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/users.gif\" />     \r\n \" href=\"\" target=\"_new\" onclick=\"taskEdit_searchPopup(this.href); return false;\">\" alt=\"\" src=\"/groups.gif\" /> \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    \n','ProjectManager_editTask',1,1,'ProjectManagerTMPL0004',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \r\n\r\n\r\npx;\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">\r\n
    \r\n \r\n
    \r\n
     
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n
     
     
    \r\n\r\n\r\n\r\n
    \n','ProjectManager_project',1,1,'ProjectManagerTMPL0002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1,'
    px;\">\">
     Task NameDurationStartFinishPred\" valign=\"top\" id=\"scrolltd\" style=\"border-style:none;width:%;\">
     
     
     
    ',0,NULL,NULL),('\n

    ^International(my subscriptions,Asset_Newsletter);

    \n\n\n

    ^International(newsletter categories,Asset_Newsletter);

    \n\n


    \n

    \n \n
    \n
    \n

    \n
    \n\n\n\n','newsletter/mysubscriptions',1,1,'newslettersubscrip0001',1221692339,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(my subscriptions,Asset_Newsletter);

    ^International(newsletter categories,Asset_Newsletter);



    ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • View

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n wgRowOnewgRowTwo\">\r\n \r\n \">\r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \n','Thingy/ViewThing',1,1,'ThingyTmpl000000000002',1222574693,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n \r\n
    \" class=\"yuimenubar\">\r\n
    \r\n
      \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\r\n \r\n
    \r\n
    \r\n
      \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n
  • \r\n \r\n\r\n\r\n\r\n','Navigation',1,1,'stevecoolmenu000000001',1224116942,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n\r\n \r\n
      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    wgRowOnewgRowTwo label\" valign=\"top\">\r\n \r\n \r\n \r\n \r\n \r\n \r\n wgRowOnewgRowTwo\" valign=\"top\" colspan=\"2\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n *\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n','Thingy/EditThing',1,1,'ThingyTmpl000000000003',1224518002,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n\r\n \r\n

    \r\n  :
    \r\n \r\n \" title=\"Link to profile\">
    \r\n
    \r\n

    \r\n
    \r\n
    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'h_T2xtOxGRQ9QJOR6ebLpQ',1224616545,'WebGUI::Asset::Template::HTMLTemplate',1,'

     :
     
     
     

     :
    \" title=\"Link to profile\">

    ',0,NULL,NULL),('
    \r\n

    \r\n  :
    \r\n  
    \r\n  
    \r\n  \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

    \r\n

    \r\n

    \r\n  :
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n

    \r\n

    \r\n
    \r\n\r\n','Macro/UsersOnline',1,1,'4Ekp0kJoJllRRRo_J1Rj6w',1224616672,'WebGUI::Asset::Template::HTMLTemplate',1,'

     :
     
     
     

     :
    \" alt=\"Avatar of \"/> \" title=\"Link to profile\">

     :

    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\">\r\n\r\n\r\n | \r\n\r\n
    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000001',1228125743,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \"> |





    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\'); \"> \"> \">
    ^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');
    ^International(\'No users message\',\'Asset_UserList\');

    · ·
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n:
    \r\n:
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000003',1228125758,'WebGUI::Asset::Template::HTMLTemplate',1,'



    :
    :


    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\'); \"> \"> \"> \">
    ^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');
    ^International(\'No users message\',\'Asset_UserList\');

    · ·
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n
    \r\n^International(\'search in label\',\'Asset_UserList\');
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\');\r\n\">\r\n\">\r\n\">
    \r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n\r\n\r\n\r\n\r\n^International(\'Field not public message\',\'Asset_UserList\');\r\n \r\n \r\n\r\n
    ^International(\'No users message\',\'Asset_UserList\');
    \r\n\r\n

    \r\n · · \r\n
    \r\n
    ','UserList',1,1,'UserListTmpl0000000002',1228125752,'WebGUI::Asset::Template::HTMLTemplate',1,'




    ^International(\'search in label\',\'Asset_UserList\');




    ^International(\'id label\',\'Asset_UserList\');^International(\'username label\',\'Asset_UserList\'); \"> \"> \">
    ^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');^International(\'Field not public message\',\'Asset_UserList\');
    ^International(\'No users message\',\'Asset_UserList\');

    · ·
    ',0,NULL,NULL),('

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    \r\n\r\n','Matrix/EditListing',1,1,'matrixtmpl000000000004',1228834590,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\'edit matrix listing title\',\'Asset_MatrixListing\');

    ',0,NULL,NULL),('\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n \n \n \n \n \n
     
    /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
     
    \n \n \n \" onclick=\"addRow();\" />   \" />\n
    \n
    \n\n\n\n \n \">\n \n \n \n \n \n \n \n \n
    /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
    \n
    ','TimeTracking_row',1,1,'TimeTrackingTMPL000003',1229311434,'WebGUI::Asset::Template::HTMLTemplate',1,'\">
     
    /delete.gif\" border=\"0\" onclick=\"removeRow(\'\')\" style=\"cursor:pointer\" alt=\"delete\" />
    \" class=\"PM_blueLink\"> ^International(last week,Asset_TimeTracking);\" class=\"PM_blueLink\">^International(next week,Asset_TimeTracking);
     
    \" onclick=\"addRow();\" />   \" />
    \">
    /delete.gif\" border=\"0\" onclick=\"removeRow()\" style=\"cursor:pointer\" alt=\"delete\" />
    ',0,NULL,NULL),('

    Calendar

    \r\n\r\n\r\n

    \r\n \r\n ^International(New Year,Asset_Calendar);,\r\n \r\n \r\n ^International(New Month,Asset_Calendar);,\r\n \r\n \r\n ^International(New Day,Asset_Calendar);\r\n \r\n

    \r\n\r\n

    \">

    \r\n \r\n

    \r\n\r\n
    \r\n\r\n\r\n \"><< ^International(previous page,Asset_Calendar);\r\n\r\n\r\n \">^International(next page,Asset_Calendar); >>\r\n','Calendar/Print/List',1,1,'uRL9qtk7Rb0YRJ41LmHOJw',1229311072,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Calendar

    ^International(New Year,Asset_Calendar);,^International(New Month,Asset_Calendar);,^International(New Day,Asset_Calendar);

    \">

    \"><< ^International(previous page,Asset_Calendar); \">^International(next page,Asset_Calendar); >> ',0,NULL,NULL),('
    \r\n\" id=\"id\">\r\n\r\n\r\n\r\n\r\n
    \r\n
    ^International(hide new content list,Asset_Dashboard);
    \r\n
    \r\n
    \r\n\r\n\r\n\">\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n
    \r\n\r\n
    Add New Content
    \r\n\r\n

    \r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n

    \r\n\r\n

    \r\n
    \r\n
    ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n \">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n\r\n\r\n\r\n\">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n\r\n\r\n\">\r\n\r\n
    _div\" class=\"dragable\">\r\n
    _div\">
    \r\n
    \r\n
    \r\n
     
    \r\n\r\n
    ','Dashboard',1,1,'DashboardViewTmpl00001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" id=\"id\">
    ^International(hide new content list,Asset_Dashboard);
    \">
    Add New Content

    ^L(\"17\",\"\",\"PBtmpl0000000000000092\"); ^AdminToggle(Modify the Default User\'s Perspective,Leave Default User Perspective (Admin Mode));
    \">
    \">
    \">
     
    ',0,NULL,NULL),('\n\n\n<tmpl_var title>\n\n\n/taskEdit.css\" />\n\n\n
    \">\n\" />\n\n\" />\n\" />\n
    \n
    \" size=\"20\" class=\"inputBox\" />\n\n
    \n\n

    \n

    \n','ProjectManager_resourcePopup',1,1,'ProjectManagerTMPL0005',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'<tmpl_var title>/taskEdit.css\" />
    \"> \" /> \" /> \" />

    \" size=\"20\" class=\"inputBox\" />

    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n
    \n
    \n\n\n\n\n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \"> \n
    \">
    \n \">\n \n
    \n
    %;\">
    \n
    %
    \n
    \n
    \n \n \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" /> \n \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />\n
    ','ProjectManager_dashboard',1,1,'ProjectManagerTMPL0001',1229579830,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \"> 
    \">
    \">
    %;\">
    %
    \">/edit.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(edit,Asset);\" />  \'));\">/delete.gif\" style=\"border-style:none;\" title=\"\" alt=\"^International(delete,Asset);\" />
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \n \n \n \n \n ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n\n\n\n\n\n \n \n \n \n \n ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);.\n \n','HttpProxy',1,1,'PBtmpl0000000000000033',1230159454,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ^International(Error: Search string,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);. ^International(Warning: Ending search point,Asset_HttpProxy); ^International(not found in content,Asset_HttpProxy);. ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n\n \">^International(Download this data,Asset_SQLReport);\n\n\n\n

      \n \n
    • \n
      \n
    \n
    \n\n\n\n\n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \">\n \n \n \n \n \n
     \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n \n
    \n
    ','SQLReport',1,1,'PBtmpl0000000000000059',1229907401,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \">^International(Download this data,Asset_SQLReport);

    \">
     
    \">
     
    \">
     
    \">
     
    ',0,NULL,NULL),('\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n

    \n
    \n\n\n \n \n\n\n \n \n\n
    ^International(364,WebGUI);:\n \n
    ^International(For,WebGUI);: 
    \n
    \n
    ','MultiSearch',1,1,'MultiSearchTmpl0000001',1230269962,'WebGUI::Asset::Template::HTMLTemplate',1,'\">

    ^International(364,WebGUI);:
    ^International(For,WebGUI);: 
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    ','Calendar/Day',1,1,'CalendarDay00000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(label day,Asset_Calendar); \">^International(label week,Asset_Calendar); \">^International(label month,Asset_Calendar); ?type=list\">^International(486,WebGUI); \">^International(label search,Asset_Calendar);
    , ,
    :00
    ',0,NULL,NULL),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n \">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n \r\n \r\n
    \r\n \r\n \r\n
    \r\n ^International(event details,Asset_Event);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(event title,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(location,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(description,Asset_Event);
    \r\n
    \r\n
    \r\n
    \r\n
    ^International(scheduled,Asset_Event);
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    ^International(related material,Asset_Event);
    \r\n
    \r\n \r\n
    \r\n
    ^International(attachments,Asset_Event);
    \r\n
    \r\n \"> \" />
    \r\n
    \r\n
    \r\n
    ','Calendar/Event',1,1,'CalendarEvent000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \">^International(label day,Asset_Calendar); \">^International(label week,Asset_Calendar); \">^International(label month,Asset_Calendar); \">^International(486,WebGUI); \">^International(label search,Asset_Calendar);
    ^International(event details,Asset_Event);
    ^International(event title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(scheduled,Asset_Event);
    ^International(related material,Asset_Event);
    ^International(attachments,Asset_Event);
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n ?type=day\">^International(label day,Asset_Calendar);\r\n ?type=week\">^International(label week,Asset_Calendar);\r\n ?type=month\">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Search',1,1,'CalendarSearch00000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ?type=day\">^International(label day,Asset_Calendar); ?type=week\">^International(label week,Asset_Calendar); ?type=month\">^International(label month,Asset_Calendar); ?type=list\">^International(486,WebGUI); \">^International(label search,Asset_Calendar);
     
    ^International(keyword,Asset_Calendar);
    ^International(start date,Asset_Calendar);
    ^International(end date,Asset_Calendar);
    ^International(search results,Asset_Calendar);^International(page x of x,Asset_Calendar,,);
    \" style=\"padding-left:10px\">
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n ?type=list\">^International(486,WebGUI);\r\n \">^International(label search,Asset_Calendar);\r\n\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n , to , \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    ','Calendar/Week',1,1,'CalendarWeek0000000001',1230358389,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(label day,Asset_Calendar); \">^International(label week,Asset_Calendar); \">^International(label month,Asset_Calendar); ?type=list\">^International(486,WebGUI); \">^International(label search,Asset_Calendar);
    , to ,
    curDay\">
    ',0,NULL,NULL),('\n\n\n\n\n/tools.css\" />\n\n\n\n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ()\n \n
    1:23 PM EDT
    \n \n
    \n
    \n
    \n
    \n \n \n \n \n \n \n
    \n &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />\n \n \n \n \n \n \n \n \n \n \n
    Today5d1m3m1y5y20y
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">\n /\' alt=\"\" /> \n
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    \n
    \n
    \n\n\n\n','StockData/Display',1,1,'StockDataTMPL000000002',1229494994,'WebGUI::Asset::Template::HTMLTemplate',1,'/tools.css\" />
    ()
    1:23 PM EDT
    &t=1d&q=l&l=off&z=s&p=s\" alt=\"chart\" />
    Today5d1m3m1y5y20y
    ^International(stocks.last,Asset_StockData);
    ^International(Market Cap,Asset_StockData);
    ^International(Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">/\' alt=\"\" />
    ^International(Open,Asset_StockData);
    ^International(Day High,Asset_StockData);
    ^International(stocks.bid,Asset_StockData);
    ^International(52 Wk High,Asset_StockData);
    ^International(EPS,Asset_StockData);
    ^International(stocks.ex_div,Asset_StockData);
    ^International(Yield,Asset_StockData);
    ^International(Last Trade,Asset_StockData);
    ^International(Volume,Asset_StockData); m
    ^International(% Change,Asset_StockData); _up_down\" style=\"text-align: right; font-weight: bold;\">%
    ^International(Prev Close,Asset_StockData);
    ^International(Day Low,Asset_StockData);
    ^International(stocks.ask,Asset_StockData);
    ^International(52 Wk Low,Asset_StockData);
    ^International(stocks.pe,Asset_StockData);
    ^International(Dividend,Asset_StockData);
    ^International(Exchange,Asset_StockData);
    ',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n \r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    ','DataTable',1,1,'TuYPpHx7TUyk08639Pc8Bg',1233861621,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">

    ',0,NULL,NULL),('
    \" class=\"dataTable\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n
    ','DataTable',1,1,'3rjnBVJRO6ZSkxlFkYh_ug',1233861835,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"dataTable\">

    ',0,NULL,NULL),('\n\n\n Screenshots\n \n\n\n\n\n
    \n\n \n \n &width=800&height=600\" />\n \n \n &width=800&height=600\" />\n \n \n \"Get\n \n \n \n \n \n
    \n \n \n\n\n','Matrix/Screenshots',1,1,'matrixtmpl000000000006',1236889702,'WebGUI::Asset::Template::HTMLTemplate',1,'Screenshots
    &width=800&height=600\" />&width=800&height=600\" /> \"Get
    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n \n
    \n
    \n\n\n
    \">\n
      \n \n
    1. \" style=\"width:px;\">\n \n
    2. \n
      \n
    \n
    \n\n \n\n
    \n\n
    ','Carousel',1,1,'CarouselTmpl0000000001',1254881103,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">
    1. \">
    ',0,NULL,NULL),('

    \" />
    ','ImageAsset',1,1,'NBVSVNLp9X_bV7WrCprtCA',1237842096,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />
    ',0,NULL,NULL),('
    \r\n \r\n

    \r\n
    \r\n\r\n \r\n

    • ^International(manage things label,Asset_Thingy);

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n\r\n \r\n
    \r\n \r\n
    rowOnerowTwo\">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    ','Thingy',1,1,'ThingyTmpl000000000001',1237914005,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n \r\n ','Carousel',1,1,'CarouselTmpl0000000002',1239475937,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('^International(inbox notification,Account_Inbox);','Account/Inbox/Notification',1,1,'b1316COmd9xRv4fCI3LLGA',1236956475,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox notification,Account_Inbox);',0,NULL,NULL),('
    \n\n\n
    \">
    \n
    \n\n
    ','Account/FriendManager/View',1,1,'64tqS80D53Z0JoAs2cX2VQ',1239400975,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \">
    ',0,NULL,NULL),('

    Friends for

    \n

    \">^International(back to friend manager,Account_FriendManager);

    \n\n\n
    \n

    ^International(remove friends,Account_FriendManager);

    \n\n\n\n\n\n\n\n\n\n\n\n
    ^International(remove all,Account_FriendManager);
    \n
    \n
    \n
    \n

    ^International(add new friends,Account_FriendManager);

    \n\n

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    \n
    \n\n\n

    ^International(Add Friend Managers,Account_FriendManager);:

    \n
    \n
    \n
    \n\n','Account/FriendManager/Edit',1,1,'lG2exkH9FeYvn4pA63idNg',1239383808,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Friends for

    \">^International(back to friend manager,Account_FriendManager);

    ^International(remove friends,Account_FriendManager);

    ^International(remove all,Account_FriendManager);

    ^International(add new friends,Account_FriendManager);

    ^International(group,WebGUI);: . \">^International(view users from all groups,Account_FriendManager);

    ^International(Add Friend Managers,Account_FriendManager);:

    ',0,NULL,NULL),('\r\n\r\n\r\n ?func=getScreenshots\r\n \r\n 400\r\n 300\r\n 0xDDDDEE\r\n 20\r\n 800\r\n 600 \r\n Verdana\r\n 12\r\n 0xFFFFFF\r\n\r\n 0x888888\r\n 0x000000\r\n true\r\n over \r\n 0\r\n\r\n 0xFFFFFF\r\n 0x888888\r\n 0x000000\r\n true\r\n\r\n 20\r\n 200\r\n\r\n 60\r\n 45\r\n 0x888888\r\n false\r\n true\r\n 100\r\n 8\r\n\r\n off \r\n false\r\n true\r\n false\r\n true\r\n \r\n \r\n\r\n rounded \r\n','Matrix/ScreenshotsConfig',1,1,'matrixtmpl000000000007',1242660972,'WebGUI::Asset::Template::HTMLTemplate',1,'?func=getScreenshots4003000xDDDDEE20800600 Verdana 120xFFFFFF0x8888880x000000trueover00xFFFFFF0x8888880x000000true2020060450x888888falsetrue1008offfalsetruefalsetruerounded',0,NULL,NULL),('\n','Calendar/List',1,1,'kj3b-X3i6zRKnhLb4ZiCLw',1243445504,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n
    \n \n
    \n
    \n
    ^International(Working...,WebGUI);
    \n
     
    \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n \"*\"\n
    \n
    ','AdminConsole/ProgressBar',1,1,'YP9WaMPJHvCJl-YwrLVcPw',1245376837,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(Working...,WebGUI);
     
    \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />
    \"*\"
    ',0,NULL,NULL),('\r\n \r\n

    \r\n
    \r\n
    \r\n\r\n
    \r\n \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\r\n \" /> \r\n \r\n
    ','FileAsset',1,1,'pbtmpl0000000000000220',1247488979,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" style=\"height:auto;min-height:100px;width:100%;display:block;\">\" />
    ',0,NULL,NULL),('\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n  \n
    \n \n \n \n \n \n
    \n  \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \" >
    \n
    \n \n
    \n
    \n \n
    \n \n \">
    \n
    \n
    \n
    \n
    \n \">
    \n ^AdminToggle;
    \n ^LoginToggle;
    \n
    \n
    \n
    \n \n
    \n
    \n \n \')\">\"?\"\n \n
    \n
    \n \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />\n
    \n
    \n\"*\"\n
    \n
    \n \" style=\"border-style:none;\" title=\"\" alt=\"\" />\n
    \n\n\n
    ','AdminConsole',1,1,'PBtmpl0000000000000001',1247535846,'WebGUI::Asset::Template::HTMLTemplate',1,'


    \">
    ^AdminToggle;
    ^LoginToggle;
    \" style=\"border-style:none;height:48px;width:48px;\" title=\"\" alt=\"\" />
    \"*\"
    \" style=\"border-style:none;\" title=\"\" alt=\"\" />
    ',0,NULL,NULL),('

    \r\n

    \r\n\r\n\" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />\r\n

    ','FileAsset',1,1,'pbtmpl0000000000000221',1247487940,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />\" quality=\"high\" width=\"800\" height=\"600\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />

    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n
    \n ^ViewCart(); (^CartItemCount;)\n
    \n\n \n
    \n
    \n \n\n \n
    \n ^International(subcategories,Asset_Shelf);: \n \n \n \">\n \n
    \n
    \n\n \n
    \n \n \n \" class=\"thumbnail\">\" alt=\"\" />\n \n \n
    \n \n ()\n
    \n \n
    \n \n
    \n
    \n
    \n \n \n \n \n
    \n ^International(this shelf is empty,Asset_Shelf);\n
    \n \n \n
    \n ^International(You do not have permission to view the products on this shelf,Asset_Shelf);\n
    \n
    \n
    \n
    \n
    ','Shelf',1,1,'nFen0xjkZn8WkpM93C9ceQ',1247864696,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^ViewCart(); (^CartItemCount;)
    ^International(subcategories,Asset_Shelf);: \">
    ',0,NULL,NULL),('
    \n\n\n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n \n
    \n ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);\n
    \n\n
    \n\n\n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    colspan=2 class=\"bar\">\n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    32\" class=\"bar\">
    greenredblue;\">
    \n
    \n );\" class=\"WGphotostyle\"/>
    \n
    \n
    \n \n
    \n );\'\"/>\n  \n );\'\"/>\n
    \n\n
    \n','Account/Profile/View',1,1,'2CS-BErrjMmESOtGT90qOg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'
    );\'\"/> );\'\"/>
    ^International(friends only,Account_Profile);^International(private profile,Account_Profile);^International(public profile,Account_Profile);

    ^International(error label,Account_Inbox);

    \">^International(back label,Account_Profile);

    colspan=2 class=\"bar\">
    ^International(member since,Account_Inbox); ^D(%z,);
    32\" class=\"bar\">
    greenredblue;\">
    );\" class=\"WGphotostyle\"/>
    );\'\"/> );\'\"/>
    ',1,NULL,NULL),('
    \n
    \n
    \n
    \n
    \n

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Profile);

    \n
    \n
    \n
    \n
    \n
    ','Account/Profile/Error',1,1,'MBmWlA_YEA2I6D29OMGtRg',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(error label,Account_Inbox);

    \">^International(back label,Account_Profile);

    ',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'gfZOwaTWYjbSoVaQtHBBEw',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \n\n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n

    \n disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\n \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n

    \n
    \n

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    \n
    \n
    \n \n\n
    \n\n
    \n','Account/Inbox/ViewMessage',1,1,'0n4HtbXaWa_XJHkFjetnLQ',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Inbox); ^D(%z,);

    disabled onclick=\"location.href=\'\'\"/> \'\" /> \'\" />\'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>


    ^International(subject label,Account_Inbox);:
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:^D(\"%z %Z\",);
    ^International(status label,Account_Inbox);:
    ',0,NULL,NULL),('

    ^International(error label,Account_Inbox);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n','Account/Inbox/Error',1,1,'ErEzulFiEKDkaCDVmxUavw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(error label,Account_Inbox);

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('

    ^International(message sent label,Account_Inbox);

    \n

    ^International(message sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/Confirm',1,1,'DUoxlTBXhVS-Zl3CFDpt9g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(message sent label,Account_Inbox);

    ^International(message sent text,Account_Inbox);

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(from label,Account_Inbox);\">^International(invitation label,Account_Inbox);\">^International(date label,Account_Inbox);
    \" class=\"WGinbox_from\">\">^International(invitation message,Account_Inbox,);
    ^International(no invitations,Account_Inbox);
    \n \n

    \n \n \n\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n \n \n \n

    \n\n

    \n ^International(invitation count,\'Account_Inbox\');\n

    \n\n
    \n
    \n','Account/Inbox/ManageInvitations',1,1,'1Q4Je3hKCJzeo0ZBB5YB8g',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('

    ^International(invitation confirm label,Account_Inbox);

    \n

    ^International(invitation confirm message,Account_Inbox);

    \n\n \n \n \n \n \n
    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);
    \n

    \">^International(invitations back label,Account_Inbox);

    \n','Account/Inbox/Confirm',1,1,'5A8Hd9zXvByTDy4x-H28qw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation confirm label,Account_Inbox);

    ^International(invitation confirm message,Account_Inbox);

    ^International(\'you have not been added\',\'Friends\',);^International(\'you have been added\',\'Friends\',);

    \">^International(invitations back label,Account_Inbox);

    ',0,NULL,NULL),('\n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n
    \n \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>\n
    \n \n

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    \n
    \n\n
    \n\n
    \n','Account/Inbox/ViewInvitation',1,1,'VBkY05f-E3WJS50WpdKd1Q',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Inbox); ^D(%z,);

    \'\" /> \'\" disabled/> >\" onclick=\"location.href=\'\'\" disabled/>

    ^International(from label,Account_Inbox);:
    ^International(received label,Account_Inbox);:
    ^D(\"%z %Z\",);
    ',0,NULL,NULL),('

    \n

    \n','Account/Inbox/InviteUserMessage',1,1,'XgcsoDrbC0duVla7N7JAdw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),(' \n
    \n \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n\n

    \n ^International(invite a friend,Account_Inbox);\n

    \n \n\n

    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
    \n   \n \'\" />\n
    \n\n
    \n
    \n','Account/Inbox/InviteUser',1,1,'cR0UFm7I1qUI2Wbpj--08Q',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Inbox); ^D(%z,);

    ^International(invite a friend,Account_Inbox);

    ^International(to label,Account_Inbox);:
    ^International(subject label,Account_Inbox);:
       \'\" />
    ',0,NULL,NULL),('

    ^International(invitation sent label,Account_Inbox);

    \n

    ^International(invitation sent text,Account_Inbox);

    \n

    \">^International(back label,Account_Inbox);

    ','Account/Inbox/InviteUserConfirm',1,1,'SVIhz68689hwUGgcDM-gWw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(invitation sent label,Account_Inbox);

    ^International(invitation sent text,Account_Inbox);

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');\n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'zrNpGbT3odfIkg6nFSUy8Q',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"WGprofile_displayView\">^International(\'friends as others label\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'edit my friends\',\'Account_Friends\');\" class=\"WGprofile_displayView\">^International(\'back label\',\'Account_Friends\');
    ',0,NULL,NULL),('\n
    \n\n\n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n
    class=\"bordered\">\n \n \n \n \n \n \n \n
    \">\"\"^Extras(account/images/no_photo.gif);\"/>\n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n','Account/Friends/View',1,1,'1Yn_zE_dSiNuaBGNLPbxtw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Friends); ^D(%z,);

    class=\"bordered\">
    \">\"\"^Extras(account/images/no_photo.gif);\"/> \">
    ^International(member since,Account_Friends); ^D(%z,);

    ',0,NULL,NULL),('
    \n\n
    \n\n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n\n
    \n\n
    \n\n

    \n \n \n \n

    \n \n \n \n

    \n\n \n \n \n \n \n \n
    class=\"WGbordered\" >\n \n \n \n \n \n \n \n \n
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \n \">
    \n \n ^International(member since,Account_Friends); ^D(%z,);
    \n ^User(homeCountry,);\n
    \n
    \n
    \n
    \n
    \n
    \n \n

    \n \n \n \n

    \n \n \n \n

    \n\n
    \n\n
    \n','Account/Friends/Edit',1,1,'AZFU33p0jpPJ-E6qLSWZng',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(member since,Account_Inbox); ^D(%z,);

    class=\"WGbordered\" >
    \">\"Friend^Extras(account/images/no_photo.gif);\"/>
    ^International(online,Friends);^International(offline,Friends);
    \">
    ^International(member since,Account_Friends); ^D(%z,);
    ^User(homeCountry,);

    ',0,NULL,NULL),('\n\n
    \n \n

    \n
    \n ^International(member since,Account_Friends); ^D(%z,);\n

    \n \n

    ^International(add to network label,Account_Friends);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    \n\n
    \n\n','Account/Friends/SendRequest',1,1,'AGJBGviWGAwjnwziiPjvDg',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Friends); ^D(%z,);

    ^International(add to network label,Account_Friends);

    ^International(adding user message,Account_Friends,);
    ^International(sending to message,Account_Friends);
    ',0,NULL,NULL),('

    \n

    ^International(error label,Account_Friends);

    \n

    \n

    \">^International(back label,Account_Inbox);

    \n

    \n','Account/Friends/Error',1,1,'7Ijdd8SW32lVgg2H8R-Aqw',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(error label,Account_Friends);

    \">^International(back label,Account_Inbox);

    ',0,NULL,NULL),('

    \n

    ^International(message sent label,Account_Friends);

    \n

    ^International(add to friends confirmation,Account_Friends,);

    \n

    \">^International(back to user profile,Account_Friends);

    \n

    ','Account/Friends/Confirm',1,1,'K8F0j_cq_jgo8dvWY_26Ag',1248549086,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(message sent label,Account_Friends);

    ^International(add to friends confirmation,Account_Friends,);

    \">^International(back to user profile,Account_Friends);

    ',0,NULL,NULL),('

    \n

    ^International(remove confirm label,Account_Friends);

    \n

    ^International(remove confirm message,Account_Friends,);

    \n

    \n \">^International(remove confirm no,Account_Friends); · \n \">^International(remove confirm yes,Account_Friends);\n

    \n

    ','Account/Friends/Confirm',1,1,'G5V6neXIDiFXN05oL-U3AQ',1248549087,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(remove confirm label,Account_Friends);

    ^International(remove confirm message,Account_Friends,);

    \">^International(remove confirm no,Account_Friends); ·  \">^International(remove confirm yes,Account_Friends);

    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'9ThW278DWLV0-Svf68ljFQ',1249407460,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \n
    \n

    \n ^International(Payout Totals,Account_Shop);\n

    \n \n \n \n \n \n \n
    ^International(Paid,Account_Shop); :
    ^International(Scheduled for payment,Account_Shop); :
    ^International(Not yet scheduled,Account_Shop); : \n
    ^International(total,Shop); :
    \n \n

    ^International(my sales label,Account_Shop);

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    ^International(Product,Account_Shop);^International(quantity,Shop);^International(Payout,Account_Shop);
    \">
    ^International(no contributions,Account_Contributions);
    \n \n

    ^International(my sales label,Account_Shop); :: ^International(Products,Account_Shop);

    \n
    \n
    ','Shop/MySales',1,1,'-zxyB-O50W8YnL39Ouoc4Q',1248563425,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Payout Totals

    Paid :
    Scheduled for payment :
    Not yet scheduled :
    Total :

    Sales

    WGoddThreadWGevenThread\">
    ProductQuantityPayout
    \">
    ^International(no contributions,Account_Contributions);

    Sales :: Products

    ',0,NULL,NULL),('\n\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    ','Account/Layout',1,1,'b4n3VyUIsAHyIvT-W-jziA',1249407461,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \n \" id=\"id\">\n\n \n
    \n
    \n\n \n

    \n
    \n\n \n \n
    \n \n

    \n ^ViewCart();
    \n \">^International(continue shopping button,Shop);\n \n ^ViewCart(); (^CartItemCount;)\n

    \n \n \n \n \n \n \n \n \n \n\n \n \n \n
      \n ^International(variants,Asset_Product);\n \n
    • \n
      \n
    \n \n \n \n
    \n
    \n \n \n \n \n \n
      \n ^International(30,Asset_Product);\n \n
    • \n
      \n
    \n
    \n \n \n
      \n ^International(54,Asset_Product);\n \n
    • \n
      \n
    \n
    \n\n \n
      \n ^International(31,Asset_Product);\n \n
    • :
    • \n
      \n
    \n
    \n \n \n
      \n ^International(32,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n \n \n
      \n ^International(33,Asset_Product);\n \n
    • \">
    • \n
      \n
    \n
    \n
    \n \n
    \n
    \n\n','Product',1,1,'PBtmpl0000000000000056',1248729559,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" id=\"id\">

    ^ViewCart();
    \">^International(continue shopping button,Shop); ^ViewCart(); (^CartItemCount;)

      ^International(variants,Asset_Product);
      ^International(30,Asset_Product);
      ^International(54,Asset_Product);
      ^International(31,Asset_Product);
    • :
      ^International(32,Asset_Product);
    • \">
      ^International(33,Asset_Product);
    • \">
    ',0,NULL,NULL),('\n\n\n\n \">^International(Return to Matrix,Asset_Matrix);\n\n\n','Navigation',1,1,'alraubvBu-YJJ614jAHD5w',1250147475,'WebGUI::Asset::Template::HTMLTemplate',1,' \">Return to Matrix ',0,NULL,NULL),('^International(inbox sms notification,Account_Inbox);','Account/Inbox/Notification',1,1,'i9-G00ALhJOr0gMh-vHbKA',1250408924,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(inbox sms notification,Account_Inbox);',0,NULL,NULL),('\n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    ^International(\'comparison label\',\'Asset_Matrix\');
    \n
    \n \n \n \n \n \n \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n','Matrix/Compare',1,1,'matrixtmpl000000000002',1251054814,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(\'comparison label\',\'Asset_Matrix\');



    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n

    ^International(\"form manage title\",\"Asset_AdSku\");

    \n

    \'>^International(\"form purchase link\",\"Asset_AdSku\");

    \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    \n\n^ViewCart(); (^CartItemCount;)','AdSku/Manage',1,1,'ohjyzab5i-yW6GOWTeDUHg',1251425384,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ^International(\"form manage title\",\"Asset_AdSku\");

    \'>^International(\"form purchase link\",\"Asset_AdSku\");



    ^International(\"form manage table header title\",\"Asset_AdSku\");^International(\"form manage table header clicks\",\"Asset_AdSku\");^International(\"form manage table header impressions\",\"Asset_AdSku\");^International(\"form manage table header renew\",\"Asset_AdSku\");
    \">^International(\"form manage table value renew\",\"Asset_AdSku\");
    ^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n
    \n\n

    ^International(form added to cart thanks,Asset_AdSku);

    \n\n

    \n

    \n

    \">^International(form manage link,Asset_AdSku);

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum clicks,Asset_AdSku,);
    ^International(form purchase number of impressions,Asset_AdSku);^International(form purchase per click,Asset_AdSku, );\n
    \n
    ^International(minimum impressions,Asset_AdSku,);
    \n \n
    \n^ViewCart(); (^CartItemCount;)','AdSku/Purchase',1,1,'AldPGu0u-jm_5xK13atCSQ',1251419124,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ^International(form added to cart thanks,Asset_AdSku);

    \">^International(form manage link,Asset_AdSku);

    ^International(form purchase ad title,Asset_AdSku);
    ^International(form purchase ad link,Asset_AdSku);
    ^International(form purchase ad image,Asset_AdSku);
    ^International(form purchase number of clicks,Asset_AdSku); ^International(form purchase per click,Asset_AdSku, );
    ^International(form purchase number of impressions,Asset_AdSku); ^International(form purchase per click,Asset_AdSku, );
    ^ViewCart(); (^CartItemCount;)',0,NULL,NULL),('

    \n\n\n\n
    \n
    \n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \" style=\"display:none;\">\n \n \n \n \n
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');
    \n \n

    \n
    \n
    \n \n
    \n \');\">^International(\'show responses label\',\'Asset_Survey\');\n
    \n
    \" style=\"display:none;\">\n \n

    \n \n
    \n
    \n
    \n
    \n
    \n


    \n
    \n\n\n
    \n · · \n
    \n
    \n','Survey/Overview',1,1,'PBtmpl0000000000000063',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'



    \" style=\"display:none;\">
    ^International(\'answer label\',\'Asset_Survey\');^International(\'response count label\',\'Asset_Survey\');^International(\'response percent label\',\'Asset_Survey\');
    \');\">^International(\'show comments label\',\'Asset_Survey\');


    \');\">^International(\'show responses label\',\'Asset_Survey\');
    \" style=\"display:none;\">




    · ·
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    \r\n\r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Survey/Gradebook',1,1,'PBtmpl0000000000000062',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ^International(\'user label\',\'Asset_Survey\');^International(\'start date\',\'Asset_Survey\');^International(\'end date\',\'Asset_Survey\');^International(\'score label\',\'Asset_Survey\');^International(\'percentage label\',\'Asset_Survey\');
    \">/%
    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n

    \n\n\n

    \n\n\n','Survey',1,1,'PBtmpl0000000000000061',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ',0,NULL,NULL),('
    \n
    \n
    \n
    \n\n\n
    \n

    \n^International(\'restart message\',\'Asset_Survey\');\n

    \n
    \n
    \n\n\n
    \n out of \n
    \n
    \n\n
    \n minutes left\n
    \n
    \n
    \n\n
    \n\n\n
    \n

    required\'>

    \n\n \n\n \n\n \n \n\n\n \n \n \n \n \n \' id=\'\' size=\'50\' />\n \n \n verbatim\' >\n \n \n \n \n\n \n \n \' value=\'\'>\n \n \n\n \n \n \n \n \n \" id=\"\">
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n
    \n
    \n \n verbatim\'>\n \n \n
    \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n \n \n \n \n verbatim\' name=\'verbatim\'>\n
    \n \n \n \n
    \n button\" value=\"\">\n \n \n button\">\n \n \" id=\"\" value=\"\">\n \n verbatim\' name=\'verbatim\'>\n \n
    \n
    \n\n \n \n \n \' id=\'\'>\n \n \n ^International(\'year\', \'Asset_Survey\');\n -year\' id=\'-year\' type=text size=4>\n ^International(\'month\', \'Asset_Survey\');\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \' id=\'\' type=text>\n button\'>\n
    container\'>
    \n \n
    \n
    \n
    \n\n \n \n\n \n \' name=\'\' value=0>\n \n \n \' name=\'\' value=\"\">\n \n\n \n

    \n
    \n \n show\'>0\n \n \n \n show\'>\n \n
    0  \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n \n
    slider-min-thumb\' class=slider-min-thumb>\n \n
    \n \n
    slider-max-thumb\' class=slider-max-thumb>\n \n
    \n
    \n \n \n
    \n \n
    \n\n \n\n \n \n \n\n \n

    \n
    \n | \' name=\'\'> | \n \n
      \n
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>\n
    slider-thumb\' class=slider-thumb>\n \n
    \n
    \n
    \n
    \n \n\n \n \n \n \n\n \n \n

    Comment:

    \n
    \n\n\n
    \n
    \n
    \n \n \n \n ^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">\n
    \n
    \n\n
    \n\n
    \n\n\n\n\n\n\n','Survey/Take',1,1,'CxMpE_UPauZA3p8jdrOABw',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\'restart message\',\'Asset_Survey\');

    out of
    minutes left

    required\'>

    \' id=\'\' size=\'50\' /> verbatim\'> \' value=\'\'> \" id=\"\">
    verbatim\'>

    verbatim\'>
    button\" value=\"\"> button\"> \" id=\"\" value=\"\"> verbatim\' name=\'verbatim\'>
    button\" value=\"\"> button\"> \" id=\"\" value=\"\">verbatim\' name=\'verbatim\'>
    \' id=\'\'>^International(\'year\', \'Asset_Survey\'); -year\' id=\'-year\' type=text size=4>^International(\'month\', \'Asset_Survey\');
    container\'>
    \' id=\'\' type=text> button\'>verbatim\'> \' name=\'\' value=0> \' name=\'\' value=\"\">

    show\'>0show\'>
    0  
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>
    slider-min-thumb\' class=slider-min-thumb>
    slider-max-thumb\' class=slider-max-thumb>

    \' name=\'\'> | 
      
    slider-bg\' tabindex=\'-1\' title=\'Slider\' class=slider-bg>
    slider-thumb\' class=slider-thumb>

    Comment:


    ^International(\'finish\', \'Asset_Survey\');^International(\'continue\', \'Asset_Survey\');\">
    ',0,NULL,NULL),('
    \n
    ^International(\'please enter section information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n
    \n\n

    \n

    ^International(\'section number\',\'Asset_Survey\');\n
    ^International(\'section number description\',\'Asset_Survey\');
    \n
    \n

    \n \n

    \n

    ^International(\'section name\',\'Asset_Survey\');\n
    ^International(\'section name description\',\'Asset_Survey\');
    \n
    \n \' type=text>\n

    \n \n

    \n

    ^International(\'section custom variable name\',\'Asset_Survey\');\n
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n \n
    \n \n

    \n

    ^International(\'randomize questions\',\'Asset_Survey\');\n
    ^International(\'randomize questions description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n

    \n

    ^International(\'questions per page\',\'Asset_Survey\');\n
    ^International(\'questions per page description\',\'Asset_Survey\');
    \n
    \n \n

    \n

    \n

    ^International(\'questions on section page\',\'Asset_Survey\');\n
    ^International(\'questions on section page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n \n

    \n

    ^International(\'title on every page\',\'Asset_Survey\');\n
    ^International(\'title on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'text on every page\',\'Asset_Survey\');\n
    ^International(\'text on every page description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section\',\'Asset_Survey\');\n
    ^International(\'terminal section description\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n

    \n

    ^International(\'terminal section url\',\'Asset_Survey\');\n
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \n
    \n \'>\n

    \n\n

    \n

    ^International(\'logical section\',\'Asset_Survey\');\n
    ^International(\'logical section help\',\'Asset_Survey\');
    \n
    \n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n ^International(\'yes\',\'Asset_Survey\');\n ^International(\'no\',\'Asset_Survey\');\n \n

    \n \n
    \n \n

    \n

    ^International(\'section text\',\'Asset_Survey\');\n
    ^International(\'section text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    ','Survey/Edit',1,1,'1oBRscNIcFOI-pETrCOspA',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(\'please enter section information\',\'Asset_Survey\');
    \'>

    ^International(\'section number\',\'Asset_Survey\');
    ^International(\'section number description\',\'Asset_Survey\');

    ^International(\'section name\',\'Asset_Survey\');
    ^International(\'section name description\',\'Asset_Survey\');
    \' type=text>

    ^International(\'section custom variable name\',\'Asset_Survey\');
    ^International(\'section custom variable name description\',\'Asset_Survey\');
    \' name=\'variable\' size=\'2\'>

    ^International(\'questions per page\',\'Asset_Survey\');
    ^International(\'questions per page description\',\'Asset_Survey\');

    ^International(\'jump to\',\'Asset_Survey\');
    ^International(\'jump to description\',\'Asset_Survey\');
    \">

    ^International(\'jump expression\',\'Asset_Survey\');
    ^International(\'jump expression description\',\'Asset_Survey\');

    ^International(\'randomize questions\',\'Asset_Survey\');
    ^International(\'randomize questions description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'questions on section page\',\'Asset_Survey\');
    ^International(\'questions on section page description\',\'Asset_Survey\');
    ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\'); ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\');

    ^International(\'title on every page\',\'Asset_Survey\');
    ^International(\'title on every page description\',\'Asset_Survey\');
    ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\'); ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\');

    ^International(\'text on every page\',\'Asset_Survey\');
    ^International(\'text on every page description\',\'Asset_Survey\');
    ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\'); ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\');

    ^International(\'terminal section\',\'Asset_Survey\');
    ^International(\'terminal section description\',\'Asset_Survey\');
    ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\'); ^International(\'yes\',\'Asset_Survey\'); ^International(\'no\',\'Asset_Survey\');

    ^International(\'terminal section url\',\'Asset_Survey\');
    ^International(\'terminal section url description\',\'Asset_Survey\');
    \'>

    ^International(\'section text\',\'Asset_Survey\');
    ^International(\'section text description\',\'Asset_Survey\');

    ',0,NULL,NULL),('
    \n
    ^International(\'please enter question information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'question number\',\'Asset_Survey\');\n
    ^International(\'question number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question variable name\',\'Asset_Survey\');\n
    ^International(\'question variable name description\',\'Asset_Survey\');
    \n
    \n \' name=\'variable\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'question type\',\'Asset_Survey\');\n
    ^International(\'question type description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'question score\',\'Asset_Survey\');\n
    ^International(\'question score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'required label\',\'Asset_Survey\');\n
    ^International(\'required description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'randomize answers\',\'Asset_Survey\');\n
    ^International(\'randomize answers description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n

    \n

    ^International(\'vertical display\',\'Asset_Survey\');\n
    ^International(\'vertical display description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n\n\n
    \n\n

    \n

    ^International(\'show text in button\',\'Asset_Survey\');\n
    ^International(\'show text in button description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'allow comment\',\'Asset_Survey\');\n
    ^International(\'allow comment description\',\'Asset_Survey\');
    \n
    \n checked >^International(\'yes\',\'Asset_Survey\');\n checked >^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'comment cols\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentCols\'>\n

    \n \n

    \n

    ^International(\'comment rows\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'commentRows\'> \n

    \n \n

    \n

    ^International(\'maximum number of answers\',\'Asset_Survey\');\n
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \n
    \n \' name=\'maxAnswers\' size=\'2\'>\n

    \n\n\n
    \n\n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n\n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n\n \n
    \n \n

    \n

    ^International(\'question text\',\'Asset_Survey\');\n
    ^International(\'question text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n
    \n
    \n
    \n','Survey/Edit',1,1,'wAc4azJViVTpo-2NYOXWvg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(\'please enter question information\',\'Asset_Survey\');
    \'>

    ^International(\'question number\',\'Asset_Survey\');
    ^International(\'question number description\',\'Asset_Survey\');

    ^International(\'question variable name\',\'Asset_Survey\');
    ^International(\'question variable name description\',\'Asset_Survey\');
    \' name=\'variable\' size=\'2\'>

    ^International(\'question type\',\'Asset_Survey\');
    ^International(\'question type description\',\'Asset_Survey\');

    ^International(\'question score\',\'Asset_Survey\');
    ^International(\'question score description\',\'Asset_Survey\');
    \' name=\'value\'>

    ^International(\'jump to\',\'Asset_Survey\');
    ^International(\'jump to description\',\'Asset_Survey\');
    \">

    ^International(\'jump expression\',\'Asset_Survey\');
    ^International(\'jump expression description\',\'Asset_Survey\');

    ^International(\'required label\',\'Asset_Survey\');
    ^International(\'required description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'randomize answers\',\'Asset_Survey\');
    ^International(\'randomize answers description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'vertical display\',\'Asset_Survey\');
    ^International(\'vertical display description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'show text in button\',\'Asset_Survey\');
    ^International(\'show text in button description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'allow comment\',\'Asset_Survey\');
    ^International(\'allow comment description\',\'Asset_Survey\');
    checked >^International(\'yes\',\'Asset_Survey\'); checked >^International(\'no\',\'Asset_Survey\');

    ^International(\'comment cols\',\'Asset_Survey\');
    ^International(\'cols description\',\'Asset_Survey\');
    \' name=\'commentCols\'>

    ^International(\'comment rows\',\'Asset_Survey\');
    ^International(\'rows description\',\'Asset_Survey\');
    \' name=\'commentRows\'>

    ^International(\'maximum number of answers\',\'Asset_Survey\');
    ^International(\'maximum number of answers description\',\'Asset_Survey\');
    \' name=\'maxAnswers\' size=\'2\'>

    ^International(\'question text\',\'Asset_Survey\');
    ^International(\'question text description\',\'Asset_Survey\');

    ',0,NULL,NULL),('
    \n
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \n
    \n
    \n \'>\n \n \n \n \n \n
    \n \n

    \n

    ^International(\'answer number\',\'Asset_Survey\');\n
    ^International(\'answer number description\',\'Asset_Survey\');
    \n
    \n \n

    \n \n

    \n

    ^International(\'recorded answer\',\'Asset_Survey\');\n
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \n
    \n \' name=\'recordedAnswer\'>\n

    \n \n

    \n

    ^International(\'answer score\',\'Asset_Survey\');\n
    ^International(\'answer score description\',\'Asset_Survey\');
    \n
    \n \' name=\'value\'>\n

    \n \n

    \n

    ^International(\'verbatim label\',\'Asset_Survey\');\n
    ^International(\'verbatim description\',\'Asset_Survey\');
    \n
    \n ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\');\n ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    ^International(\'min label\',\'Asset_Survey\');\n
    ^International(\'min description\',\'Asset_Survey\');
    \n
    \n \' name=\'min\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'max label\',\'Asset_Survey\');\n
    ^International(\'max description\',\'Asset_Survey\');
    \n
    \n \' name=\'max\' size=\'2\'>\n

    \n \n

    \n

    ^International(\'step label\',\'Asset_Survey\');\n
    ^International(\'step description\',\'Asset_Survey\');
    \n
    \n \' name=\'step\' size=\'2\'>\n

    \n\n
    \n \n \n

    \n

    ^International(\'textCols label\',\'Asset_Survey\');\n
    ^International(\'cols description\',\'Asset_Survey\');
    \n
    \n \' name=\'textCols\'>\n

    \n \n

    \n

    ^International(\'textRows label\',\'Asset_Survey\');\n
    ^International(\'rows description\',\'Asset_Survey\');
    \n
    \n \' name=\'textRows\'>\n

    \n \n

    \n

    ^International(\'is this the correct answer\',\'Asset_Survey\');\n
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    \n
    \n checked>^International(\'yes\',\'Asset_Survey\');\n checked>^International(\'no\',\'Asset_Survey\');\n

    \n \n

    \n

    \n
    ^International(\'jump to\',\'Asset_Survey\');\n
    ^International(\'jump to description\',\'Asset_Survey\');
    \n
    \n
    \n \">\n
    \n
    \n
    \n

    \n \n

    \n

    ^International(\'jump expression\',\'Asset_Survey\');\n
    ^International(\'jump expression description\',\'Asset_Survey\');
    \n
    \n
    \n \n
    \n

    \n \n
    \n \n

    \n

    ^International(\'answer text\',\'Asset_Survey\');\n
    ^International(\'answer text description\',\'Asset_Survey\');
    \n
    \n

    \n
    \n \n
    \n \n
    \n
    \n
    \n','Survey/Edit',1,1,'AjhlNO3wZvN5k4i4qioWcg',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(\'please enter answer information\',\'Asset_Survey\');
    \'>

    ^International(\'answer number\',\'Asset_Survey\');
    ^International(\'answer number description\',\'Asset_Survey\');

    ^International(\'recorded answer\',\'Asset_Survey\');
    ^International(\'recorded answer description\',\'Asset_Survey\');
    \' name=\'recordedAnswer\'>

    ^International(\'answer score\',\'Asset_Survey\');
    ^International(\'answer score description\',\'Asset_Survey\');
    \' name=\'value\'>

    ^International(\'verbatim label\',\'Asset_Survey\');
    ^International(\'verbatim description\',\'Asset_Survey\');
    ^International(\'checked\',\'Asset_Survey\');>^International(\'yes\',\'Asset_Survey\'); ^International(\'checked\',\'Asset_Survey\');>^International(\'no\',\'Asset_Survey\');

    ^International(\'min label\',\'Asset_Survey\');
    ^International(\'min description\',\'Asset_Survey\');
    \' name=\'min\' size=\'2\'>

    ^International(\'max label\',\'Asset_Survey\');
    ^International(\'max description\',\'Asset_Survey\');
    \' name=\'max\' size=\'2\'>

    ^International(\'step label\',\'Asset_Survey\');
    ^International(\'step description\',\'Asset_Survey\');
    \' name=\'step\' size=\'2\'>

    ^International(\'text answer\',\'Asset_Survey\'); ^International(\'comment cols\',\'Asset_Survey\');
    ^International(\'cols description\',\'Asset_Survey\');
    \' name=\'textCols\'>

    ^International(\'text answer\',\'Asset_Survey\'); ^International(\'comment rows\',\'Asset_Survey\');
    ^International(\'rows description\',\'Asset_Survey\');
    \' name=\'textRows\'>

    ^International(\'is this the correct answer\',\'Asset_Survey\');
    ^International(\'is this the correct answer description\',\'Asset_Survey\');
    checked>^International(\'yes\',\'Asset_Survey\'); checked>^International(\'no\',\'Asset_Survey\');

    ^International(\'jump to\',\'Asset_Survey\');
    ^International(\'jump to description\',\'Asset_Survey\');
    \">

    ^International(\'jump expression\',\'Asset_Survey\');
    ^International(\'jump expression description\',\'Asset_Survey\');

    ^International(\'answer text\',\'Asset_Survey\');
    ^International(\'answer text description\',\'Asset_Survey\');

    ',0,NULL,NULL),('Dear ,\r\n\r\nYour responses for the Survey have expired and have been deleted. \r\n\r\nSincerely,\r\n\r\n','ExpireIncompleteSurveyResponses',1,1,'ExpireIncResptmpl00001',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'Dear , Your responses for the Survey have expired and have been deleted. Sincerely,',0,NULL,NULL),('
    \r\n \r\n

    \r\n Survey Summary Total Sections: Total Questions: Total Answers: \r\n

    \r\n

    \r\n Total Correct: Total Incorrect: \r\n

    \r\n

    \r\n

    \r\n

    \r\n \r\n
    \r\n
    \r\n Section: Correct: Incorrect: \r\n chart\'>\r\n
    \r\n
    datatable\'>
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n','Survey/Summary',1,1,'7F-BuEHi7t9bPi008H8xZQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Survey Summary Total Sections: Total Questions: Total Answers:

    Total Correct: Total Incorrect:


    Section: Correct: Incorrect: chart\'>
    datatable\'>
    ',0,NULL,NULL),('\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n

    Tests=, Passed=, Failed=,

    \n \n \n \n \n \n \n \n failpass \">\n \n \n \n \n \n \n \n \n \n
    ^International(\'test name\', \'Asset_Survey\');^International(\'tests run\', \'Asset_Survey\');^International(\'tests passed\', \'Asset_Survey\');^International(\'tests failed\', \'Asset_Survey\');^International(\'test result\', \'Asset_Survey\');
    ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');\">^International(\'575\', \'WebGUI\');\">^International(\'run test\', \'Asset_Survey\');
    \n\n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    all_passed
    get_status
    failed
    parse_errors
    passed
    skipped
    todo
    todo_passed
    wait
    exit
    total
    has_problems
    has_errors
    \n\n\n\n

    failpass\">^International(\'test results\', \'Asset_Survey\'); - \n ^International(\'fail\', \'Asset_Survey\');^International(\'pass\', \'Asset_Survey\');

    \n \n \n \n passfail \">\n \n \n
    \n
    \n \n

    ^International(\'details\', \'Asset_Survey\');

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    \n\n
    ','Survey/TestResults',1,1,'S3zpVitAmhy58CAioH359Q',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'

    failpass\">Test Results - FAILPASS

    passfail \">

    Summary Details

    passed
    failed
    actual_passed
    actual_failed
    todo
    todo_passed
    skipped
    plan
    tests_planned
    tests_run
    skip_all
    has_problems
    exit
    wait
    ',0,NULL,NULL),('
    \n\n \n ^International(\'response complete\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response restart\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout\', \'Asset_Survey\'); on \n \n\n \n ^International(\'response timeout restart\', \'Asset_Survey\'); on \n \n\n
    \n\n','Survey/Feedback',1,1,'nWNVoMLrMo059mDRmfOp9g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ^International(\'completed\', \'Asset_Survey\'); Response completed on ^International(\'timedOut\', \'Asset_Survey\'); This response was terminated early on because it timed out.^International(\'restarted\' \'Asset_Survey\'); This response was terminated early on because the Survey was restarted.
    ',0,NULL,NULL),('\n\n\n
    \n \n \n

    \n
    \n \n

    \n \n \n [\n ^AssetProxy(new-matrix/matrix-nav);\n blockblockblock\">\n \n • \">^International(\'edit label\',\'Asset_MatrixListing\');\n \n \n • \">^International(\'approve or deny label\',\'Asset_Matrix\');\n \n \n ]\n \n

    \n \n
    \n \n \n \n
    \n
    \n \n
    \n
    \n ^International(\'description label\',\'Asset_MatrixListing\');\n \n
    \n \n \n \n
    \n
      \n
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'version label\',\'Asset_MatrixListing\'); 
    • \n
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\"> 
    • \n
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • \n
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • \n
    • ^International(\'views label\',\'Asset_Matrix\');
    • \n
    • ^International(\'compares label\',\'Asset_Matrix\');
    • \n
    \n
    \n \n
    \n
    \n
    \n
    \n ^International(Comments,WebGUI);\n \n ^International(Send Creator a Message,Asset_MatrixListing);\n
    \n \n
    ^International(\'message sent message\',\'Asset_MatrixListing\');
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    ','Matrix/Detail',1,1,'matrixtmpl000000000003',1252087641,'WebGUI::Asset::Template::HTMLTemplate',1,'

    [ ^AssetProxy(new-matrix/matrix-nav);blockblockblock\">\">^International(\'edit label\',\'Asset_MatrixListing\'); \">^International(\'approve or deny label\',\'Asset_Matrix\'); ]

    ^International(\'description label\',\'Asset_MatrixListing\');
    • ^International(\'web site label\',\'Asset_MatrixListing\');\')\" href=\"#\">
    • ^International(\'version label\',\'Asset_MatrixListing\');
    • ^International(\'manufacturer label\',\'Asset_MatrixListing\');\')\" href=\"#\">
    • ^International(\'last updated label\',\'Asset_MatrixListing\');
    • ^International(\'clicks label\',\'Asset_Matrix\');
    • ^International(\'views label\',\'Asset_Matrix\');
    • ^International(\'compares label\',\'Asset_Matrix\');

    Comments Send Creator a Message
    ^International(\'message sent message\',\'Asset_MatrixListing\');


    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n |\n \n \n \">^International(my subscriptions,Asset_Newsletter);\n |\n \n \">\n

    \n\n

    \n\n\n

    \">
    \n

    \n\n\n\n
    \n \n
    \n
    \n','Collaboration',1,1,'newslettercs0000000001',1252682678,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> | \">^International(my subscriptions,Asset_Newsletter); | \">

    \">

    ',0,NULL,NULL),('
    \n
    \n\n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n \n \n \n
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);
    \n \n

    \n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n

    ^International(contribution count,\'Account_Contributions\');

    \n
    \n
    ','Account/Contrib/View',1,1,'1IzRpX0tgW7iuCfaU2Kk0A',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Inbox); ^D(%z,);

    \" class=\"prevNext\">\"Previous\" \">  \" class=\"prevNext\">\"Next\"

    WGoddThreadWGevenThread\">
    \">^International(title label,Account_Contributions);\">^International(type label,Account_Contributions);\">^International(date label,Account_Contributions);
    \">^D(,);
    ^International(no contributions,Account_Contributions);

    \" class=\"prevNext\">\"Previous\" \">  \" class=\"prevNext\">\"Next\"

    ^International(contribution count,\'Account_Contributions\');

    ',0,NULL,NULL),('','StoryArchive/KeywordList',1,1,'0EAJ9EYb9ap2XwfrcXfdLQ',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\">^International(continue shopping button,Shop);
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n
    (add $)
    Hide?
    \r\n\r\n\r\n\r\n
    \r\n','ThingyRecord/View',1,1,'TKmhv8boP3TD2xwSwUBq0g',1250243000,'WebGUI::Asset::Template::HTMLTemplate',1,'


    \">^International(continue shopping button,Shop);
    (add $)
    Hide?
    ',0,NULL,NULL),('\n
    \">\n
    \n\n
    \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    \n\n \n

    \n
    \n \n \n \n \n \n \n
    *
    \n \n \n
    \n\n
    \n
    \n
    ','Account/Profile/Edit',1,1,'75CmQgpcCSkdsL-oawdn3Q',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \">

    ^International(member since,Account_Inbox); ^D(%z,);

    *
    ',0,NULL,NULL),('
    \n

    \n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n\n
    \n
    \n\n >\n >\n\n
    ','Survey/Take',1,1,'d8jMMMRddSQ7twP4l1ZSIw',1253555614,'WebGUI::Asset::Template::HTMLTemplate',1,'

    >
    ',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'N716tpSna0iIQTKxS4gTWA',1253652848,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('\" id=\"id\">\n

    \n
    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n


    \n\n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n

    ^International(by,Asset_Collaboration);

    \n


    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n

      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n \n \n\n

    \n

    ^International(keywords,Asset); \">

    \n
    ','Story',1,1,'3QpYtHrq_jmAk1FNutQM5A',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> >


    ^International(last updated,Asset); ^International(ago,Asset_Story);

    ^International(by,Asset_Collaboration);

    \">\" alt=\"\" title=\"\" />^International(Source,Asset_Story);:

    1. \">\" alt=\"\" title=\"\" />^International(Source,Asset_Story);:

    ^International(keywords,Asset); \">

    ',0,NULL,NULL),('
    \" class=\"storyArchive\">\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n
    \n\n\n\n
      \n

      ^D(%c %D %y,);

      \n \n
    • \"> ^D(%Z,);
    • \n
      \n
    \n\n\n
      \n
    • \n\n class=\"active\">\n \">\n \n\n
    • \n
    \n
    \n\n\n
    ','StoryArchive',1,1,'yxD5ka7XHebPLD-LXBwJqw',1253635396,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \" class=\"editStory\">\n
    \n\n\n\n
    \n \n
    \n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n\n\n \n \n\n\n
    \n\n\n\n\n \n\n\n \n \n\n\n\n \n \n\n \n \n\n \n \n\n\n \n \n\n \n \n\n \n \n\n\n \n \n\n\n
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />
    \n
    \n\n
    \n \n
    \n\n\n
    \n\n\n
    \n','Story/Edit',1,1,'E3tzZjzhmYoNlAyP2VW33Q',1253635296,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"editStory\">
    ^International(photo,WebGUI);
    \">\" alt=\"\" style=\"border-style:none;vertical-align:middle;\" />
    ',0,NULL,NULL),('
    \" class=\"viewStoryTopic\">\n\" id=\"id\">\n

    \n

    \n\n\n\n\n\">\n\n>\n\n

    \n

    \n

    \n

    ^International(last updated,Asset); ^International(ago,Asset_Story);

    \n
    \n
    \n\n \n \n \n
    \n \">\" alt=\"\" title=\"\" />

    \n ^International(Source,Asset_Story);: \n \n \n
      \n \n
    1. style=\"width:px;\">\n
      \n \">\" alt=\"\" title=\"\" />
      \n ^International(Source,Asset_Story);: \n
    2. \n
      \n
    \n \n
    \n \n\n
    \n

    ^International(by,Asset_Collaboration);

    \n \n \n
    \n

    ^International(keywords,Asset); \">

    \n
    \n','Story',1,1,'TbDcVLbbznPi0I0rxQf2CQ',1253636379,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"viewStoryTopic\"> \" id=\"id\">

    \"> >

    ^International(last updated,Asset); ^International(ago,Asset_Story);


    \">\" alt=\"\" title=\"\" />

    ^International(Source,Asset_Story);:

    1. \">\" alt=\"\" title=\"\" />
      ^International(Source,Asset_Story);:

    ^International(by,Asset_Collaboration);

    ^International(keywords,Asset); \">

    ',0,NULL,NULL),(' ^International(new post,AssetAspect_Subscribable);\n\n\n\n\n','AssetAspect/Subscribable',1,1,'limMkk80fMB3fqNZVf162w',1253507213,'WebGUI::Asset::Template::HTMLTemplate',1,' ^International(new post,AssetAspect_Subscribable);',0,NULL,NULL),('\n\n\n
    \n\" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');\n
    \n
    \n
    \n \n
    \n \n \n
    \n
    \n \n
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);
    \n
    \n
    \n
    \n
    \n
    \n','Account/Layout',1,1,'FJbUTvZ2nUTn65LpW6gjsA',1256092369,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"WGprofile_displayView\">^International(\'back to profile label\',\'Account_Profile\');
    WGsubContentWGprofile_displaySubContent\">
    * -  ^International(\'required field\',Account_Profile);
    † - ^International(\'set by admin\',Account_Profile);

    ',0,NULL,NULL),('\n\n\n\n','EMS/LookupRegistrant',1,1,'OOyMH33plAy6oCj_QWrxtg',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n , \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintBadge',1,1,'PsFn7dJt4wMwBa8hiE3hOA',1257311886,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ,
    ',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n\r\n\r\n','EMS/PrintTicket',1,1,'yBwydfooiLvhEFawJb0VTQ',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'
    :
    /
    :
    ',0,NULL,NULL),('\n

    \n

    \n

    ^International(badge holder information,Asset_EventManagementSystem);

    \n\n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
    \n\n\n','EMSBadge',1,1,'PBEmsBadgeTemplate0000',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(badge holder information,Asset_EventManagementSystem);

    ^International(name,Shop);
    ^International(organization,Asset_EventManagementSystem);
    ^International(address,Shop);
     
     
    ^International(city,Shop);
    ^International(state,Shop);
    ^International(code,Shop);
    ^International(country,Shop);
    ^International(phone number,Shop);
    ^International(email address,Asset_EventManagementSystem);
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n
    \n
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n','EMS/Schedule',1,1,'S2_LsvVa95OSqc66ITAoig',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(schedule back link,Asset_EventManagementSystem); ',0,NULL,NULL),('\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n
    \r\n : \r\n
    \r\n
    \r\n \r\n / \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n','EMS/PrintRemainingTickets',1,1,'hreA_bgxiTX-EzWCSZCZJw',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'
    :
    /
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n','Map/View',1,1,'9j0_Z1j3Jd0QBbY2akb6qw',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\" id=\"id\">\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n\n
    • \n\n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n\n\n \n \n \n\n\n \n \n \n \n\n\n
    \n \n \n *\n \n \n \n \n \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n\n\n','DataForm',1,1,'PBtmpl0000000000000020',1257311887,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \">\"> \"> \">\">
    *
    ^International(template captcha label,Asset_DataForm);
    ',0,NULL,NULL),('

    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
    :
    \r\n
    \r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
    :
    \r\n
    \r\n
    ','DataForm',1,1,'PBtmpl0000000000000085',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'

    :

    :
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n
    \n \n
    \n\n\n\n\n \n \n\n\n
    \n

    \n\" class=\"backLabel\">\n\n\n','DataForm',1,1,'PBtmpl0000000000000104',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \" class=\"backLabel\">',0,NULL,NULL),('\">\n\n

    \n

    \n\n\n

    \n • \">\n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n\n\n\n \n \n \n\n\n\n\n\n \n \n \n \n \n \n \n\n\n
    ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
    \">
    ','DataForm/List',1,1,'PBtmpl0000000000000021',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\">

    \"> \" onclick=\"\"> \">\">
    ^International(Entry ID,Asset_DataForm);^International(Submission Date,Asset_DataForm);
    \">
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n
    \n \n
    \n
    \n\n\n
    \n \">\n • \">\n \n • \">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n
    \n \n )\" id=\"tab\" class=\"tab\">\n \n \n \n \n \n \n \n
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n^International(template captcha label,Asset_DataForm);
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000116',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \">\"> \"> \">\">
    )\" id=\"tab\" class=\"tab\">
    *

    ^International(template captcha label,Asset_DataForm);
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n

    \n\n\n\n

    \n \">\n • \">\n \n • \" onclick=\"\">\n \n \n • \" onclick=\"\">\n \n \n • \">\n • \">\n \n
    \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n *\n \n \n \n \n \n \n \n
    \n \n
    \n
    ^International(template captcha label,Asset_DataForm);
    \n
    \n\n\n\n','DataForm',1,1,'PBtmpl0000000000000141',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    *
    ^International(template captcha label,Asset_DataForm);

    ',0,NULL,NULL),('
    \r\n

    \r\n\r\n\r\n
    \r\n
    \r\n
    ','Shop/selectGateway',1,1,'2GxjjkRuRkdUg_PccRPjpA',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ',0,NULL,NULL),('\r\n \">\r\n\r\n\">\r\n','Macro/PickLanguage',1,1,'_aE16Rr1-bXBf8SIaLZjCg',1257311888,'WebGUI::Asset::Template::HTMLTemplate',1,' \"> \">',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(\"title\"); - WebGUI\r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar;\r\n
    \r\n\r\n ^AssetProxy(flexmenu);\r\n\r\n
    \r\n \r\n\r\n
      \r\n
    • ^H;
    • \r\n
    • ^a(^@;);
    • \r\n
    • ^LoginToggle;
    • \r\n ^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );\r\n
    \r\n\r\n \r\n
    \r\n\r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',0,1,'PBtmpl0000000000000060',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'^Page(\"title\"); - WebGUI^AdminBar;
    ^AssetProxy(flexmenu);
    • ^H;
    • ^a(^@;);
    • ^LoginToggle;
    • ^GroupText(Turn Admin On,
    • ^AdminToggle;
    • );
    ',0,NULL,NULL),('\n\n\n^Page(title); - <tmpl_var session.setting.companyName>\n\n\n\n\n\n\n\n^AdminBar(\"\");\n\n
    \"plainblack\"
    \n\n
    \n \n
    \n\n
    © 2001-2004 Plain Black LLC
    \n\n\n\n','style',1,1,'PBtmpl0000000000000111',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'^Page(title); - <tmpl_var session.setting.companyName>^AdminBar(\"\");
    \"plainblack\"
    © 2001-2004 Plain Black LLC
    ',0,NULL,NULL),('\r\n\r\n\r\n WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);\r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n','style',1,0,'PBtmpl0000000000000137',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'WebGUI <tmpl_var session.webgui.version>-<tmpl_var session.webgui.status> ^International(admin console,AdminConsole);',0,NULL,NULL),('','style',0,0,'PBtmpl0000000000000132',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(title); - ^c();\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n\r\n \r\n\r\n ^AdminToggle();\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'PBtmplBlankStyle000001',1258524916,'WebGUI::Asset::Template::HTMLTemplate',1,'^Page(title); - ^c();^AdminBar();^AdminToggle();',0,NULL,NULL),('
    \" class=\"nav dropMenu\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n

    \n\n

    \n
    \n\n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000117',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav dropMenu\"> \" id=\"id\">

    ',0,NULL,NULL),('
    \" class=\"nav synopsisMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n
    current\">\">
    \n
    \">
    \n
    \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000136',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav synopsisMenu\"> \" id=\"id\">

    current\">\">
    \">
    ',0,NULL,NULL),('
    \" class=\"nav crumbTrail\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n \"> >\n \n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000093',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav crumbTrail\"> \" id=\"id\">

    \"> >
    ',0,NULL,NULL),('
    \" class=\"syndicated articles\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','SyndicatedContent',1,1,'GNvjCFQWjY2AF2uf0aCM8Q',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \" class=\"layout oneovertwo\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'-PkdI8l1idu-8gDX3iOdcw',1259133274,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneovertwo\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"article withImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \" alt=\"\" />\n \n
    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000103',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withImage\"> \" id=\"id\">

    \" alt=\"\" />
    ',0,NULL,NULL),('
    \" class=\"file\">\n\" id=\"id\">\n\n\n \n\n\n\" alt=\"\" class=\"wg-icon\" />\n\">\n\n\n
    \n','FileAsset',1,1,'PBtmpl0000000000000024',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file\"> \" id=\"id\"> \" alt=\"\" class=\"wg-icon\" /> \">
    ',0,NULL,NULL),('
    \" class=\"article withPagination\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n \n
    \n

    \">

    \n \n
    \n
    \n
    \n
    \n\n\n
    \n\n\n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n
    \n\n
    \n\n\n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n\n
    \n','Article',1,1,'XdlKhCDvArs40uqBhvzR3w',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article withPagination\"> \" id=\"id\">

    • \" alt=\"\" class=\"wg-icon\" /> \">
    • class=\"active\"> \">
    ',0,NULL,NULL),('
    \" class=\"navigation indentMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n \n\n \n \"\n class=\"level current ancestor\"\n onclick=\"window.open(this.href);return false;\">\n \n\n\n\n
    \n','Navigation',1,1,'PBnav00000000indentnav',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \" class=\"nav tabsMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n class=\"current\" class=\"ancestor\">\n \">\n \n \n
    \n
    \n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000124',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav tabsMenu\"> \" id=\"id\">

      class=\"current\" class=\"ancestor\"> \">
    ',0,NULL,NULL),('
    \" class=\"layout rightcolumn\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n \n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000131',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout rightcolumn\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"nav topNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n\n \n
    \n
    \n
      \n \n \n
    \n
    \n
    \n \n
    \n
  • onclick=\"window.open(this.href); return false;\" href=\"\">\n \n
    \n
    \n
      \n \n \n \n \n \n \n
    \n \n
  • \n
    \n\n\n\n\n\n','Navigation',1,1,'PBtmpl0000000000000134',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \" class=\"image\">\n\" id=\"id\">\n\n\n
    \n
    \n\n\" />\n\n\n
    ','ImageAsset',1,1,'PBtmpl0000000000000088',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"image\"> \" id=\"id\">
    \" />
    ',0,NULL,NULL),('
    \" class=\"folder\">\n\n\" id=\"id\">\n\n\n \n\n \n\n

    \n
    \n \n\n
    \n \n\n
    \n
    \n \n\n

    \">

    \n
    \n\n \n\n \n\n \n \n\n\n\n\n \n\n\n \n \n \n \n\n\n\n
    \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n
    \n \n \n \n \n \n \n \" class=\"wg-icon\" alt=\"\" />\n \">\n \n \" class=\"wg-icon\" alt=\"\" />\n \n \n \n \n \n ^D(\"%z %Z\",);\n \n \n
    \n\n\n
    \n','Folder',1,1,'PBtmpl0000000000000078',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"folder\"> \" id=\"id\">

    \">

    \" class=\"wg-icon\" alt=\"\" /> \"> \" class=\"wg-icon\" alt=\"\" />
    \" class=\"wg-icon\" alt=\"\" /> \"> \" class=\"wg-icon\" alt=\"\" />^D(\"%z %Z\",);
    ',0,NULL,NULL),('
    \" class=\"poll\">\n\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n

    \n\n\n \n
    \n \n
    \n
    \n
    \n
    \n \n
    \n \n\n \n \" alt=\"graph\" />\n \n \n
    \n \n \n \n \n \n
    \" class=\"pollColor\">^Spacer(1,1); % ()
    \n
    \n

    :

    \n
    \n
    \n
    \n\n\n
    \n','Poll',1,1,'PBtmpl0000000000000055',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"poll\"> \" id=\"id\">


    \" alt=\"graph\" />
    \" class=\"pollColor\">^Spacer(1,1); % ()

    :

    ',0,NULL,NULL),('
    \" class=\"syndicated default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n

    \">

    \n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n \n
    • \n \">\n - \n
    • \n
      \n
    \n
    \n\n\n
    \n','SyndicatedContent',1,1,'PBtmpl0000000000000065',1259133275,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"syndicated default\"> \" id=\"id\">

    \">

    ',0,NULL,NULL),('
    \" class=\"layout default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000054',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout default\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"nav horizontalMenu\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n\n\n\n
    \n','Navigation',1,1,'PBtmpl0000000000000108',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav horizontalMenu\"> \" id=\"id\">

    ',0,NULL,NULL),('
    \" class=\"article linkedImage\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \">\" alt=\"\" />\n \n \" class=\"caption\">\n \n \n \" alt=\"\" />\n \n
    \n \n
    \n\n\n
    \n \n
    \n \n
    \n\n
    \n\n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000115',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article linkedImage\"> \" id=\"id\">

    ',0,NULL,NULL),('
    \" class=\"layout oneoverthree\">\n \n \" id=\"id\">\n\n \n \n \n\n \n

    \n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n \n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n \n \n \n \n \n\n \n \n \">\n \n \n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
    \n
     
    \n
    \n \n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000109',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout oneoverthree\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"layout threeColumns\">\n\n \" id=\"id\">\n\n \n \n \n\n \n

    \n
    \n\n \n
    \n \n \n
    \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n \n
    \n\n \n \n \n \n\n \n \n \">\n \n \n\n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n\n \n \n\n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n \n \n \n \n \n
     
    \n \n
    \n\n\n
    \n\n','Layout',1,1,'VCFhB9WOsDsH2Apj3c6DpQ',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout threeColumns\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"article default\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n
    \n\n\n
    \n \n \n
    \n
    \n\n\n \n
    \n

    \">

    \n \n
    \n
    \n
    \n\n\n
    \n\n\n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000002',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article default\"> \" id=\"id\">

    • \" alt=\"\" class=\"wg-icon\" /> \">
    ',0,NULL,NULL),('
    \" class=\"article item\">\n\n \" id=\"id\">\n\n \n \n \n \n

    \n \n \n \">\n \n \n \n \n \n \n

    \n \n \n
    \n \n
    \n \n
    \n \n \n
    \n
      \n \n
    • \n \" alt=\"\" class=\"wg-icon\" />\n \">\n
    • \n
      \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n','Article',1,1,'PBtmpl0000000000000123',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"article item\"> \" id=\"id\">

    \">

    • \" alt=\"\" class=\"wg-icon\" /> \">
    ',0,NULL,NULL),('
    \" class=\"search\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n
    \n
    \n \n \" size=\"30\" maxlength=\"255\" />\n \n
    \n
    \n\n\n \n
    \n ^International(\'resultsFeedback\',Asset_Search); \n ^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search); \n \n
    \n \n

    \n
    \n\n
    \n \n
    );\">
    \n
    \n
    \n
    \n\n \n
      \n
    • \n \n class=\"active\">\n \">\n \n \n
    • \n
    \n
    \n\n
    \n\n\n
    \n','Search',1,1,'PBtmpl0000000000000200',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"search\"> \" id=\"id\">

    \" size=\"30\" maxlength=\"255\" />
    ^International(\'resultsFeedback\',Asset_Search); ^International(\'page\',Asset_Search); ^International(\'of\',Asset_Search);

    );\">
    • class=\"active\"> \">
    ',0,NULL,'[{\"url\":\"/webgui.css\",\"type\":\"stylesheet\"}]'),('
    \" class=\"layout sidebyside\">\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n\n
    \n\n \n \n \n \n \n \n \n \">\n \n \n \n \n \n \n \n
    \n
    _div\" class=\"dragable uncommitted-asset\">\n \n \n \n \n \n \n
    \n
    \n
    \n\n \n
    \n\n
    \n\n\n \n \n \n \n
    \n
     
    \n
    \n\n
    \n\n\n
    \n','Layout',1,1,'PBtmpl0000000000000135',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"layout sidebyside\"> \" id=\"id\">

    \">
    _div\" class=\"dragable uncommitted-asset\">
    \">
    _div\" class=\"dragable uncommitted-asset\">
     
    ',0,NULL,NULL),('
    \" class=\"nav bulletedList\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
      \n\n\n\n
    \n \n\n\n class=\"current\" class=\"ancestor\"
    >\n onclick=\"window.open(this.href);return false;\" href=\"\">\n\n\n
      \">\n\n \n\n\n\n \n
    \n \n \n
    \n\n\n\n\n\n\n
    \n','Navigation',1,1,'PBnav00000000000bullet',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav bulletedList\"> \" id=\"id\">

    class=\"current\" class=\"ancestor\"
    > onclick=\"window.open(this.href);return false;\" href=\"\">
      \">
    ',0,NULL,NULL),('
    \" class=\"file swfobject\">\n\" id=\"id\">\n\n\n \n\n\n
    \n\n \" />\n \n \" width=\"400\" height=\"300\">\n \n \n \"Get\n \n \n \n \n\n
    \n\n\n
    \n','FileAsset',1,1,'MK4fCNoyrx5SE8eyDfOpxg',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"file swfobject\"> \" id=\"id\">
    \" />\" width=\"400\" height=\"300\"> \"Get
    ',0,NULL,NULL),('
    \" class=\"nav treeNav\">\n\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n
    \n \n \n
    \n
    \n\n\n
    \">\n
      \n\n\n \n
    \n \n \n\n class=\"expanded\" class=\"expanded\">\n \">\n\n \n
      \">\n \n \n \n\n \n \n
    \n \n \n
    \n\n\n\n
    \n\n\n\n
    \n\n\n
    \n\n','Navigation',1,1,'PBtmpl0000000000000130',1259133276,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"nav treeNav\"> \" id=\"id\">

    \">
    class=\"current\" class=\"ancestor\"> \">
      \">
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n','EMS',1,1,'2rC4ErZ3c77OJzJm7O5s3w',1260934195,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \r\n \">^International(add a ticket,Asset_EventManagementSystem);\r\n •\r\n \">^International(meta fields,Asset_EventManagementSystem);\r\n •\r\n \">^International(import,Asset_EventManagementSystem);\r\n •\r\n \">^International(export,Asset_EventManagementSystem);\r\n •\r\n \">^International(print remaining tickets,Asset_EventManagementSystem);\r\n

    \r\n
    \r\n


    \r\n

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n \r\n
    \r\n\r\n

    \">^International(add a ribbon,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
    \r\n\r\n

    \">^International(add a token,Asset_EventManagementSystem);

    \r\n
    \r\n

    \r\n
    \r\n\r\n\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^ViewCart;\r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n\r\n \r\n\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','EMS/BadgeBuilder',1,1,'BMybD3cEnmXVk2wQ_qEsRQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(add a ticket,Asset_EventManagementSystem);\">^International(meta fields,Asset_EventManagementSystem);\">^International(import,Asset_EventManagementSystem);\">^International(export,Asset_EventManagementSystem);\">^International(print remaining tickets,Asset_EventManagementSystem);


    \">^International(add a ribbon,Asset_EventManagementSystem);

    \">^International(add a token,Asset_EventManagementSystem);

    ^ViewCart;
    ',0,NULL,NULL),('

    \" />','ImageAsset',1,1,'mRtqRuVikSe82BQsYBlD0A',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" />',0,NULL,NULL),('
    \" class=\"storyTopic\">\n\" id=\"id\">\n

    \n\n

    \n
    \n

    \">^International(rss,WebGUI); •\n\">Atom

    \n\n\n
    \n

    \">

    \n

    \n
    \n
    \n\n ','StoryTopic',1,1,'A16v-YjWAShXWvSACsraeg',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" class=\"storyTopic\"> \" id=\"id\">

    \">^International(rss,WebGUI);\">Atom

    ',0,NULL,NULL),('\n\n
    \n','Account/Layout',1,1,'aUDsJ-vB9RgP-AYvPOy8FQ',1263962529,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \r\n\r\n\r\n\r\n

    ^International(errors,Asset_Event);

    \r\n
      \r\n\r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n ^International(tab event,Asset_Event);\r\n ^International(recurrence,Asset_Event);\r\n \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \'>\r\n \r\n \r\n \r\n \r\n \r\n\r\n
    \r\n\r\n
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\r\n \' value=\'\'>\r\n \' value=\"\">\r\n
    \'>\r\n\' name=\'\' value=\'\'>\r\n\' name=\'rel_delconfirm_\' value=\'0\'>\r\n
    \r\n
    \r\n
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);\r\n

    ^International(start,Asset_Event);:

    \r\n

    \r\n

    ^International(end,Asset_Event);:

    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n','Calendar/EventEdit',1,1,'CalendarEventEdit00001',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(errors,Asset_Event);

    ^International(tab event,Asset_Event); ^International(recurrence,Asset_Event);
    ^International(event title,Asset_Event);
    ^International(short title,Asset_Event);
    ^International(location,Asset_Event);
    ^International(description,Asset_Event);
    ^International(start date,Asset_Event);
    ^International(end date,Asset_Event);
    ^International(time,Asset_Event);
     
    ^International(related material,Asset_Event);\'>
    \' type=\'button\' name=\'\' value=\'DEL\' onClick=\"return delete_link(\'\',\'\');\">\' value=\'\'>\' value=\"\">
    \'> \' name=\'\' value=\'\'> \' name=\'rel_delconfirm_\' value=\'0\'>
    ^International(group to view,Asset_Event);
    ^International(attachments for event,Asset_Event);
    ^International(recurrence pattern,Asset_Event);
    ^International(recurrence range,Asset_Event);

    ^International(start,Asset_Event);:


    ^International(end,Asset_Event);:

    ',0,NULL,NULL),('

    \r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    ','Auth/LDAP/Account',1,1,'PBtmpl0000000000000004',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'



    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n
      \n \n
    • \">
    • \n
      \n\n
    \n
    ','Auth/LDAP/Login',1,1,'PBtmpl0000000000000006',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('

    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
    \r\n\r\n\r\n
    \r\n \r\n
    \r\n','Auth/WebGUI/Account',1,1,'PBtmpl0000000000000010',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('^International(\'50\',\'WebGUI\');: \r\n^International(\'51\',\'WebGUI\');: \r\n\r\n','Auth/WebGUI/Welcome',1,1,'PBtmpl0000000000000015',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'50\',\'WebGUI\');: ^International(\'51\',\'WebGUI\');: ',0,NULL,NULL),('^International(\'email address validation email body\',\'AuthWebGUI\');\r\n\r\n','Auth/WebGUI/Activation',1,1,'PBtmpl0000000000000016',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'^International(\'email address validation email body\',\'AuthWebGUI\');',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n \n \n \n
    \n \n \n \n
    \n \n \n \n
    \n \n
    \n','Auth/WebGUI/Expired',1,1,'PBtmpl0000000000000012',1269401468,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('

    \n \n

    \n\n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
    \n\n\n
    \n \n
    ','Auth/WebGUI/Login',1,1,'PBtmpl0000000000000013',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n \n \n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Recovery2',1,1,'PBtmpl0000000000000014',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/WebGUI/Deactivate',1,1,'zaHUYsE_PgKk8hnVd8ffEQ',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('

    \r\n\r\n

    \r\n\r\n

    \r\n\r\n
    \r\n\r\n\">\r\n\r\n         \r\n\r\n\">\r\n\r\n
    \r\n','Auth/LDAP/Deactivate',1,1,'_P4PMiraGsLTfOjK4fYQPQ',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \n

    \n\n

    \n
    \n\">\n         \n\">\n
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n\n\n
    \n \n
    \n
    \n\n\n\n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n
    \n
    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    \n
    \n
    \n
    \n
    \n\n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n
    \n \n
    \n
    \n \n ^International(\'add new listing text\',\'Asset_Matrix\');\n \n ^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');\n \n
    \n \n \n
    \n \n
    \n
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    \n \n
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \">
    \n \n
    ^International(\'best rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \n \n \n \n \n \n \n \n
    \"> (/10)
    \n \n
    ^International(\'site statistics label\',\'Asset_Matrix\');
    \n \n \n \n \n \n
    ^International(\'listing count label\',\'Asset_Matrix\');
    \n \n\n \n
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \n \n \n \n \n \n \n \n \n
    \">
    \n
    \n
    \n\n
    \n\n
    \n
    \n
    \n\n','Matrix',1,1,'matrixtmpl000000000001',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \" enctype=\"multipart/form-data\" method=\"post\" name=\"doCompare\">

    checkedassetIdtitleviewsclickscompareslastUpdatedurl

    ^International(\'add new listing text\',\'Asset_Matrix\');^International(\'create account part1 text\',\'Asset_Matrix\'); ^International(\'create account part2 text\',\'Asset_Matrix\');
    ^International(\'listing statistics label\',\'Asset_Matrix\');
    ^International(\'most clicks label\',\'Asset_Matrix\');\"> ()
    ^International(\'most views label\',\'Asset_Matrix\');\"> ()
    ^International(\'most compares label\',\'Asset_Matrix\');\"> ()
    ^International(\'most recently updated label\',\'Asset_Matrix\');
    \">
    ^International(\'best rated label\',\'Asset_Matrix\');
    \"> (/10)
    ^International(\'worst rated label\',\'Asset_Matrix\');
    \"> (/10)
    ^International(\'site statistics label\',\'Asset_Matrix\');
    ^International(\'listing count label\',\'Asset_Matrix\');
    ^International(\'pending listings label\',\'Asset_Matrix\');:
    \">
    ',0,NULL,NULL),('\n \n WebGUI ^International(assetName,Asset_Survey);\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n
    \n
    \n
    \n
    \n ^International(Loading...,WebGUI);\n
    \n
    \n
    \n\n\n \" id=\"id\">\n \n \n \n
    \n

    ^International(warnings,Asset_Survey);

    \n
    \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n','Survey/Edit',1,1,'GRUNFctldUgop-qRLuo_DA',1269401469,'WebGUI::Asset::Template::HTMLTemplate',1,'WebGUI ^International(assetName,Asset_Survey);
    Loading...
    \" id=\"id\">

    ^International(warnings,Asset_Survey);

    ',0,NULL,NULL),('
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ','MapPoint/Edit',1,1,'oHh0UqAJeY7u2n--WD-BAA',1271820952,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('
    \n
    \n
    \n
    \n,\n\n


    \n
    \n\">
    \n^International(phone label,Asset_MapPoint);:
    \n^International(fax label,Asset_MapPoint);:
    \n\">
    \n);\" />','MapPoint/View',1,1,'u9vfx33XDk5la1-QC5FK7g',1271820953,'WebGUI::Asset::Template::HTMLTemplate',1,'



    ,



    \">
    Phone:
    Fax:
    \">
    );\" />',0,NULL,NULL),('
    \n\n
    \n\n\n\n\n \n\n\n \n\n\n \n \n \n \n \n \n\n\nalt\">\n \n \n \n \n \n \n\n\n\n \n\n\n \n\n\n \n\n\n\n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n\n\n \n \n\n\n \n \n \n\n\n \n\n\n \n \n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n\n\n \n \n \n\n\n \n \n \n \n \n\n\n \n\n\n\n \n \n\n\n \n\n\n\n
     
    ^International(remove button,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);
    \n \n \n
    \n \n \n ^International(not applicable,Shop);\n
    \n
    \n
     
     
      
    ^International(Billing Address,Shop); ^International(Shipping Address,Shop);
    ^International(use same shipping as billing,Shop);
     
      
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(label help,Shop);
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(label help,Shop);
    \n
      
     
    ^International(tax,Shop);
    ^International(shipping,Shop);\n \n
    ^International(payment methods,PayDriver);\n \n
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    \n\n\n
    \n\n\n','Shop/Cart',1,1,'aIpCmr9Hi__vgdZnDTz1jw',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'
    alt\">
    ^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(extended price,Shop);^International(per item shipping,Shop);

    ^International(not applicable,Shop);
     
      
    ^International(subtotal,Shop);
    ^International(tax,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    (^International(required minimum order amount,Shop); )
      
     
    ^International(order for,Shop);
     
    ',0,NULL,NULL),('
    \r\n

    Add Address

    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(label help,Shop);
    \r\n \r\n\r\n
    \r\n','Shop/Address',1,1,'XNd7a_g_cTvJVYrVHcx2Mw',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Add Address

    ^International(label help,Shop);
    ',0,NULL,NULL),('
    \n

    ^International(my purchases,Shop); · ^a(\"Return to Account\");

    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);^International(Status,Shop);
    \">^International(Success,Shop);^International(Failed,Shop);
    \n
    \n','Shop/MyPurchases',1,1,'2gtFt7c0qAFNU3BG_uvNvg',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(my purchases,Shop); · ^a(\"Return to Account\");

    ^International(order number,Shop);^International(amount,Shop);^International(date,Shop);
    \">
    ',0,NULL,NULL),('

    ^International(thank you message,Shop);

    \r\n\r\n\r\n

    \">^International(order number,Shop);

    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    \r\n ','Shop/EmailReceipt',1,1,'bPz1yk6Y9uwMDMBcmMsSCg',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(thank you message,Shop);

    \">^International(order number,Shop);

    ^International(date,Shop);
    ^International(amount,Shop);
    ^International(in shop credit used,Shop);
    ^International(taxes,Shop);
    ^International(shipping method,Shop);
    ^International(shipping amount,Shop);
    ^International(shipping address,Shop);
    ^International(payment method,Shop);
    ^International(status message,Shop);
    ^International(payment address,Shop);
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    ',0,NULL,NULL),('
    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n\r\n \r\n
    \r\n
    ^ViewCart;
    \r\n \">^International(continue shopping button,Shop);\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    \r\n','Donation',1,1,'vrKXEtluIhbmAS9xmPukDA',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n

    \">^International(continue shopping button,Shop);\r\n\r\n\r\n\r\n\r\n','FlatDiscount',1,1,'63ix2-hU0FchXGIWkG3tow',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(continue shopping button,Shop);',0,NULL,NULL),('

    \r\n \" id=\"id\">\r\n\r\n \r\n
    \r\n
    \r\n
    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    (\">)
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \n','Subscription',1,1,'eqb9sWjFEVq0yHunGV8IGw',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n \n
    default\">\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n','Shop/AddressBook',1,1,'3womoo7Teyy2YKFa25-MZg',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'
    default\">
    ',0,NULL,NULL),('
    \r\n

    Cart

    \r\n
    \r\n \r\n
    ) ()
    \r\n
    \r\n
    \r\n
    \r\n ^International(total,Shop);: \r\n
    \r\n
    \r\n ^ViewCart;\r\n
    \r\n
    \r\n','Shop/MiniCart',1,1,'EBlxJpZQ9o-8VBOaGQbChA',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Cart

    ) ()
    ^International(total,Shop);:
    ^ViewCart;
    ',0,NULL,NULL),('
    \n \n
    \n
    \n\n

    ^International(order number,Shop);

    \n \n \n \n \n\n
      \n
    • ^International(date,Shop);
    • \n
    • ^International(Status,Shop);^International(Success,Shop);^International(Failed,Shop);
    • \n
    • ^International(amount,Shop);
    • \n
    • ^International(in shop credit used,Shop);
    • \n
    • ^International(taxes,Shop);
    • \n
    • ^International(shipping method,Shop);
    • \n
    • ^International(shipping amount,Shop);
    • \n
    • ^International(payment method,Shop);
    • \n
    • ^International(status message,Shop);
    • \n
    \n
    \n \n
    \n
    ^International(payment address,Shop);
    \n
    \n
    \n \n
    \n
    ^International(shipping address,Shop);
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \n \">\n
    \n \n [\">] \n \n
    \n
    \n
    \n','Shop/MyPurchasesDetail',1,1,'g8W53Pd71uHB9pxaXhWf_A',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(order number,Shop);

    • ^International(date,Shop);
    • ^International(amount,Shop);
    • ^International(in shop credit used,Shop);
    • ^International(taxes,Shop);
    • ^International(shipping method,Shop);
    • ^International(shipping amount,Shop);
    • ^International(payment method,Shop);
    • ^International(status message,Shop);
    ^International(payment address,Shop);
    ^International(shipping address,Shop);
    ^International(date,Shop);^International(item,Shop);^International(price,Shop);^International(quantity,Shop);^International(shipping address,Shop);^International(order status,Shop);^International(tracking number,Shop);
    \">
    [\">]
    ',0,NULL,NULL),('\nBatch: \n\n\n
    \n\n','Operation/RedeemSubscription',1,1,'PBtmpl0000000000000053',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'Batch:
    ',0,NULL,NULL),('
    \n \n
    \n
      \n
    • \n
    \n
    \n
    \n\n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    ','Shop/Credentials',1,1,'itransact_credentials1',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('

    Enter VAT numbers

    \r\n\r\n\r\n

    \r\n Error: \r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n
    CountryVAT NumberApproved for use
    yesno\">delete
    \r\n
    \r\n
    \r\n\r\n

    \r\n Add another VAT Number:
    \r\n \r\n

    ','TaxDriver/EU/User',1,1,'D6cJpRcey35aSkh9Q_FPUQ',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'

    Enter VAT numbers

    Error:

    CountryVAT NumberApproved for use
    yesno\">delete

    Add another VAT Number:

    ',0,NULL,NULL),('\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n\n \n \n \n \n \n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \n','Shop/Credentials',1,1,'30h5rHxzE_Q0CyI3Gg7EJw',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
    ',0,NULL,NULL),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \r\n','Shop/Credentials',1,1,'jysVZeUR0Bx2NfrKs5sulg',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \r\n','Shop/Credentials',1,1,'300AozDaeveAjB_KN0ljlQ',1273032715,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    \r\n','Shop/Credentials',1,1,'GqnZPB0gLoZmqQzYFaq7bg',1273032716,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      
    ^International(subtotal,Shop);
    ^International(taxes,Shop);
    ^International(shipping,Shop);
    ^International(in shop credit,Shop);(^International(available,Shop);: )
    ^International(total,Shop);
      
    ',0,NULL,NULL),('\n\n\n\n \n ^Page(title); - ^c;\n \n\n\n\n ^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n ^AssetProxy(crystalx/site-search);\n
    \n
    \n\n
    \n ^AssetProxy(crystalx/crystalx_navigation);\n
    \n\n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n ^LoginToggle;  \n ^GroupText(\"Registered Users\",^a(^@;););  \n ^AdminToggle;\n
    \n
    \n\n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n\n\n','style',1,1,'OiJNwP1gAlcva8_yOtL4gA',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title); - ^c;\n\n\n\n^AdminBar;\n
    \n
     
    \n
    \n
    ^H(^c(););
    \n
    \n^AssetProxy(crystalx/site-search);\n
    \n
    \n
    \n^AssetProxy(crystalx/crystalx_navigation);\n
    \n
    \n
    \n
    \n
    You are here: ^AssetProxy(crystalx/crystalx_navigationtrail);
    \n
    ^D(\"%W, %D/%C/%y\");
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^LoginToggle;  \n^GroupText(\"Registered Users\",^a(^@;););  \n^AdminToggle;\n
    \n
    \n
    \n

    © 2009 ^c; | Empowered by WebGUI

    \n

    Created by Nuvio | Webdesign

    \n

    \n
    \n
    \n\n',0,'pl9xiFGzrqfAgRzqwJ8xPg',NULL),('\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n
    \n \n\n \n \n
    \" class=\"yuimenubar\">\n
    \n
      \n \n\n \n
    \n
    \n
    \n \n
    \n\n \n \n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n
  • \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n \n \n \n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\"href=\"\">\n \n \n
  • \n \n
  • \n \n onclick=\"window.open(this.href); return false;\" href=\"\">\n \n \n\n \n
    \n
    \n
      \n \n \n \n\n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
  • \n \n \n
    \n
    \n
    \n\n \n
    \n\n\n','Navigation',1,1,'gaIOm5cr2TkT9Fk6QmZWug',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n id=\"currentpage\"\r\n \r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n > \r\n\r\n\r\n','Navigation',1,1,'hpCk0B3vQzgc-QJhSol41w',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nid=\"currentpage\"\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n > \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n
    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n
    Go back to ^H(Home);
    \r\n\r\n \r\n
    \r\n \r\n
    id=\"odd\" >\r\n
    );\">
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n
    \r\n\r\n \r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n','Search',1,0,'OfKbvK7CrfMnfc8WDoF4Rg',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n
    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n
    Go back to ^H(Home);
    \n\n
    \n\n
    id=\"odd\">\n
    );\">
    \n
    \n
    \n
    \n
    \n\n
    \n\n
    \n
    \n\n
    \n · · \n
    \n
    \n
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n
    ^H(^c;);
    \r\n
    ^c;
    \r\n
    \r\n
    \r\n

    ^Page(title);

    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \"plain\"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^AssetProxy(flexmenu);\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n ^AdminToggle;\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000002',1273032718,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n^AdminBar();\n\n\n\n\n\n\n\n\n
    \n
    \n
    ^H(^c;);
    \n
    ^c;
    \n
    \n
    \n

    ^Page(title);

    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n\"plain\"webgui\"
    \n
    \n
    \n
    \n\n\n\n\n\n
    \n
    \n^AssetProxy(flexmenu);\n
    \n\n\n\n\n\n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n^AdminToggle;\n
    \n
    \n© ^D(%y); ^c;\n
    \n\n',0,'ahKL5Wl1XmeUUCB32OzSbA',NULL),('\r\n\r\n\r\n\r\n^Page(title); - ^c;\r\n\r\n\r\n\r\n\r\n\r\n\r\n^AdminBar;\r\n\r\n
    \r\n\r\n \r\n
    \r\n ^AssetProxy(style-underground/top-navigation); \r\n
    \r\n \r\n
    \r\n \r\n
    yourname
    \r\n \r\n
    \r\n

    \r\n

    \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n ^AssetProxy(style-underground/side-navigation);\r\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \r\n
    \r\n
      \r\n
    • ^LoginToggle();
    • \r\n ^a(\"View My Account\",\"style-underground/templates/view-my-account\");\r\n ^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\r\n
    \r\n
    \r\n

    WebGUI Links

    \r\n
    \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n
    \r\n \r\n\r\n
    \r\n \r\n

    \r\n © 2006 ^c;    \r\n Design by: styleshout |\r\n Valid XHTML |\r\n CSS\r\n       \r\n \r\n

    \r\n \r\n
    \r\n \r\n\r\n\r\n','style',1,1,'Qk24uXao2yowR6zxbVJ0xA',1273032719,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n^Page(title); - ^c;\n\n\n\n\n\n^AdminBar;\n
    \n
    \n^AssetProxy(style-underground/top-navigation);\n
    \n
    \n
    yourname
    \n
    \n

    \n

    \n
    \n
    \n
    \n^AssetProxy(style-underground/side-navigation);\n

    ^GroupText(\"Registered Users\",\"Hello, ^@;\",\"Login\");

    \n
    \n
      \n
    • ^LoginToggle();
    • \n^a(\"View My Account\",\"style-underground/templates/view-my-account\");\n^AdminToggle(\"\",\"\",\"style-underground/templates/admintoggle-underground-admin-toggle\");\n
    \n
    \n

    WebGUI Links

    \n\n
    \n
    \n
    \n
    \n

    \n© 2006 ^c;   \nDesign by: styleshout |\nValid XHTML |\nCSS\n      \n

    \n
    \n\n',0,'1riOzIrN9EgfdnGFyOq-_g',NULL),(' \n \n','Navigation',1,1,'39KNX53B4nYJAyIE1lu8ZQ',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n',0,NULL,NULL),(' \r\n

    \r\n
    \r\n \r\n
    \r\n
    \r\n','Navigation',1,1,'ztfi__vHJLsQDsMenrEn-w',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n
    ',0,NULL,NULL),('
  • \">
  • ','AdminToggle',1,1,'8qyrDCNeggB4dzKiOoRuiQ',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('
  • \">
  • ','Macro/a_account',1,1,'M1NyNeS5jpdIsiIWFiJprw',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
  • \">
  • ',0,NULL,NULL),('

    \n\n
      \n
    • \n \n \"> - on by \n \n - on by \n \n ( \"> )\n \n \n
    • \n
    \n\n
    \"> | \"> | \">
    \n\n\n','WikiMaster_recentChanges',1,1,'WikiRCTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \"> | \"> | \">
    ',0,NULL,NULL),('

    \n\n

    \n\n\n

    \n\n
    \n\n

    ^International(categories label,Asset_Matrix);

    \n\n
    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n
    \n\n

    Featured Article: \">

    \n\n
    \n\n
    \n

    \">

    \n
      \n
    • \n \n \">\n \n ()\n \n
    • \n
    \n
    \n
    \n

    \">

    \n
      \n
    1. \">
    2. \n
    \n\n
    \n
    \n\n
    \n\n\n','WikiMaster_front',1,1,'WikiFrontTmpl000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'


    Featured Article: \">

    \">

    ',0,NULL,NULL),('\n

    \n\n\n\n\n

    \n \n \n \n
    \n · · \n
    \n
    \n

    \n

    \">

    \n \n

    \n

    \">

    \n
    \n
    \n
    \"> | \"> | \">
    \n','WikiMaster_search',1,1,'WikiSearchTmpl00000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    · ·

    \">

    \">

    \"> | \"> | \">
    ',0,NULL,NULL),('\n
      \n\n
    • at () by
    • \n
      \n
    \n','WikiPage_pageHistory',1,1,'WikiPHTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
    • at () by
    ',0,NULL,NULL),('

    \n

    \n\n
    \n
      \n
    • \n
    • \n
    \n
    \n
    \n
    ^International(locked,Asset_WikiPage);
    \n
    \n

    ^International(keywords,Asset);: \">

    \n
    \n
    \n
    \n
    \n
    \n\n\n\n
    \"> | \"> | \"> | \">
    ','WikiPage',1,1,'WikiPageTmpl0000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(keywords,Asset);: \">

    \"> | \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n \r\n\r\n','WikiPage_edit',1,1,'WikiPageEditTmpl000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('

    \n\n
      \n
    1. \">
    2. \n
    \n\n
    \"> | \"> | \">
    \n\n','WikiMaster_mostPopular',1,1,'WikiMPTmpl000000000001',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'

    1. \">
    \"> | \"> | \">
    ',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^c; - ^Page(title);\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n^AdminBar();\r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\r\n
    \r\n
    \r\n

    ^H(^c;);

    \r\n

    ^Page(title);

    \r\n
    \r\n \"webgui\"
    \r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(style3_coolmenu);\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n \"plain
    \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','style',1,1,'stevestyle000000000003',1273032720,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^c; - ^Page(title);\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000092\"); · ^AdminToggle;\n
    \n
    \n

    ^H(^c;);

    \n

    ^Page(title);

    \n
    \n\"webgui\"
    \n
    \n
    \n
    \n^AssetProxy(style3_coolmenu);\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n© ^D(%y); ^c;\n
    \n\"plain
    \n
    \n
    \n
    \n\n',0,'Xr1JhO16oSMIEvCjcZILZQ',NULL),('\n\n\n\n \n WebGUI - style Greenportal\n \n\n\n \n ^AdminBar;\n
    \n
    \n
    \n ^H(^c(););\n \n
    \n
    \n\n
    \n ^AssetProxy(greenportal_navigation);\n
    \n\n
    \n
    \n Currently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n\n
    \n \n
    \n
    \n\n
    \n © 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n\n','style',1,1,'KKt0VB_eoQxw9xEsHsAhag',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nWebGUI - style Greenportal\n\n\n\n^AdminBar;\n
    \n
    \n
    \n^H(^c(););\n
    \n
    \n
    \n^AssetProxy(greenportal_navigation);\n
    \n
    \n
    \nCurrently viewing: ^AssetProxy(greenportal_navigationtop);\n
    \n
    \n\n
    \n
    \n
    \n© 2008 ^c; | Design from Joomla! Open Source\n
    \n
    \n\n',0,'dHuYEH6gNfRu9NHXOVFa9g',NULL),('\r\n

    \r\n
    \r\n\r\n

    \r\n
    \r\n\r\n
    \r\n
    \r\n\r\n\r\n','Navigation',1,1,'_z3ukLCqvoaUygfsbbkBzw',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n
    \n
    \n
      \n
    • Main Menu
    • \n\n\n
    • \"indent1\"\"indent2\">\n\nstyle=\"color:white;\"\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\n\nhref=\"\"\n>\n\n\n
    • \n
      \n
      \n
    • User Panel
    • \n
    • ^LoginToggle;
    • \n
    • ^a(Hello‚ ^@;˜);
    • \n
    • ^AdminToggle;
    • \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n\r\n onclick=\"window.open(\'\')\" href=\"#\" \r\n href=\"\"\r\n \r\n >\r\n \r\n \r\n\r\n » \r\n\r\n\r\n','Navigation',1,1,'Pt38T5_MWSue2e1N36MLdw',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\nonclick=\"window.open(\'\')\" href=\"#\"\nhref=\"\"\n>\n\n\n » \n',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n
      \r\n

      Registration failed because

      \r\n \r\n
    • \r\n
      \r\n
    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n

    \r\n \">\r\n • \">\r\n\r\n \r\n \r\n • \" onclick=\"\">\r\n \r\n\r\n \r\n • \" onclick=\"\">\r\n \r\n • \">\r\n • \">\r\n \r\n
    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n * required\r\n \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n','DataForm',1,1,'LDcM1Iop17nF2MoSa7zo_Q',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n
      \n

      Registration failed because

      \n\n
    • \n
      \n
    \n
    \n\n\n

    \n\n

    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n* required\n\n
    \n\n
    \n
    \n
    \n\n',0,NULL,NULL),('\n

    \n

    \n\n

    Registration Database

    \n\n\n
    \n \">\n • \">\n \n \n • \" onclick=\"\">\n \n • \">\n • \">\n \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    \n\n','DataForm/List',1,1,'hVF1taXj4bfd7DuL4XDMYg',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n

    \n

    Registration Database

    \n
    \n\">\n• \">\n\n\n• \" onclick=\"\">\n\n• \">\n• \">\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
      Submission Date
    \" onclick=\"return confirm(\'Are you certain that you wish to delete this data entry?\')\">\"Delete\"
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n
    \r\n

    \r\n\">Change Info      \r\n\">\r\n\r\n\r\n','DataForm',1,1,'x4-2QYRSrIB_BJfnSKKj4w',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n
    \n

    \n\">Change Info      \n\">',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n

    \r\n\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n •\r\n \r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n','Collaboration',1,1,'423R4Y6XIt3wUzlnLo-chg',1273032721,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n\n

    \n\n\">\n•\n\n\n\n\">\n\n\">\n\n•\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n\">\nby\n\n\n\n\">\n\non @ \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n
    \r\n

    \">[Back]

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n\r\n\r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> • \r\n \r\n \r\n \"> • \r\n \r\n \r\n \"> \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n • \"> \r\n \r\n • \"> \r\n \r\n \r\n \r\n \r\n • \">\r\n \r\n • \">\r\n \r\n \r\n
    \r\n\r\n','Collaboration/Thread',1,1,'oZ1Mk-zExYUyD-JsjTvaHg',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    \n
    \n\n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n\n\"> •\n\n\n\"> •\n\n\n\">\n\n\n\n• \">\n\n• \">\n\n\n• \">\n\n• \">\n\n\n\n\n• \">\n\n• \">\n\n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n\r\n\r\n\r\n

    \r\n \r\n
    \r\n\r\n\r\n','Collaboration/PostForm',1,1,'mYwS8CZaOLMt0raaKXGZcQ',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \r\n
    \r\n\r\n\r\n
    \r\n · · \r\n
    \r\n
    \r\n\r\n\r\n','Collaboration/Search',1,1,'kSGR4OHsKmhLQTuLkisOww',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n
    \n · · \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day \r\n \" class=\"tabWeek\">Week \r\n \" class=\"tab\">Month \r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \" style=\"margin-right:66px;\">« prev week\r\n , ~ , \r\n \" style=\"margin-left:66px\">next week » \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    curDay\"> \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Week',1,1,'Xqc3qPUXoFE8dt9qocdWig',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tabWeek\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n\n
    \n\" style=\"margin-right:66px;\">« prev week\n , ~ , \n\" style=\"margin-left:66px\">next week »\n
    \n\n\n\n\n\n
    \n
    \n
    curDay\">\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tabDay\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n\r\n
    \r\n \">Add Event\r\n \">Print\r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    :00
    \r\n
    \r\n
      \r\n
    • \r\n \">\r\n
    • \r\n
    \r\n
    \r\n
    \r\n\r\n','Calendar/Day',1,1,'IBTb7wllSt7RxFmmvm9pkQ',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tabDay\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n\n
    \n\n
    \n\n\n\n\n\n
    \n
    :00
    \n
    \n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \" class=\"tab\">Day\r\n \" class=\"tab\">Week\r\n \" class=\"tab\">Month\r\n \" class=\"tab\">Search\r\n\r\n
     
    \r\n \r\n
    \r\n \r\n Edit \r\n • Delete • \r\n \r\n Print\r\n
    \r\n
    \r\n \" style=\"margin-right:106px;\">« prev event\r\n Event Details\r\n \" style=\"margin-left:106px\">next event »\r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    Event Title
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Location
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Description
    \r\n
    \r\n
    \r\n
    \r\n
    Scheduled
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    Related Material
    \r\n
    \r\n \">
    \r\n
    \r\n
    \r\n
    Attachments
    \r\n
    \r\n \"> \" />
    \r\n
    \r\n
    \r\n
    \r\n','Calendar/Event',1,1,'Z1EM7JMI_4SkyfaZffSElw',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n\n\n\n\n\n\n
    \n\" class=\"tab\">Day\n\" class=\"tab\">Week\n\" class=\"tab\">Month\n\" class=\"tab\">Search\n
     
    \n
    \n\nEdit\n• Delete •\n\nPrint\n
    \n
    \n\" style=\"margin-right:106px;\">« prev event\nEvent Details\n\" style=\"margin-left:106px\">next event »\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    Event Title
    \n
    \n
    \n\n
    \n
    \n
    Location
    \n
    \n
    \n\n
    \n
    \n
    Description
    \n
    \n
    \n
    \n
    Scheduled
    \n
    \n
    \n\n
    \n
    \n
    Related Material
    \n
    \n\">
    \n
    \n
    \n
    Attachments
    \n
    \n
    \n
    ',0,NULL,NULL),('\n\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n \n\n
    \n Event\n Recurrence\n \n \n
     
    \n
    \n\n\n\n\n \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n \n \n\n\n\n\n\n \n \n\n\n \n \n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n\n\n\n','Calendar/EventEdit',1,1,'fJg7SKpGZwzSNx3_ebki1A',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n

    Errors!

    \n
      \n\n
    • \n
      \n
    \n
    \n\n\n\n\n
    \nEvent\nRecurrence\n\n\n
     
    \n
    \n\n\n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Event Title
    Short Title
    Location
    Description
    Start Date
    End Date
    Time
     
    Related Links
    Group to View this Event
    Attachments for this Event
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Recurrence Pattern
    Recurrence Range\n

    Start:

    \n

    \n

    End:

    \n
    \n
    \n\n',0,NULL,NULL),('\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n \">^International(label day,Asset_Calendar);\r\n \">^International(label week,Asset_Calendar);\r\n \">^International(label month,Asset_Calendar);\r\n \">^International(label search,Asset_Calendar);\r\n
    \r\n  \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n\r\n
    \r\n
    ^International(keyword,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(start date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    ^International(end date,Asset_Calendar);
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n
    \r\n
    \r\n ^International(search results,Asset_Calendar);\r\n ^International(page x of x,Asset_Calendar,,);\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n \" style=\"padding-left:10px\">\r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n','Calendar/Search',1,1,'ihf4Rx6p72xn_nVKaIeOaw',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">^International(label day,Asset_Calendar);\n\">^International(label week,Asset_Calendar);\n\">^International(label month,Asset_Calendar);\n\">^International(label search,Asset_Calendar);\n
    \n \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    ^International(keyword,Asset_Calendar);
    \n
    \n
    \n
    ^International(start date,Asset_Calendar);
    \n
    \n
    \n
    ^International(end date,Asset_Calendar);
    \n
    \n
    \n
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n
    \n^International(search results,Asset_Calendar);\n^International(page x of x,Asset_Calendar,,);\n
    \n
    \n
    \n\n\n\n
    \n
    \n\n\n\n\n\n
    \n
    \n
    \n\" style=\"padding-left:10px\">\n
    \n
    \n
    \n\n\n\n
    \n
    \n
    ',0,NULL,NULL),('\" id=\"id\"> \r\n\r\n \r\n

    \r\n
    \r\n\r\n

    \">[]

    \r\n\r\n
    \r\n\r\n
    \r\n\" alt=\"\" />\r\n
    \r\n
    \r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n :
    \r\n :
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n \r\n : [ \"> \"> ]
    \r\n \r\n \r\n :
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n \r\n
    \r\n\r\n\r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n

    \r\n
    \r\n
    \r\n \r\n \">\r\n \r\n \">\r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n
    px;\">\r\n
    Current\">\r\n \">\r\n
    \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n \r\n \r\n
    \r\n\" alt=\"\" />\r\n\r\n : \r\n \r\n \r\n \r\n \">\r\n \r\n
    \r\n : \r\n
    \r\n : \r\n \r\n     [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\r\n
    \r\n
    \r\n :
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \">\r\n \r\n \r\n •\r\n \">\r\n •\r\n \">\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n \r\n
    \r\n [ | | ]\r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \"> \r\n •\r\n \r\n \r\n \r\n \">\r\n • \r\n \r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \">\r\n •\r\n \r\n \">\r\n •\r\n \r\n \r\n \r\n \r\n \">\r\n \r\n \">\r\n \r\n \r\n
    \r\n
    \r\n','Collaboration/Thread',1,1,'jrWJ6nHXkqgFbml7BZ9chw',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n

    \">[]

    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n:\n\n\n\n\">\n\n
    \n:
    \n:
    \n: \n\n    [

    \">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />

    |

    \">\" alt=\"-\" style=\"border: 0px;vertical-align:middle;\" />

    ]\n
    \n
    \n\n: [ \"> \"> ]
    \n\n\n:
    \n
    \n
    \n
    \n
    \n

    \n\n
    \n\n
    \n\n\n\n
    \n
    \n
    \n\n
    \n\n\">\n\n\n•\n\">\n•\n\">\n\n
    \n
    \n
    \n\n
    \n

    \n
    \n
    \n\n\">\n\n\">\n\n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n[ | | ]\n
    \n
    \n
    \n
    \n\n\">\n•\n\n\n\">\n•\n\n\n\">\n•\n\n\n\n\">\n•\n\n\">\n•\n\n\n\">\n•\n\n\">\n•\n\n\n\n\n\">\n\n\">\n\n\n
    \n
    ',0,NULL,NULL),('\" id=\"id\">\r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n

    \r\n
    \r\n\r\n\r\n \r\n

    \r\n\r\n\r\n\r\n \">\r\n

    \r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n class=\"even\">\r\n \">
    \r\n \r\n \r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\" align=\"center\">\r\n class=\"even\">\r\n \">\r\n by\r\n \r\n \r\n \r\n \">\r\n \r\n on @ \r\n \r\n
    \r\n \r\n
    \r\n\r\n

    \r\n \r\n
    \r\n
    \r\n \r\n

    \r\n \r\n\r\n\r\n\r\n','MessageBoard',1,1,'Ys6f3vpe0y1uRcaCJ2TlFw',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n\n\n

    \n\n\n\">\n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n class=\"even\">\n\">
    \n\n\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\" align=\"center\">\n class=\"even\">\n\">\nby\n\n\n\n\">\n\non @ \n\n
    \n\n
    \n\n

    \n\n
    \n
    \n\n

    \n\n',0,NULL,NULL),('\r\n\r\n\r\n \r\n ^Page(title);\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n ^AdminBar();\r\n

    \r\n
    \r\n
    \r\n ^H(^c(););\r\n
    \r\n \r\n
    \r\n © ^D(%y); ^c;\r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n ^AssetProxy(roottab_level0);\r\n
    \r\n
    \r\n
    \r\n ^AssetProxy(roottab_level1);\r\n
    \r\n
    \r\n ^AssetProxy(crumbtrail); \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n
     
    \r\n
    \r\n \r\n
    \r\n ^L(\"\",\"\",\"PBtmpl0000000000000044\");\r\n
    ^AdminToggle;
    \r\n ^AssetProxy(style1/gui_bottom.jpg);
    \r\n \"WebGUI\r\n
    \r\n
    \r\n\r\n\r\n\r\n\r\n\r\n \r\n','style',1,1,'stevestyle000000000001',1273032722,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n\n^Page(title);\n\n\n\n\n\n\n^AdminBar();\n
    \n
    \n
    \n^H(^c(););\n
    \n
    \n© ^D(%y); ^c;\n
    \n
    \n
    \n
    \n^AssetProxy(roottab_level0);\n
    \n
    \n
    \n^AssetProxy(roottab_level1);\n
    \n
    \n^AssetProxy(crumbtrail);\n
    \n
     
    \n
    \n\n
    \n
     
    \n
    \n
    \n^L(\"\",\"\",\"PBtmpl0000000000000044\");\n
    ^AdminToggle;
    \n^AssetProxy(style1/gui_bottom.jpg);
    \n\"WebGUI\n
    \n
    \n\n',0,'RE3ugPDieP57zCI6J_uJqw',NULL),('\n
    \n\n
    \n

    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n

    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n WGoddThreadWGevenThread\">\n \n \n \n \n \n \n \n \n
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);
    \n \n

    \n location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\n \n \n \" class=\"prevNext\">\"Previous\" \n \"> \n  \" class=\"prevNext\">\"Next\"\n \n \n \n

    \n\n

    \n ^International(message count,\'Account_Inbox\');\n

    \n \n
    \n\n
    \n','Account/Inbox/View',1,1,'c8xrwVuu5QE0XtF9DiVzLw',1273032723,'WebGUI::Asset::Template::HTMLTemplate',1,'


    ^International(member since,Account_Inbox); ^D(%z,);

    location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\" class=\"prevNext\">\"Previous\" \">  \" class=\"prevNext\">\"Next\"

    WGoddThreadWGevenThread\">
     \">^International(from label,Account_Inbox);\">^International(subject label,Account_Inbox);\">^International(date label,Account_Inbox);\">^International(status label,Account_Inbox);
    old.pngnew.png);\" />\" class=\"inbox_from\">\">^D(,);

    location.href=\'\'alert(\'^International(no friends hover,Account_Inbox);\');\" />\" class=\"prevNext\">\"Previous\" \">  \" class=\"prevNext\">\"Next\"

    ^International(message count,\'Account_Inbox\');

    ',0,NULL,NULL),('\n

    \n\n\n\n
    ^International(Sub-keywords,Asset_WikiMaster);
    \n\n
    \n\n\n

    ^International(categories label,Asset_Matrix);

    \n

    \n\n\n\"> ()
    \n
    \n
    \n

    \n
    \n\n\n

    ^International(Related Pages,Asset_WikiMaster);

    \n\n
    \n\n\n
    \n · · \n
    \n
    \n\n\n\n','WikiMaster_byKeyword',1,1,'WikiKeyword00000000001',1274238756,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('
    \n \n

    \n
    \n\n \n

    \n
    \n\n \n
    \n
    \n \n\n \n \n \n \n \n\n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n
    \">
    \n \n
    \n\n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n wgRowOnewgRowTwo\">\n \n \n \n \n \n
    \">\n

    Search Results

    \n
    \n \">\n
    \n \n \n \n \n \">\n \n \n \n
    \n
    \n
    \n \n \n
    \n · · \n
    \n
    \n
    \n','Thingy/SearchThing',1,1,'ThingyTmpl000000000004',1277868920,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000066',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n \n \n
    [\">]
    \n
    \n
    \n \n
    \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n
    \n
    \n \" id=\"id\">
    \n \n

    \">[top]

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000080',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    [\">]
    [\">](\">)
    \" id=\"id\">

    \">[top]

    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\">\n \n \">\" border=\"0\" alt=\"\" />\n \n  \n \n oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">
    \n\n\n
    \n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000097',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\" style=\"text-align: center;\"> \">\" border=\"0\" alt=\"\" />  oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">\">

    · ·
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n

    \n\n\n

    \n \n
    \n
    \n \n \n \n \n \n \">\n \n -\n \n \n - \n \n \n - \n \n \n - \n \n \n \n \n \">\" border=\"0\" alt=\"\" align=\"right\" />\n \n \n
    \n \">\n
    \n
    \n

    \n\n\n\n

    \n \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000112',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \"> -- - - \">\" border=\"0\" alt=\"\" align=\"right\" />
    \">

    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n
    \n\n\n
    \n
    \n
    ()
    \n \n \n
    \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000121',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">


    · ·
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n : [ \"> \"> ]
    \n \n \n :
    \n
    \n
    \n
    \n\n
    \n

    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n\n\n \n\n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n :
    \n
    \n
    \n \n \n \n \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000067',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \" alt=\"\" />
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    : [ \"> \"> ]
    :



    Current\"> \">
    \" alt=\"\" /> : \">
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    px;\">
    Current\"> \">
    \" alt=\"\" /> : \">
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    [ | | ]
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000026',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \">\">\">\">\">
    oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\"> \"> by \"> on @
    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n
    \n\n\n
    \n
    \n \">
    \n ()\n \n \n \n
    \n \n
    \n
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000128',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">


    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n \n  [\">]\n \n

    \n\n\n \n \n \">\n \n \n \n \n \n \n \n \n \"> •\n \n \n \n (\">)\n
    \n

    \n \n

    \n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000079',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \">  [\">]

    \"> \">(\">)

    · ·
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n \n \n [\">] \n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n

    \n \" target=\"_blank\">\n \n - \n \n

    \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000083',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    [\">[\">](\">)

    \" target=\"_blank\">-

    · ·
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000082',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    · ·
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n\n\n\n\n\n\n\n
    \n\n

    \n\n\n\n\n

    \n · · \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000133',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n

    \n \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000029',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">\n\n

    \n
    \n\n

    \n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\n\n

    \n\n
    ',0,NULL,NULL),('\n\n \n

    \n
    \n\n \n
    \n

    \">

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n\n\n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n \n : [ \"> \"> ]
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n\n\n
    \n [ | | ]\n
    \n
    \n\n
    \n \n \"> •\n \n \n \"> • \n \n \n \"> •\n \n \n \n \"> •\n \n \"> •\n \n \n \"> •\n \n \"> •\n \n \n \n \n \">\n \n \">\n \n \n
    \n\n','Collaboration/Thread',1,1,'PBtmpl0000000000000032',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'

    px;\">
    Current\"> \">
    \" alt=\"\" />
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    : [ \"> \"> ]
    \"> \">\">
    [ | | ]
    \"> \"> \"> \"> \"> \"> \"> \"> \">
    ',0,NULL,NULL),('\n\n\n \n\n\n \n\n\n \n\n\n \n\n\n \n \n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n\n \n\n\n\n
     
    ^International(has posted to one of your subscriptions,Asset_Collaboration);
    #\">#
      
    \n

    \">

    ','Collaboration/Notification',1,1,'PBtmpl0000000000000027',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'
     
    ^International(has posted to one of your subscriptions,Asset_Collaboration);
    \">
      

    \">

    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    \n
    \n\n\n
    \n · · \n
    \n
    \n\n\n','Collaboration/Search',1,1,'PBtmpl0000000000000031',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    class=\"odd\">\">class=\"odd\">class=\"odd\">\">class=\"odd\"> @
    · ·
    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000068',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">



    ',0,NULL,NULL),('\" id=\"id\">\n\n

    \n

    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n
    \n
    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000099',1277868921,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">



    ',0,NULL,NULL); -INSERT INTO `template` VALUES ('\" id=\"id\">\n\n\n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n \n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000114',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n
    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000077',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    oddThreadevenThread\">oddThreadevenThread\">\"> ()oddThreadevenThread\">oddThreadevenThread\">oddThreadevenThread\">
    · ·
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n ^International(job description,Asset_Collaboration);
    \n

    \n
    \n\n\n ^International(job requirements,Asset_Collaboration);
    \n

    \n
    \n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n
    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \"> \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \"> \n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000098',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    :     [ \"> \"> ]
    ^International(job description,Asset_Collaboration);

    ^International(job requirements,Asset_Collaboration);

    ^International(date posted,Asset_Collaboration); 
    ^International(location,Asset_Collaboration); 
    ^International(compensation,Asset_Collaboration); 
    ^International(views,Asset_Collaboration); 


    \"> \">\">

    Current\"> \">
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    \"> \">\">
    px;\">
    Current\"> \">
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    \"> \">\">
    [ | | ]
    \"> \"> \"> \"> \"> \"> \"> \"> \"> \">
    ',0,NULL,NULL),('\" id=\"id\">\n\n
    \n

    \n

    \n

    \n

    \n

    \n
    \n\n\n

    \n\n

    \n
    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n\n\n
    \n

    \n \n

    \n

    \n

    \n
    \n
    \n

    \n\n\n','Collaboration/PostForm',1,1,'PBtmpl0000000000000122',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">



    ',0,NULL,NULL),('\" id=\"id\">\n\n\n \n\n\n\n

    \n\n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \"> \n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
    \n\n
    \n
    \n \n \">\n \n \n \n\n \n \n \n \n \n \"> •\n \n \n \n (\">)\n\n \n
    \n
    Q
    \n
    \n
    A
    \n\n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000081',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \"> \">(\">)

    Q: A:

    · ·
    ',0,NULL,NULL),('\n\" id=\"id\">\n\n\n \n\n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \"> •\n \n \n \n \">\n \n \">\n \n \n •\n \n \n \n \">\n \n

    \n\n
      \n \n
    1. \n \n \n [\">]\n \n \n \n \n \n \n \n \n [\">]\n \n \n \n (\">)\n \n \" target=\"_blank\">\n \n - \n \n
    2. \n
      \n
    \n\n\n
    \n · · \n
    \n
    \n','Collaboration',1,1,'PBtmpl0000000000000101',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    1. [\">][\">](\">)\" target=\"_blank\">-
    · ·
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n\n
    \n :     [ \"> \"> ]
    \n
    \n
    \n\n\n
    \n ^International(Link Description,Asset_Collaboration);

    \n
    \n \n ^International(Link URL,Asset_Collaboration);

    \n \">

    \n
    \n
    \n\n\n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> • \n \n \n \"> •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \" id=\"id\">\n
    \n \n
    \n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n
    \n
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :
    \n
    \n
    \n
    \n \n \n
    \n \n \"> •\n \n \n \"> • \n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">^International(List All Links,Asset_Collaboration);\n \n •\n \"> \n \n \n •\n \">\n \n \n •\n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    ','Collaboration/Thread',1,1,'PBtmpl0000000000000113',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    :     [ \"> \"> ]
    ^International(Link Description,Asset_Collaboration);


    ^International(Link URL,Asset_Collaboration);

    \">



    \"> \">\">

    Current\"> \" id=\"id\">
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    \"> \">\">
    px;\">
    Current\"> \" id=\"id\">
    : \">
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :
    \"> \">\">
    [ | | ]
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n

    \n \n \">\n •\n \n \n \n \">\n \n \">\n \n •\n \n \">\n

    \n\n\n\n \n \n\n \n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n\n \n\n \n \n \n \n \n\n\n
    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\">\n \">\n by\n \n \n \n \">\n \n on @ \n
    \n\n\n
    \n · · \n
    \n
    \n\n','Collaboration',1,1,'PBtmpl0000000000000208',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \"> \"> \"> \">

    \">\">\">\">\">\">
    oddThreadevenThread\">\">oddThreadevenThread\">oddThreadevenThread\">\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\" align=\"center\">oddThreadevenThread\"> @ oddThreadevenThread\" style=\"font-size: 11px;\"> \"> by \"> on @
    · ·
    ',0,NULL,NULL),('\" id=\"id\"> \n\n \n

    \n
    \n\n

    \n\n
    \n\n
    \n\" alt=\"\" />\n
    \n
    \n : \n \n \n \n \">\n \n
    \n :
    \n :
    \n :
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n \n :     [ \">     [ \"> ]
    \n \n \n :
    \n
    \n
    \n\n :
    \n:\n\n
    \n
    \n\n
    \n \n
    \n\n\n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n\n
    \n\n\n
    \n

    \n
    \n
    \n \n \">\n \n \">\n \n
    \n
    \n \n \n \n \n \n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n \n \n \n
    px;\">\n
    Current\">\n \">\n
    \n \n
    \n
    \n \n \n \n\n\n\n \n \n \n
    \n\" alt=\"\" />\n\n : \n \n \n \n \">\n \n
    \n : \n
    \n : \n \n     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]\n
    \n
    \n
    \n
    \n \n \n
    \n \n \">\n •\n \n \n \">\n •\n \">\n \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    \n [ | | ]\n
    \n
    \n
    \n\n
    \n \n \"> \n •\n \n \">\n \n \n •\n \"> \n \n \n •\n \">\n •\n \n \n \n \">\n •\n \n \">\n •\n \n \n \">\n •\n \n \">\n •\n \n \n \n \n \">\n \n \">\n \n \n
    \n','Collaboration/Thread',1,1,'PBtmpl0000000000000209',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    \" alt=\"\" />
    : \">
    :
    :
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    :     [ \">     [ \"> ]
    :
    :
    :


    \"> \">\">

    Current\"> \">
    \" alt=\"\" /> : \">
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    \"> \">\">
    px;\">
    Current\"> \">
    \" alt=\"\" /> : \">
    :
    :     [
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    |
    \" method=\"post\">\" alt=\"+\" style=\"border: 0px;vertical-align:middle;\" />
    ]

    \"> \">\">
    [ | | ]
    \"> \"> \"> \"> \"> \"> \"> \"> \"> \">
    ',0,NULL,NULL),('\" id=\"id\">\n\n\n

    \n
    \n\n\n

    \n
    \n\n

    \n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n\n\n\n

    \n \n
    \n','Collaboration/PostForm',1,1,'PBtmpl0000000000000210',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'\" id=\"id\">

    ',0,NULL,NULL),('

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ','Collaboration/PostReceived',1,1,'default_post_received1',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(post received,Asset_Post);

    \">^International(493,WebGUI);

    ',0,NULL,NULL),('

    ^International(Unsubscribe from %s,Asset_Collaboration,\'\">\');

    \n\n

    \n
    \n\n^International(480,WebGUI);
    \n^International(unsubscribe instructions,Asset_Collaboration);
    \n','Collaboration/Unsubscribe',1,1,'default_CS_unsubscribe',1277868922,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(unsubscribe,Asset_Collaboration);

    \n
    \n\n^International(unsubscribe instructions,Asset_Collaboration);
    \n^International(480,WebGUI); \n',0,NULL,NULL),('
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ^International(\'template search title\',\'Asset_Gallery\');\r\n
    \r\n\r\n \r\n\r\n \r\n
    \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\r\n \r\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \r\n \r\n
    \r\n
    \r\n \r\n\r\n

    \r\n\r\n \r\n
    \r\n \r\n
    \r\n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\r\n
    \r\n\r\n

    Albums

    \r\n \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n

    Pictures

    \r\n \r\n \r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    ','Gallery/Search',1,1,'jME5BEDYVDlBZ8jIQA9-jQ',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n^International(\'template search title\',\'Asset_Gallery\');\n
    \n\n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template search field title\',\'Asset_Gallery\');
    ^International(\'template search field description\',\'Asset_Gallery\');
    ^International(\'template search field keywords\',\'Asset_Gallery\');
    ^International(\'template search field location\',\'Asset_Gallery\');
    ^International(\'template search field className\',\'Asset_Gallery\');\n\n
    ^International(\'template search field creationDate\',\'Asset_Gallery\');^International(\'template search to\',\'Asset_Gallery\');
     \n\n
    \n
    \n\n

    \n\n
    \n
    \n ^International(\'template search results for\',\'Asset_Gallery\'); \"\".\n
    \n

    Albums

    \n\n\n\n\n\n
    \n

    Pictures

    \n\n\n
    \n\" class=\"title\">\n\n\n\n\n
    \n
    \n\n
    \n
    \n
    \n
    \n\n
    ^International(\"template file creationDate\",\"Asset_GalleryAlbum\"); ^D(\"%M/%d/%Y\",);
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \" class=\"albumTitle\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n \r\n \r\n ?func=edit\">Add a Description\r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n
    \r\n \r\n \r\n \r\n
    \r\n \r\n
    ','Gallery/ListAlbums',1,1,'azCqD0IjdQSlM3ar29k5Sg',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\n \n\n\n','GalleryAlbum/View',1,1,'05FpjceLYhq4csF1Kww1KQ',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n\r\n
    \r\n
    \r\n \" class=\"current\">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \">\r\n
    \r\n\r\n \r\n\r\n
    \r\n \" class=\"title\">\r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    ^International(\'template creationDate\',\'Asset_Photo\');: ^D(\"%z %Z\",);
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n \" class=\"thumb\">\r\n \" />\r\n \r\n \r\n
    \r\n
    \r\n
    \r\n
    ','GalleryAlbum/ViewThumbnails',1,1,'q5O62aH4pjUXsrQR3Pq4lw',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n \r\n\r\n\r\n
    \r\n \r\n \r\n
    \r\n
    \r\n \">^International(template url_thumbnails,Asset_GalleryAlbum);  ·  \r\n \" class=\"current\">^International(template url_slideshow,Asset_GalleryAlbum);  ·  \r\n \">^International(template url,Asset_GalleryAlbum);    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n ·\r\n ^International(template by,Asset_Gallery);: \"> \r\n
    \r\n\r\n \r\n\r\n
    \r\n
    \r\n \"Previous\r\n \r\n \"Next\r\n
    \r\n
    \r\n \r\n
    \r\n \r\n
    \r\n \">\" style=\"border: none\" /> \r\n \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    ','GalleryAlbum/ViewSlideshow',1,1,'KAMdiUdJykjN02CPHpyZOw',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n
    \n\n \n\n

    ^International(template listFilesForUser albums title,Asset_Gallery);

    \n \n \n \n \n \n
    \n \n

    ^International(template listFilesForUser pictures title,Asset_Gallery);

    \n \n \n
    \n \" class=\"title\">\n \n \n \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n \n
    ^International(\'template file creationDate\',\'Asset_GalleryAlbum\'); ^D(\"%z\", );
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n \n
    ','Gallery/ListFilesForUser',1,1,'OkphOEdaSGTXnFGhK4GT5A',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\n \n\n\n
    \n \n\n
    \n
    \n \">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ·\n ^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n

    \n \" class=\"thumbnail\">\" alt=\"Image\" />\n \n
    \n \n
    \n
    \n \" class=\"fullSize\">^International(\'template fileUrl\',\'Asset_Photo\');\n
    \n
    \n\n
    \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n \n \">\n \"first\n \n \n \"first\n \n
    \n\n
    \n\n
    \n
    \n ^International(template view details,Asset_Photo);\n
    \n \n ^International(\'template creationDate\',\'Asset_Photo\');:\n \n \n ^D(\"%z %Z\",);\n \n
    \n
    \n \n ^International(\'template views\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(\'template by\',\'Asset_Gallery\');:\n \n \n \">\n (\">^International(\'template filesForUser\', \'Asset_Photo\');)\n \n
    \n
    \n \n ^International(\'template friendsOnly label\',\'Asset_Photo\');:\n \n \n ^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n \n
    \n
    \n \n ^International(\'template location\',\'Asset_Photo\');:\n \n \n \n \n
    \n
    \n \n ^International(template view available resolutions,Asset_Photo);\n \n \n \n \">\n \n \n
    \n
    \n \n
    \n ^International(\'template keywords\',\'Asset_Photo\');\n \n \">, \n \n
    \n
    \n
    \n ^International(more details,Asset_Photo);\n
    \n \n
    rowOnerowTwo\">\n \n :\n \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n ^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n
    \n
    ','GalleryFile/View',1,1,'TEId5V-jEvUULsZA0wuRuA',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'\n\n\n
    \n\n
    \n
    \n\">^International(\'template url_album\',\'Asset_Photo\');    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n ·\n^International(\'template by\',\'Asset_Gallery\');: \">\n
    \n\n
    \n
    \n^International(template view details,Asset_Photo);\n
    \n
    \n^International(\'template creationDate\',\'Asset_Photo\');:\n
    \n
    \n^D(\"%z %Z\",);\n
    \n
    \n
    \n
    \n^International(\'template views\',\'Asset_Photo\');:\n
    \n
    \n\n
    \n
    \n
    \n
    \n^International(\'template by\',\'Asset_Gallery\');:\n
    \n\n
    \n
    \n
    \n^International(\'template friendsOnly label\',\'Asset_Photo\');:\n
    \n
    \n^International(\'template friendsOnly yes\',\'Asset_Photo\');^International(\'template friendsOnly no\',\'Asset_Photo\');\n
    \n
    \n
    \n
    \n^International(\'template location\',\'Asset_Photo\');:\n
    \n
    \n\n
    \n
    \n
    \n
    \n^International(template view available resolutions,Asset_Photo);\n
    \n
    \n\n\">\n\n
    \n
    \n
    \n\n
    \n^International(\'template keywords\',\'Asset_Photo\');\n\n\">, \n\n
    \n
    \n
    \n^International(more details,Asset_Photo);\n
    \n\n
    rowOnerowTwo\">\n
    \n:\n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n^International(\'template comments title\',\'Asset_Photo\'); [^International(post,Asset_Collaboration);]\n
    \n\n
    \n\n
    \n\n
    \n
    \n\n
    \n
    \n\n\n\n
    \n
    ',0,NULL,NULL),('\r\n\r\n\r\n
    \r\n \r\n\r\n
    \r\n
    \r\n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\r\n \r\n \r\n \r\n
    \r\n
    \r\n \r\n ^International(\'template add\',\'Asset_GalleryAlbum\');\r\n \r\n ^International(\'template edit\',\'Asset_GalleryAlbum\');\r\n \r\n
    \r\n\r\n

    \r\n\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \r\n
    \r\n \r\n
      \r\n \r\n
    1. \" class=\"galleryOrg\">\r\n
      \r\n \" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\r\n
      \r\n

      \r\n
      \r\n
      \r\n \r\n
      \r\n
      \r\n
    2. \r\n
      \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n \r\n
    \r\n \r\n
    ','GalleryAlbum/Edit',1,1,'6X-7Twabn5KKO_AbgK3PEw',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'\n
    \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n\n\n\n
    \n
    \n\n^International(\'template add\',\'Asset_GalleryAlbum\');\n\n^International(\'template edit\',\'Asset_GalleryAlbum\');\n\n
    \n

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'editForm title label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm description label\',\'Asset_GalleryAlbum\');
    ^International(\'editForm othersCanAdd label\',\'Asset_GalleryAlbum\');
    \n
    \n
      \n\n
    1. \" class=\"galleryOrg\">\n
      \n\" href=\"?func=edit;proceed=editParent\">\" alt=\"\" />\n
      \n

      \n
      \n
      \n\n
      \n
      \n
    2. \n
      \n
    \n
    \n
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n \n ^International(\'template add\',\'Asset_GalleryAlbum\');\n \n ^International(\'template edit\',\'Asset_GalleryAlbum\');\n \n
    \n\n

    \n\n

    \n\n \n

    ^International(\'template error happened\',\'Asset_Photo\');

    \n
      \n \n
    • \n
      \n
    \n
    \n\n \n\n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n ^International(\'template upload single\',\'Asset_GalleryAlbum\');\n \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'editForm title label\',\'Asset_Photo\');\n \n
    ^International(\'editForm synopsis label\',\'Asset_Photo\');\n \n
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');\n \n
    ^International(\'editForm keywords\',\'Asset_Photo\');\n \n
    ^International(\'editForm location\',\'Asset_Photo\');\n \n
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');\n \n
    \n\n \n\n \n\n
    ','GalleryFile/Edit',1,1,'7JCTAiu1U_bT9ldr655Blw',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">
    ^International(\'template add\',\'Asset_GalleryAlbum\');^International(\'template edit\',\'Asset_GalleryAlbum\');


    ^International(\'template error happened\',\'Asset_Photo\');

    ^International(\'template upload type\',\'Asset_GalleryAlbum\');^International(\'template upload single\',\'Asset_GalleryAlbum\'); \" class=\"adminButton\">^International(\'template upload archive\',\'Asset_GalleryAlbum\');
    ^International(\'editForm title label\',\'Asset_Photo\');
    ^International(\'editForm synopsis label\',\'Asset_Photo\');
    ^International(\'editForm photo new\',\'Asset_Photo\'); ^International(\'editForm photo replace\',\'Asset_Photo\');
    ^International(\'editForm keywords\',\'Asset_Photo\');
    ^International(\'editForm location\',\'Asset_Photo\');
    ^International(\'editForm friendsOnly\',\'Asset_Photo\');
    ',0,NULL,NULL),('
    \r\n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \r\n\r\n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \r\n\r\n \r\n

    \r\n
    \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\r\n \" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\r\n ^International(\'template upload archive\',\'Asset_GalleryAlbum\');\r\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\r\n \r\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \r\n \r\n
    \r\n \r\n
    \r\n \r\n \r\n\r\n
    ','GalleryAlbum/AddArchive',1,1,'0X4Q3tBWUb_thsVbsYz9xQ',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \n

    ^International(\'template addArchive title\',\'Asset_GalleryAlbum\');

    \n

    ^International(\'template addArchive body\',\'Asset_GalleryAlbum\');

    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    ^International(\'template upload type\',\'Asset_GalleryAlbum\');\n\" class=\"adminButton\">^International(\'template upload single\',\'Asset_GalleryAlbum\');\n^International(\'template upload archive\',\'Asset_GalleryAlbum\');\n
    ^International(\'addArchive file\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive keywords\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive location\',\'Asset_GalleryAlbum\');\n\n
    ^International(\'addArchive sortBy\',\'Asset_GalleryAlbum\');
    ^International(\'addArchive friendsOnly\',\'Asset_GalleryAlbum\');
    \n
    \n\n
    \n\n
    ',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n ^International(template makeShortcut title,Asset_Photo);\n
    \n\n

    \n\n
    \n\n \n \n \n \n \n \n \n \n \n \n
    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    \n\n
    \n \n
    \n\n \n
    \n
    ','GalleryFile/MakeShortcut',1,1,'m3IbBavqzuKDd2PGGhKPlA',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">
    ^International(template makeShortcut title,Asset_Photo);


    ^International(template makeShortcut file,Asset_Photo);
    ^International(template makeShortcut album,Asset_Photo);
    ',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_GalleryAlbum);\n
    \n\n

    \n\n \n\n
    ','GalleryAlbum/Delete',1,1,'UTNFeV7B_aSCRmmaFCq4Vw',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('
    \n \n \n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \n \n
    \n
    \n^International(template url_delete,Asset_Photo);\n
    \n\n

    \n\n \n
    ','GalleryFile/Delete',1,1,'zcX-wIUct0S_np14xxOA-A',1277868923,'WebGUI::Asset::Template::HTMLTemplate',1,'',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','GalleryAlbum/ViewRss',1,1,'mM3bjP_iG9sv5nQb4S17tQ',1277868926,'WebGUI::Asset::Template::HTMLTemplate',1,'<tmpl_var title><tmpl_var title>',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListAlbumsRss',1,1,'ilu5BrM-VGaOsec9Lm7M6Q',1277868926,'WebGUI::Asset::Template::HTMLTemplate',1,'<tmpl_var title><tmpl_var title>',0,NULL,NULL),('\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n<tmpl_var title>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Gallery/ListFilesForUserRss',1,1,'-ANLpoTEP-n4POAdRxCzRw',1277868926,'WebGUI::Asset::Template::HTMLTemplate',1,'<tmpl_var title><tmpl_var title>',0,NULL,NULL),('
    \n \n\n
    \n
    \n
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\">\n \n \"\"\n \n \"\"\n \"\"\n \n \"\"\n
    \n
    \n
    \n\n

    \n\n
    \n ^International(\"template comment add title\",\"Asset_Photo\");\n ^International(\"template comment edit title\",\"Asset_Photo\");\n \n \n
    \n
    \n \n
    \n \n
    \n
    \n \n
    \n
    ','GalleryFile/EditComment',1,1,'OxJWQgnGsgyGohP2L3zJPQ',1277868926,'WebGUI::Asset::Template::HTMLTemplate',1,'
    \" enctype=\"multipart/form-data\" method=\"GET\" class=\"searchBox\"> \"\" \"\"\"\" \"\"


    ^International(\"template comment add title\",\"Asset_Photo\");^International(\"template comment edit title\",\"Asset_Photo\");

    ',0,NULL,NULL),('

    ^International(\"choose username title\",\"Auth_Twitter\");

    \r\n

    \r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n','Auth/Twitter/ChooseUsername',1,1,'mfHGkp6t9gdclmzN33OEnw',1277868927,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\"choose username title\",\"Auth_Twitter\");

    \n

    \n
    \n\n\n\n\n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n\n \n
    \n \">Day\n \">Week\n \">Month\n \">Search\n \n
     
    \n\n
    \n \">Add Event\n \">Print\n \n \n
    \n
    \n \" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n \" style=\"font-size:7pt; padding-left:12px\">next » \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    active current\">\n \n \">\n \n\n \n \n \n\n /wobject/Calendar/images/more.gif\" />\n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    \n\n\n','Calendar/Month',1,1,'U78V5IJHVljvRTb6ydsTHg',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\n

    \n
    \n\n

    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n
    \n\">Day\n\">Week\n\">Month\n\">Search\n
     
    \n\n
    \n\" style=\"font-size:7pt; margin-right:12px;\">« prev\n \n\" style=\"font-size:7pt; padding-left:12px\">next »\n
    \n\n\n\n\n\n\n\n
    active current\">\n\n\">\n\n\n\n/wobject/Calendar/images/more.gif\" />\n\n\n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n\n
    \n
    \n
    ',0,NULL,NULL),('\n

    \n
    \n\n\n

    \n
    \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n \n\n\n \n
    \n \">^International(label day,Asset_Calendar);\n \">^International(label week,Asset_Calendar);\n \">^International(label month,Asset_Calendar);\n ?type=list\">^International(486,WebGUI);\n \">^International(label search,Asset_Calendar);\n\n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n\n
    \" class=\"moreDisplay\">\n
    \n
      \n \n
    • \">
    • \n
      \n
    \n
    \n
    \n
    ','Calendar/Month',1,1,'CalendarMonth000000001',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \">^International(label day,Asset_Calendar); \">^International(label week,Asset_Calendar); \">^International(label month,Asset_Calendar); ?type=list\">^International(486,WebGUI); \">^International(label search,Asset_Calendar);
    \" class=\"moreDisplay\">
    ',0,NULL,NULL),('\n\"> \n \n \n

    \n
    \n\n\n

    \n
    \n\n\n

    \n\n\n\n \n \n \n \n \n \n
    \n
    \n \n \n \n \n \n
    ^International(Stock Watch,Asset_StockData);\n
    \n ^International(Last Update,Asset_StockData);: EDT
    \n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n qmmt_cycleqmmt_main\'> \n \n \n \n \n \n \n \n
    Name SymbolLastTickChg
    \n \')\">\n \n /\" alt=\"\" /> \n _up_down\" style=\"text-align: right;whitespace:nowrap;\">
    \n
    ','StockData',1,1,'StockDataTMPL000000001',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'\">

    ^International(Stock Watch,Asset_StockData);
    ^International(Last Update,Asset_StockData);: EDT
    qmmt_cycleqmmt_main\'>
    Name SymbolLastTickChg
    \')\"> /\" alt=\"\" />_up_down\" style=\"text-align: right;whitespace:nowrap;\">
    ',0,NULL,NULL),('\n\n

    \n
    \n
    \n \n

    \n
    \n \n

    \n
    \n\n \n
      \n \n
    • \n
      \n
    \n
    \n\n\n \n \n \n \n
    \n \n \n
    \n ^International(comments,Asset_EMSSubmission);\n \n
    \n\n
    \n\n','EMS/Submission',1,1,'8tqyQx-LwYUHIWOlKPjJrA',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'

    -- the title of the form being used

    -- the description of the form being used
    \">^International(schedule back link,Asset_EventManagementSystem);
    ',0,NULL,NULL),('\n

    \n
    \n\n

    \n
    \n \n

    \n
    \n\n\n\n\n\n
    \n
    \n
      \n \n
    • class=\"selected\">\">
    • \n
      \n
    \n
    \n \n
    \">
    \n
    \n
    \n
    \n
    \n\n\">^International(schedule back link,Asset_EventManagementSystem);\n\n\n\n\n\n\n\n','EMS/SubmissionMain',1,1,'DoVNijm6lMDE0cYrtvEbDQ',1279073449,'WebGUI::Asset::Template::HTMLTemplate',1,'

    \r\n\r\ninsert tabset code here\r\n-- copy from helpdesk\r\n\r\n
    \">^International(schedule back link,Asset_EventManagementSystem); ',0,NULL,NULL),(' \n\n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n ^International(member since,Account_Inbox); ^D(%z,);\n
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">\n   \n \'\" />\n
    \n
    \n
    \n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    _name\"> []
    \n
    \n
    \n \n \n
    \n
    \n
    \n','Account/Inbox/SendMessage',1,1,'6uQEULvXFgCYlRWnYzZsuA',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(member since,Account_Inbox); ^D(%z,);
    ^International(reply message label,Account_Inbox);^International(compose message label,Account_Inbox);
    ^International(recipients label,Account_Inbox);^International(to label,Account_Inbox);:
    class=\"inbox_messageTo\"> [];
    ^International(subject label,Account_Inbox);:
    32\" class=\"send\">    \'\" />
    _name\"> []
    ',0,NULL,NULL),('

    \n \n

    \n\n \n\n\n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n \n \n\n
    \n\n\n\n
    \n \n
    ','Auth/LDAP/Create',1,1,'PBtmpl0000000000000005',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ',0,NULL,NULL),('

    \n\n\n \n\n\n\n\n\n\n\n \n \n\n\n\n \n \n\n\n \n \n\n\n\n \n \n\n\n\n\n \n \n\n\n\n \n\n\n \n\n
     
    \n\n\n
    \n \n
    \n','Auth/WebGUI/Create',1,1,'PBtmpl0000000000000011',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'

     
    ',0,NULL,NULL),('
    \n\n
    \n
    \n
    \n
    \n
    \n\n
    \n\n\n','EMS/SubmissionQueue',1,1,'ktSvKU8riGimhcsxXwqvPQ',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'
    ',0,NULL,NULL),('\n\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    ^International(search label,Asset_Matrix);
    \n
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n
    \n
    \n
    \n

    \">^International(Return to Matrix,Asset_Matrix);

    \n
    \n\n\n\n','Matrix/Search',1,1,'matrixtmpl000000000005',1279073450,'WebGUI::Asset::Template::HTMLTemplate',1,'

    ^International(\'search label\',\'Asset_Matrix\');

    ',0,NULL,NULL); -ALTER TABLE `template` ENABLE KEYS; -ALTER TABLE `userProfileCategory` DISABLE KEYS; -INSERT INTO `userProfileCategory` VALUES ('1','WebGUI::International::get(449,\"WebGUI\");','WebGUI::International::get(\"misc info short\",\"WebGUI\");',6,1,1,1),('2','WebGUI::International::get(440,\"WebGUI\");','WebGUI::International::get(\"contact info short\",\"WebGUI\");',2,1,1,1),('3','WebGUI::International::get(439,\"WebGUI\");','WebGUI::International::get(\"personal info short\",\"WebGUI\");',1,1,1,1),('4','WebGUI::International::get(445,\"WebGUI\");','WebGUI::International::get(\"preferences short\",\"WebGUI\");',7,0,1,1),('5','WebGUI::International::get(443,\"WebGUI\");','WebGUI::International::get(\"home info short\",\"WebGUI\");',3,1,1,1),('6','WebGUI::International::get(442,\"WebGUI\");','WebGUI::International::get(\"work info short\",\"WebGUI\");',4,1,1,1),('7','WebGUI::International::get(444,\"WebGUI\");','WebGUI::International::get(\"demographic info short\",\"WebGUI\");',5,1,1,1); -ALTER TABLE `userProfileCategory` ENABLE KEYS; -ALTER TABLE `userProfileData` DISABLE KEYS; -INSERT INTO `userProfileData` VALUES ('1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL,NULL,NULL,'none',0,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"none\"}',NULL,NULL),('3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'English',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'America/Chicago',NULL,NULL,NULL,'0','9',NULL,NULL,'none',NULL,NULL,NULL,NULL,'all',NULL,NULL,NULL,NULL,'{\"workCity\":\"all\",\"department\":\"all\",\"uiLevel\":\"none\",\"homeCountry\":\"all\",\"homeZip\":\"all\",\"firstDayOfWeek\":\"none\",\"photo\":\"all\",\"email\":\"all\",\"homeAddress\":\"all\",\"allowPrivateMessages\":\"none\",\"timeZone\":\"none\",\"firstName\":\"all\",\"birthdate\":\"all\",\"toolbar\":\"none\",\"yahooIM\":\"all\",\"workPhone\":\"all\",\"showMessageOnLoginSeen\":\"none\",\"middleName\":\"all\",\"workURL\":\"all\",\"signature\":\"all\",\"homeURL\":\"all\",\"homeState\":\"all\",\"alias\":\"all\",\"discussionLayout\":\"none\",\"workAddress\":\"all\",\"workCountry\":\"all\",\"avatar\":\"all\",\"publicProfile\":\"none\",\"dateFormat\":\"none\",\"ableToBeFriend\":\"none\",\"workName\":\"all\",\"icq\":\"all\",\"workZip\":\"all\",\"timeFormat\":\"none\",\"cellPhone\":\"all\",\"lastName\":\"all\",\"homePhone\":\"all\",\"versionTagMode\":\"none\",\"gender\":\"all\",\"showOnline\":\"none\",\"language\":\"none\",\"homeCity\":\"all\",\"aim\":\"all\",\"workState\":\"all\",\"emailToPager\":\"all\",\"msnIM\":\"all\",\"pager\":\"all\",\"publicEmail\":\"all\"}',NULL,NULL); -ALTER TABLE `userProfileData` ENABLE KEYS; -ALTER TABLE `userProfileField` DISABLE KEYS; -INSERT INTO `userProfileField` VALUES ('email','WebGUI::International::get(56,\"WebGUI\");',1,1,'email',NULL,NULL,1,'2',1,1,1,1,0,NULL,'all'),('firstName','WebGUI::International::get(314,\"WebGUI\");',1,0,'text',NULL,NULL,1,'3',1,1,1,0,0,NULL,'all'),('middleName','WebGUI::International::get(315,\"WebGUI\");',1,0,'text',NULL,NULL,2,'3',1,1,1,0,0,NULL,'all'),('lastName','WebGUI::International::get(316,\"WebGUI\");',1,0,'text',NULL,NULL,3,'3',1,1,1,0,0,NULL,'all'),('icq','WebGUI::International::get(317,\"WebGUI\");',1,0,'text',NULL,NULL,2,'2',1,1,1,0,0,NULL,'all'),('aim','WebGUI::International::get(318,\"WebGUI\");',1,0,'text',NULL,NULL,3,'2',1,1,1,0,0,NULL,'all'),('msnIM','WebGUI::International::get(319,\"WebGUI\");',1,0,'text',NULL,NULL,4,'2',1,1,1,0,0,NULL,'all'),('yahooIM','WebGUI::International::get(320,\"WebGUI\");',1,0,'text',NULL,NULL,5,'2',1,1,1,0,0,NULL,'all'),('cellPhone','WebGUI::International::get(321,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'2',1,1,1,0,0,NULL,'all'),('pager','WebGUI::International::get(322,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'2',1,1,1,0,0,NULL,'all'),('emailToPager','WebGUI::International::get(441,\"WebGUI\");',1,0,'email',NULL,NULL,8,'2',1,1,1,0,0,NULL,'all'),('language','WebGUI::International::get(304,\"WebGUI\");',1,0,'selectBox','WebGUI::International::getLanguages()','\'English\'',1,'4',1,1,1,0,0,NULL,'none'),('homeAddress','WebGUI::International::get(323,\"WebGUI\");',1,0,'text',NULL,NULL,1,'5',1,1,1,0,0,NULL,'none'),('homeCity','WebGUI::International::get(324,\"WebGUI\");',1,0,'text',NULL,NULL,2,'5',1,1,1,0,0,NULL,'none'),('homeState','WebGUI::International::get(325,\"WebGUI\");',1,0,'text',NULL,NULL,3,'5',1,1,1,0,0,NULL,'none'),('homeZip','WebGUI::International::get(326,\"WebGUI\");',1,0,'zipcode',NULL,NULL,4,'5',1,1,1,0,0,NULL,'none'),('homeCountry','WebGUI::International::get(327,\"WebGUI\");',1,0,'text',NULL,NULL,5,'5',1,1,1,0,0,NULL,'none'),('homePhone','WebGUI::International::get(328,\"WebGUI\");',1,0,'phone',NULL,NULL,6,'5',1,1,1,0,0,NULL,'none'),('workAddress','WebGUI::International::get(329,\"WebGUI\");',1,0,'text',NULL,NULL,2,'6',1,1,1,0,0,NULL,'all'),('workCity','WebGUI::International::get(330,\"WebGUI\");',1,0,'text',NULL,NULL,3,'6',1,1,1,0,0,NULL,'all'),('workState','WebGUI::International::get(331,\"WebGUI\");',1,0,'text',NULL,NULL,4,'6',1,1,1,0,0,NULL,'all'),('workZip','WebGUI::International::get(332,\"WebGUI\");',1,0,'zipcode',NULL,NULL,5,'6',1,1,1,0,0,NULL,'all'),('workCountry','WebGUI::International::get(333,\"WebGUI\");',1,0,'text',NULL,NULL,6,'6',1,1,1,0,0,NULL,'all'),('workPhone','WebGUI::International::get(334,\"WebGUI\");',1,0,'phone',NULL,NULL,7,'6',1,1,1,0,0,NULL,'all'),('gender','WebGUI::International::get(335,\"WebGUI\");',1,0,'SelectBox','{\r\n \'other\'=>WebGUI::International::get(403),\r\n \'male\'=>WebGUI::International::get(339),\r\n \'female\'=>WebGUI::International::get(340)\r\n}','\'other\'',1,'7',1,1,0,0,0,'','none'),('birthdate','WebGUI::International::get(336,\"WebGUI\");',1,0,'date',NULL,NULL,2,'7',1,1,1,0,0,NULL,'none'),('homeURL','WebGUI::International::get(337,\"WebGUI\");',1,0,'url',NULL,NULL,7,'5',1,1,1,0,0,NULL,'none'),('workURL','WebGUI::International::get(446,\"WebGUI\");',1,0,'url',NULL,NULL,8,'6',1,1,1,0,0,NULL,'all'),('workName','WebGUI::International::get(450,\"WebGUI\");',1,0,'text',NULL,NULL,1,'6',1,1,1,0,0,NULL,'all'),('timeZone','WebGUI::International::get(\"timezone\",\"DateTime\");',1,0,'timeZone','','\'America/Chicago\'',3,'4',1,1,1,0,0,NULL,'none'),('dateFormat','WebGUI::International::get(461,\"WebGUI\");',1,0,'selectBox','{\n\'%d-%m-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d-%m-%y\"),\n\'%d.%m.%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%d.%m.%y\"),\r\n \'%M/%D/%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%M/%D/%y\"),\r\n \'%y-%m-%d\'=>WebGUI::DateTime::epochToHuman(\"\",\"%y-%m-%d\"),\r\n \'%D-%c-%y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%D-%c-%y\"),\r\n \'%c %D, %y\'=>WebGUI::DateTime::epochToHuman(\"\",\"%c %D, %y\")\r\n}\r\n','\'%M/%D/%y\'',4,'4',1,1,1,0,0,NULL,'none'),('timeFormat','WebGUI::International::get(462,\"WebGUI\");',1,0,'selectBox','{\r\n \'%H:%n %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n %p\"),\r\n \'%H:%n:%s %p\'=>WebGUI::DateTime::epochToHuman(\"\",\"%H:%n:%s %p\"),\r\n \'%j:%n\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n\"),\r\n \'%j:%n:%s\'=>WebGUI::DateTime::epochToHuman(\"\",\"%j:%n:%s\")\r\n}\r\n','\'%H:%n %p\'',5,'4',1,1,1,0,0,NULL,'none'),('discussionLayout','WebGUI::International::get(509)',1,0,'selectBox','{\n flat=>WebGUI::International::get(510),\n nested=>WebGUI::International::get(1045)\n}','\'nested\'',6,'4',1,1,1,0,0,NULL,'none'),('firstDayOfWeek','WebGUI::International::get(699,\"WebGUI\");',1,0,'selectBox','{0=>WebGUI::International::get(\"sunday\",\"DateTime\"),1=>WebGUI::International::get(\"monday\",\"DateTime\")}','0',2,'4',1,1,1,0,0,'','none'),('uiLevel','WebGUI::International::get(739,\"WebGUI\");',0,0,'selectBox','{\r\n0=>WebGUI::International::get(729,\"WebGUI\"),\r\n1=>WebGUI::International::get(730,\"WebGUI\"),\r\n2=>WebGUI::International::get(731,\"WebGUI\"),\r\n3=>WebGUI::International::get(732,\"WebGUI\"),\r\n4=>WebGUI::International::get(733,\"WebGUI\"),\r\n5=>WebGUI::International::get(734,\"WebGUI\"),\r\n6=>WebGUI::International::get(735,\"WebGUI\"),\r\n7=>WebGUI::International::get(736,\"WebGUI\"),\r\n8=>WebGUI::International::get(737,\"WebGUI\"),\r\n9=>WebGUI::International::get(738,\"WebGUI\")\r\n}','\'5\'',7,'4',1,0,1,0,0,NULL,'none'),('alias','WebGUI::International::get(858)',1,0,'text','','',4,'3',1,1,1,0,0,NULL,'all'),('signature','WebGUI::International::get(859)',1,0,'HTMLArea','','',5,'3',1,1,1,0,0,NULL,'all'),('publicProfile','WebGUI::International::get(861)',1,0,'RadioList','{ all=>WebGUI::International::get(\'public label\',\'Account_Profile\'), friends=>WebGUI::International::get(\'friends only label\',\'Account_Profile\'), none=>WebGUI::International::get(\'private label\',\'Account_Profile\')}','[\"none\"]',8,'4',1,1,0,0,0,'','none'),('toolbar','WebGUI::International::get(746)',0,0,'selectBox','WebGUI::Icon::getToolbarOptions()','\'useLanguageDefault\'',9,'4',1,0,1,0,0,NULL,'none'),('photo','WebGUI::International::get(\"photo\",\"WebGUI\");',1,0,'Image','','',6,'3',1,1,1,0,0,NULL,'all'),('avatar','WebGUI::International::get(\"avatar\",\"WebGUI\");',1,0,'Image','','',1,'1',1,1,1,0,0,NULL,'none'),('department','WebGUI::International::get(\'Department\',\'Asset_InOutBoard\')',1,0,'selectBox','{\'IT\'=>WebGUI::International::get(\'IT\',\'Asset_InOutBoard\'),\'HR\'=>WebGUI::International::get(\'HR\',\'Asset_InOutBoard\'),\'Regular Staff\'=>WebGUI::International::get(\'Regular Staff\',\'Asset_InOutBoard\')}\n','\'Regular Staff\'',8,'6',0,1,1,0,0,NULL,'all'),('allowPrivateMessages','WebGUI::International::get(\"allow private messages label\",\"WebGUI\")',1,0,'RadioList','{ all=>WebGUI::International::get(\"user profile field private message allow label\",\"WebGUI\"), friends=>WebGUI::International::get(\"user profile field private message friends only label\",\"WebGUI\"), none=>WebGUI::International::get(\"user profile field private message allow none label\",\"WebGUI\"),}','[\"all\"]',10,'4',1,1,1,0,0,NULL,'none'),('ableToBeFriend','WebGUI::International::get(\'user profile field friend availability\',\'WebGUI\')',0,0,'yesNo',NULL,'1',2,'1',1,1,1,0,0,'','none'),('showMessageOnLoginSeen','WebGUI::International::get(\"showMessageOnLoginSeen\",\"Auth\");',0,0,'integer',NULL,'0',3,'1',1,0,1,0,0,NULL,'none'),('showOnline','WebGUI::International::get(\'Show when online?\',\'WebGUI\')',1,0,'YesNo',NULL,'0',11,'4',1,1,1,0,0,'','none'),('versionTagMode','WebGUI::International::get(\"version tag mode\",\"WebGUI\");',1,0,'selectBox','\n{\n inherited => WebGUI::International::get(\"versionTagMode inherited\"),\n multiPerUser => WebGUI::International::get(\"versionTagMode multiPerUser\"),\n singlePerUser => WebGUI::International::get(\"versionTagMode singlePerUser\"),\n siteWide => WebGUI::International::get(\"versionTagMode siteWide\"),\n autoCommit => WebGUI::International::get(\"versionTagMode autoCommit\"),\n}\n','inherited',12,'4',1,1,0,0,0,'','none'),('receiveInboxEmailNotifications','WebGUI::International::get(\'receive inbox emails\',\'WebGUI\')',1,0,'yesNo',NULL,'1',13,'4',1,1,1,0,0,'','none'),('receiveInboxSmsNotifications','WebGUI::International::get(\'receive inbox sms\',\'WebGUI\')',1,0,'yesNo',NULL,'0',14,'4',1,1,1,0,0,'','none'); -ALTER TABLE `userProfileField` ENABLE KEYS; -ALTER TABLE `users` DISABLE KEYS; -INSERT INTO `users` VALUES ('1','Visitor','WebGUI',1019867418,1238721273,0,'Active','0',''),('3','Admin','WebGUI',1019867418,1251850059,0,'Active','1','Fwa7nt7HAQkelbjCRrtqKQ'); -ALTER TABLE `users` ENABLE KEYS; -ALTER TABLE `vendor` DISABLE KEYS; -INSERT INTO `vendor` VALUES ('defaultvendor000000000','2008-06-12 19:43:10','Default Vendor','3',NULL,NULL,NULL,NULL); -ALTER TABLE `vendor` ENABLE KEYS; -ALTER TABLE `wobject` DISABLE KEYS; -INSERT INTO `wobject` VALUES (1,'

    What\'s that you say? WebGUI\'s thousands of features are still missing some important ones? No problem, our professional development team can add any features you need for your site. We\'ve built hundreds of custom apps for people. From simple macros, to custom single sign on systems, to applications that will manage your entire company, our team can do it.

    ','4Yfz9hqBqM8OYMGuQK8oLw','stevestyle000000000003','stevestyle000000000003',1147642516,'stevestyle000000000003'),(0,'\n

    \nNow you should log in and go into admin mode. The default username is \"admin\" and the default password is \"123qwe\", but you probably customized both of those when you visited this site for the very first time.\n

    \n

    \nNow that you\'re logged in, we recommend that you add a new user for yourself with admin privileges just in case you forget the login information for your primary admin account. Don\'t worry if you lock yourself out, you can always contact Plain Black® support to get instructions to get back in.\n

    NOTE: If you appear to be get logged out while moving between pages, this is most likely your browser displaying a cached version of the page. Click on your browser\'s refresh button to correct the problem.

    \n

    \nNo doubt after you enabled admin mode you saw a menu along the left side of the screen, that\'s called the Admin Bar. Use that to add content and access administrative functions. You\'re now ready to begin exploring your new WebGUI site.

    \n

    \nFor more information about services related to WebGUI click here.\n

    \n

    \nEnjoy your new WebGUI site!\n

    \n','NK8bqlwVRILJknqeCDPBHg','stevestyle000000000003','stevestyle000000000003',1147642515,'stevestyle000000000003'),(1,'

    Plain Black® created the WebGUI Content Engine® and is here to answer your questions and provide you with services to make sure your WebGUI implementation is entirely successful. We bend over backwards to make sure you\'re a success. Contact us today to see how we can help you.

    ','6QuS-0rosuZTdTv11fobig','stevestyle000000000003','stevestyle000000000003',1147642515,'stevestyle000000000003'),(1,'

    Plain Black provides support packages to fit any budget or need. Start out with online support which costs only $500 per year! And grow support as your needs grow. We build custom support packages to match our client\'s needs. And no matter what level of support you purchase, you get WebGUI Documentation included in your purchase.

    ','ix1p0AbwKAz8QWB-T-HHfg','stevestyle000000000003','stevestyle000000000003',1147642516,'stevestyle000000000003'),(1,'\n

    \nEasy To Use - WebGUI is absolutely easy to use. WebGUI 7 has a completely revamped user interface to make it even easier to use. There are lots of visual cues, consistent icons, helper apps, and a huge repository of built-in help files.\n

    \n

    \nWorkflow & Versioning - Never again worry about content getting put on your site that you don\'t want there. Never again lose your old content after making an edit. And never again push out new changes until you\'re absolutely ready to release them. WebGUI\'s workflow and versioning system is fast, flexible, powerful, and easy to use.\n

    \n

    \nEverything\'s a Template - Worry nevermore about your CMS forcing you into a mould that doesn\'t suit you. With WebGUI everything a site visitor can see is a customizable template, so you can make it look exactly how you want. Moreover if you\'re the type that strives for excellence rest in the knowledge that all the templates that come with WebGUI are XHTML 1.0 strict compliant.\n

    \n

    \nLocalization - WebGUI\'s entire user interface is set up to be internationalized. Visit one of the WebGUI Worldwide member sites to get translations for your language. Stay there to get support and services in your native language. Feel confident in the knowledge that WebGUI will work with your native characters because it\'s UTF-8 compliant. On top of that WebGUI allows you to customize dates, currency, and weights to match your locale. \n

    \n

    \nPluggable By Design - With WebGUI 7 you have many plug-in points to add your own functionality. And best of all, the API is stable and standardized. Write it today and it will still work years from now and survive all upgrades.\n

    \n','IWFxZDyGhQ3-SLZhELa3qw','stevestyle000000000003','stevestyle000000000003',1147642514,'stevestyle000000000003'),(1,'

    The WebGUI Content Engine® is a powerful and easy to use system for managing web sites, and building web applications. It provides thousands of features out of the box, and lots of plug-in points so you can extend it to match your needs. It\'s easy enough for the average business user, but powerful enough for any large enterprise.

    \n\n

    There are thousands of small and large businesses, schools, universities, governments, associations, clubs, churches, projects, and communities using WebGUI all over the world today. A brief list of some of them can be found here. Your site should be on that list.

    \n\n

    If you\'re new to WebGUI, click here to learn how to get started. If you\'re getting up to speed, check out some ways you can do more faster. If this is all old hat to you, then check out the latest news. No matter what level you\'re at tell your friends about WebGUI.

    ','OhdaFLE7sXOzo_SIP2ZUgA','stevestyle000000000003','stevestyle000000000003',1147642513,'stevestyle000000000003'),(0,'This is the latest news from Plain Black and WebGUI pulled directly from the site every hour.','fK-HMSboA3uu0c1KYkYspA','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'pJd5TLAjfWMVXD6sCRLwUg','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'68sKwDgf9cGH58-NZcU4lg','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'_iHetEvMQUOoxS-T2CM0sQ','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'8Bb8gu-me2mhL3ljFyiWLg','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'2TqQc4OISddWCZmRY1_m8A','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'Swf6L8poXKc7hUaNPkBevw','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(0,NULL,'x3OFY6OJh_qsXkZfPwug4A','stevestyle000000000003','PBtmpl0000000000000111',1124395696,'stevestyle000000000003'),(1,NULL,'PBasset000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000026','PBtmpl0000000000000060','',1147642499,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000001','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000014','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000015','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000016','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000017','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000018','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000019','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000020','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000021','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000002','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000006','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000007','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000008','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000009','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000010','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000011','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000012','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'PBnav00000000000000013','PBtmpl0000000000000060','PBtmpl0000000000000111',1124395696,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000070','PBtmpl0000000000000060','PBtmpl0000000000000060',1147642510,'PBtmpl0000000000000060'),(1,'

    Let our team of professional translators bring your site to new customers by translating your content into additional languages. Our translation services are never machine automated. They\'re always done by professional translators that have years of experience reading, writing, and speaking many languages.

    ','LBuiKzg2mWwmOPS9AgV3bg','stevestyle000000000003','stevestyle000000000003',1147642517,'stevestyle000000000003'),(1,'

    Now that you have a brilliant WebGUI site, you need to get people to visit it. We can help there too. Our marketing specialists can work with you to develop and execute the right combination of search engine placement, advertising buys, and affilliate programs to ensure your site gets the traffic it needs.

    ','jTNggl7AoVSUc_ZzrvuCmw','stevestyle000000000003','stevestyle000000000003',1147642517,'stevestyle000000000003'),(1,NULL,'7-0-style0000000000001','PBtmpl0000000000000060','',1147642492,'PBtmpl0000000000000060'),(1,'\n

    \nIf you\'re reading this message that means you\'ve successfully installed and configured the WebGUI Content Engine®. Great job! To get started with managing content, watch the short instructional video below.\n

    \n

    NOTE: Click on the green start icon on the video to begin your tutorial.

    ','bX5rYxb6tZ9docY6sUhBlw','stevestyle000000000003','stevestyle000000000003',1147642514,'stevestyle000000000003'),(1,NULL,'7-0-style0000000000031','PBtmpl0000000000000060','',1147642500,'PBtmpl0000000000000060'),(0,NULL,'7-0-style0000000000025','PBtmpl0000000000000060','',1147642498,'PBtmpl0000000000000060'),(1,NULL,'PBasset000000000000003','PBtmpl0000000000000060','PBtmpl0000000000000111',1147642437,'PBtmpl0000000000000060'),(1,NULL,'nbSrhXZQuxIjhWFaFPSuVA','PBtmpl0000000000000060','',1147642465,'PBtmpl0000000000000060'),(1,NULL,'S1A9iAwKcQQ6P20uTqw-Ew','PBtmpl0000000000000060','',1147642468,'PBtmpl0000000000000060'),(1,'

    Not a designer? No problem! Plain Black\'s professional design team can make your site look great. Our team is fast, easy to work with, and can even migrate your existing content into your new WebGUI site.

    ','Wl8WZ43g2rK5AYr9o4zY7w','stevestyle000000000003','stevestyle000000000003',1247779880,'stevestyle000000000003'),(1,NULL,'N13SD1Fpqk00UgBt1Z8ivQ','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'-WM2dt0ZGpDasuL2wWocxg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803056,'PBtmpl0000000000000060'),(1,NULL,'3uuBf8cYuj1sew2OJXl9tg','PBtmpl0000000000000060','',1147642470,'PBtmpl0000000000000060'),(1,NULL,'cj2y4papTVGZRFdwTI-_fw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'bBzO4CWjqU_ile3gf5Iypw','PBtmpl0000000000000060','',1147642475,'PBtmpl0000000000000060'),(1,NULL,'Da6KWn805L4B5e4HFgQRQA','PBtmpl0000000000000060','',1147642479,'PBtmpl0000000000000060'),(0,'Tell a friend about WebGUI.','Szs5eev3OMssmnsyLRZmWA','stevestyle000000000003','PBtmpl0000000000000111',1213317790,'stevestyle000000000003'),(1,NULL,'bbiA9Zq5Gy2oCFBlILO3QA','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'Efe2W0UgrSRDltNJ87jlfg','PBtmpl0000000000000060','',1147642480,'PBtmpl0000000000000060'),(1,NULL,'9wKWdum0_8z-OhhquWLtSQ','PBtmpl0000000000000060','',1147642483,'PBtmpl0000000000000060'),(1,NULL,'CSN-ZON7Uwv8kxf3F1fh5Q','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'TCtybxdqmdwdvRn555zpCQ','PBtmpl0000000000000060','',1147642484,'PBtmpl0000000000000060'),(1,NULL,'pbproto000000000000002','PBtmpl0000000000000060','',1163019036,'PBtmpl0000000000000060'),(1,NULL,'tempspace0000000000000','PBtmpl0000000000000060','PBtmpl0000000000000060',1185754574,'PBtmpl0000000000000060'),(1,NULL,'Tsg7xmPYv782j6IVz7yHFg','PBtmpl0000000000000060','PBtmpl0000000000000111',1213244777,'PBtmpl0000000000000060'),(1,'

    WebGUI Documentation is the ultimate compendium to WebGUI. This is a must for anyone working in WebGUI, and Plain Black offers vast bulk discounts so you can give it to everyone in your organization.

    ','FOvmwGC0GtZo5VTxJIL3OA','stevestyle000000000003','stevestyle000000000003',1247779862,'stevestyle000000000003'),(1,NULL,'TYo2Bwl7aafzTtdHlS-arQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1211664878,'PBtmpl0000000000000060'),(1,NULL,'6tK47xsaIH-ELw0IBo0uRQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1210777115,'PBtmpl0000000000000060'),(1,NULL,'gbnRhcWNk1iQe32LFEB5eQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1212086102,'PBtmpl0000000000000060'),(1,NULL,'6D4Z-oruXPS6OlH_Kx8pBg','PBtmpl0000000000000060','PBtmpl0000000000000111',1209509389,'PBtmpl0000000000000060'),(1,NULL,'C5fPz-Wg85vkYRvCdl-Xqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1212160830,'PBtmpl0000000000000060'),(1,'

    There are hundreds of pages of free documentation available for WebGUI, provided by both Plain Black and the community at large. The following list is by no means comprehensive, but it should get you started in the right direction.

    \n

    \n

    \n
      \n
    • Primer - A downloadable PDF that shows you the basics of publishing content in WebGUI.
    • \n
    • Wiki - Hundreds of pages of WebGUI community contributed content featuring a variety of tutorials.
    • \n
    • Worldwide - A collection of WebGUI related web sites from all over the world that have documentation and other resources for WebGUI.
    • \n
    • API Docs - The documentation of all of the WebGUI source code.
    • \n
    • Template Help - The documentation of all of WebGUI\'s template variables.
    • \n
    \n

     

    ','j_1qEqM6iLfQLiR6VKy0aA','stevestyle000000000003','PBtmpl0000000000000111',1215718151,'stevestyle000000000003'),(1,'

    Plain Black has created a whole line of commercial books which total over 1500 pages of detailed documentation about WebGUI. Both black and white and full color editions of these books are available, and they are updated frequently to keep you on top of the latest WebGUI features. Visit the book store today to stock your WebGUI library. Other than hands on training, there is no better way to hone your WebGUI skills. No matter what your need, Plain Black has created a book that\'s right for you and is creating new books each year.

    ','diZvW4bSgZWwyyGP3qXi1g','stevestyle000000000003','PBtmpl0000000000000111',1215717972,'stevestyle000000000003'),(1,NULL,'jnYdqDkUR8x7Pv2eGR1qTA','PBtmpl0000000000000060','PBtmpl0000000000000111',1216250666,'PBtmpl0000000000000060'),(1,'

    With any large system, having the right documentation to get you started is mandatory. The good news is that WebGUI has abundant documentation.

    ','mTOiwwk3q4k9g5-XykXhPA','stevestyle000000000003','PBtmpl0000000000000111',1218149728,'stevestyle000000000003'),(1,NULL,'2OcUWHVsu_L1sDFzIMWYqw','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803070,'PBtmpl0000000000000060'),(1,NULL,'zyWi26q9na-iiZqL4yedog','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803114,'PBtmpl0000000000000060'),(1,NULL,'tBL7BWiQRZFed2Y-Zjo9tQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803200,'PBtmpl0000000000000060'),(1,NULL,'GdkQpvjRtJqtzOUbwIIQRA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803205,'PBtmpl0000000000000060'),(1,NULL,'tnc5iYyynX2hfdEs9D3P8w','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803213,'PBtmpl0000000000000060'),(1,NULL,'vgXdBcFTqU7h4wBG1ewdBw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803217,'PBtmpl0000000000000060'),(1,NULL,'hcFlqnXlsmC1ujN6Id0F0A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803234,'PBtmpl0000000000000060'),(1,NULL,'eRJR52fvlaxfetv3DQkQYw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803238,'PBtmpl0000000000000060'),(1,NULL,'5HIDHq5lAWHV5gpYGS0zLg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803244,'PBtmpl0000000000000060'),(1,NULL,'rYEFwXXo0tkGhQTcbDibvg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803249,'PBtmpl0000000000000060'),(1,NULL,'V3l5S5TtI7wMm1WpIMhvOA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803253,'PBtmpl0000000000000060'),(1,NULL,'nqNbSUAhk9Vd1zda2SCz9A','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803258,'PBtmpl0000000000000060'),(1,NULL,'y8XkRdxIperLKkJ3bL5sSQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803264,'PBtmpl0000000000000060'),(1,NULL,'vTymIDYL2YqEh6PV50F7ew','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803302,'PBtmpl0000000000000060'),(1,NULL,'lo1ac3BsoJx3ijGQ3gR-bQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803309,'PBtmpl0000000000000060'),(1,NULL,'huASapWvFDzqwOSbcN-JFQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803313,'PBtmpl0000000000000060'),(1,NULL,'9A-mg2gwWmaYi9o_1C7ArQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803338,'PBtmpl0000000000000060'),(1,NULL,'yD1SMHelczihzjEmx6eXBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803342,'PBtmpl0000000000000060'),(1,NULL,'pV7GnZdpjR3XpZaSINIoeg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803347,'PBtmpl0000000000000060'),(1,NULL,'71e17KeduiXgODLMlUxiow','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803352,'PBtmpl0000000000000060'),(1,NULL,'Ik9HHky10DIyFTKehUD1dw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803478,'PBtmpl0000000000000060'),(1,NULL,'NywJYmGWe1f6EBXJnWg9Xg','PBtmpl0000000000000060','PBtmpl0000000000000111',1222803638,'PBtmpl0000000000000060'),(1,NULL,'AgyFhx3eXlfZXNp2MkrsiQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803665,'PBtmpl0000000000000060'),(1,NULL,'F7MAQ-cpuvQ1KuC7J4P5zQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803673,'PBtmpl0000000000000060'),(1,NULL,'BmLaN4rmAANkCglXUViEbg','PBtmpl0000000000000060','PBtmpl0000000000000060',1222803871,'PBtmpl0000000000000060'),(1,NULL,'X7DrzUcj8pOKFa_6k9D5iw','PBtmpl0000000000000060','PBtmpl0000000000000060',1222804045,'PBtmpl0000000000000060'),(1,NULL,'UL-ItI4L1Z6-WSuhuXVvsQ','stevestyle000000000003','PBtmpl0000000000000111',1225139673,'stevestyle000000000003'),(1,NULL,'7-0-style0000000000049','PBtmpl0000000000000060','PBtmpl0000000000000060',1224117144,'PBtmpl0000000000000060'),(0,NULL,'jVKLVakT_iA2010_oEuAwg','PBtmpl0000000000000060','PBtmpl0000000000000060',1224116526,'PBtmpl0000000000000060'),(1,'

     

    ','QpmlAiYZz6VsKBM-_0wXaw','stevestyle000000000003','PBtmpl0000000000000111',1224616691,'stevestyle000000000003'),(1,NULL,'HPDOcsj4gBme8D4svHodBw','PBtmpl0000000000000060','PBtmpl0000000000000111',1225404573,'PBtmpl0000000000000060'),(1,NULL,'IZkrow_zwvbf4FCH-taVTQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1226011853,'PBtmpl0000000000000060'),(1,NULL,'K0YjxqOqr7RupSo6sIdcAg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074310,'PBtmpl0000000000000060'),(1,NULL,'_ilRXNR3s8F2vGJ_k9ePcg','PBtmpl0000000000000060','PBtmpl0000000000000111',1226643205,'PBtmpl0000000000000060'),(1,NULL,'qaVcU0FFzzraMX_bzELqzw','PBtmpl0000000000000060','PBtmpl0000000000000111',1227074362,'PBtmpl0000000000000060'),(1,NULL,'LdiozcIUciWuvt3Z-na5Ww','PBtmpl0000000000000060','PBtmpl0000000000000060',1232673968,'PBtmpl0000000000000060'),(1,NULL,'QHn6T9rU7KsnS3Y70KCNTg','PBtmpl0000000000000060','PBtmpl0000000000000111',1233173545,'PBtmpl0000000000000060'),(1,NULL,'HW-sPoDDZR8wBZ0YgFgPtg','PBtmpl0000000000000060','PBtmpl0000000000000111',1227634350,'PBtmpl0000000000000060'),(1,NULL,'Vch1Ww7G_JpBhOhXX07RDg','PBtmpl0000000000000060','PBtmpl0000000000000111',1235705952,'PBtmpl0000000000000060'),(1,NULL,'AOjPG2NHgfL9Cq6dDJ7mew','PBtmpl0000000000000060','PBtmpl0000000000000111',1236960881,'PBtmpl0000000000000060'),(1,NULL,'jmlI9IK-lV8n2WMYmmPhAA','PBtmpl0000000000000060','PBtmpl0000000000000111',1238106173,'PBtmpl0000000000000060'),(1,NULL,'6uvSLY-ak_w4p_wS8q33cA','PBtmpl0000000000000060','PBtmpl0000000000000111',1239213092,'PBtmpl0000000000000060'),(1,NULL,'GaBAW-2iVhLMJaZQzVLE5A','stevestyle000000000003','PBtmpl0000000000000111',1240103565,'stevestyle000000000003'),(1,'

    Templates for the Friend Manager

    ','lo1rpxn3t8YPyKGers5eQg','PBtmpl0000000000000060','PBtmpl0000000000000111',1238625621,'PBtmpl0000000000000060'),(1,NULL,'aNNC62qLAS6TB-0_MCYjsw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246969327,'PBtmpl0000000000000060'),(1,NULL,'BFfNj5wA9bDw8H3cnr8pTw','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046273,'PBtmpl0000000000000060'),(1,NULL,'f_tn9FfoSfKWX43F83v_3w','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053009,'PBtmpl0000000000000060'),(1,NULL,'oGfxez5sksyB_PcaAsEm_Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1247053097,'PBtmpl0000000000000060'),(1,NULL,'tPagC0AQErZXjLFZQ6OI1g','PBtmpl0000000000000060','PBtmpl0000000000000060',1246966459,'PBtmpl0000000000000060'),(1,NULL,'GYaFxnMu9UsEG8oanwB6TA','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965871,'PBtmpl0000000000000060'),(1,NULL,'VZK3CRgiMb8r4dBjUmCTgQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1247046242,'PBtmpl0000000000000060'),(1,NULL,'tXwf1zaOXTvsqPn6yu-GSw','PBtmpl0000000000000060','PBtmpl0000000000000060',1246965607,'PBtmpl0000000000000060'),(1,'

    Who better to host your WebGUI sites than Plain Black. Let us deal with upgrades, security, and server management. Doing so lets you focus on building your WebGUI site, which is where your time and expertise should be spent. And when you sign up with hosting, online support is included!

    ','iCYOjohB9SKvAPr6bXElKA','stevestyle000000000003','stevestyle000000000003',1247779898,'stevestyle000000000003'),(1,NULL,'5bnNzteN7w3NnK9mF4XiCg','PBtmpl0000000000000060','PBtmpl0000000000000060',1250243000,'PBtmpl0000000000000060'),(1,NULL,'RSAMkc6WQmfRE3TOr1_3Mw','PBtmpl0000000000000060','PBtmpl0000000000000111',1250243000,'PBtmpl0000000000000060'),(1,NULL,'fowHfgOkJtAxdst7rugTog','PBtmpl0000000000000060','PBtmpl0000000000000111',1252595993,'PBtmpl0000000000000060'),(1,NULL,'TvOZs8U1kRXLtwtmyW75pg','PBtmpl0000000000000060','PBtmpl0000000000000060',1256092368,'PBtmpl0000000000000060'),(1,NULL,'brxm_faNdZX5tRo3p50g3g','PBtmpl0000000000000060','PBtmpl0000000000000111',1256092368,'PBtmpl0000000000000060'),(1,NULL,'4qh0kIsFUdd4Ox-Iu1JZgg','PBtmpl0000000000000060','PBtmpl0000000000000111',1257311886,'PBtmpl0000000000000060'),(1,'

     

    ','-K8Hj45mbelljN9-0CXZxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1257311887,'PBtmpl0000000000000060'),(1,NULL,'RrV4aAPnn4dM0ZcU3OXnlw','PBtmpl0000000000000060','PBtmpl0000000000000060',1258524916,'PBtmpl0000000000000060'),(1,NULL,'P_4uog81vSUK4KxuW_4GUA','PBtmpl0000000000000060','PBtmpl0000000000000111',1258524916,'PBtmpl0000000000000060'),(1,NULL,'1z9J1O08n_7gVVlBwSRBJQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1269401468,'PBtmpl0000000000000060'),(1,NULL,'xSmREZO3GNzK3M5PaueOOQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'0bx-xoL8TSXXubFuqKAoVQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'taX2UYkFF21ALpFZY2rhMw','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'K0q_N885Httqev1VCqUWxg','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'fq1ZkYhH24R5tb96kuT10Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'oHk7fAFhEEkB7dHzi0QOQA','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401468,'PBtmpl0000000000000060'),(1,NULL,'9M-lrlPQWeeNWfvnDnK_Xg','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401469,'PBtmpl0000000000000060'),(1,NULL,'_gBYAdTcbkiyamnqi2Xskg','PBtmpl0000000000000060','PBtmpl0000000000000060',1269401469,'PBtmpl0000000000000060'),(1,NULL,'0iMMbGN3BevuCBHjjLiQNA','PBtmpl0000000000000060','PBtmpl0000000000000111',1269401469,'PBtmpl0000000000000060'),(1,NULL,'6A4yIjWwJfIE0Ep-I0jutg','PBtmpl0000000000000060','PBtmpl0000000000000111',1269401469,'PBtmpl0000000000000060'),(1,NULL,'aNmgn0cd6tldmC1FpW4KbA','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032714,'PBtmpl0000000000000060'),(1,NULL,'jEz8iTGNWEt2I05IhVV19Q','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032715,'PBtmpl0000000000000060'),(0,NULL,'t87D1138NhPHhA23-hozBA','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(0,NULL,'QtBumey5ffc-xffRp1-7Aw','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032716,'PBtmpl0000000000000060'),(0,NULL,'Am1J-meNBmhqFfEIWy6Gag','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(1,NULL,'x_hiUi1XZloBvV47Obnu8Q','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(0,NULL,'UUwEL6hLEPdrnkZnKRzFYQ','OiJNwP1gAlcva8_yOtL4gA','PBtmpl0000000000000111',1273032718,'PBtmpl0000000000000060'),(1,'

    Templates and images for the \"Underground\" style from StyleShout.com

    ','CQp-RFA2pMh5lFSggPPPYg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032719,'PBtmpl0000000000000060'),(1,NULL,'_Mi_NTd3x8UB96LWezWHnw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032719,'PBtmpl0000000000000060'),(1,NULL,'g3JH1PRq6m6Bj_PnGpcrSQ','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032719,'PBtmpl0000000000000060'),(1,'

    This folder holds prototype WebGUI assets with the correct templates pre-selected.

    ','G0hl4VilbFKipToyxKqFrg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032719,'PBtmpl0000000000000060'),(1,NULL,'GWU2qZqe6yEuAKG-5HtBdg','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032719,'PBtmpl0000000000000060'),(1,NULL,'AsfpsOpsGzZCb9m7MyxPuw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032720,'PBtmpl0000000000000060'),(1,NULL,'n-Vr_wgxOkwiHGt1nJto9w','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032720,'PBtmpl0000000000000060'),(1,NULL,'jmqLxnoWb6p92Cr12lf1hw','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032720,'PBtmpl0000000000000060'),(1,NULL,'8E2UOnj_XPEghTj7nfVM0g','Qk24uXao2yowR6zxbVJ0xA','PBtmpl0000000000000111',1273032720,'PBtmpl0000000000000060'),(1,NULL,'Q4uX_C557arTp6D_jwB1jQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032720,'PBtmpl0000000000000060'),(1,NULL,'1qFjOEiILIwr1xB5_ebppQ','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032721,'PBtmpl0000000000000060'),(1,NULL,'xD76UfQ_JnSgTLBNvytcpQ','PBtmpl0000000000000060','PBtmpl0000000000000111',1273032721,'PBtmpl0000000000000060'),(0,NULL,'h0bOzz7WvdaVZXsjpwtkww','KKt0VB_eoQxw9xEsHsAhag','PBtmpl0000000000000111',1273032721,'PBtmpl0000000000000060'),(1,NULL,'qFOfW1sKyOTnGNcP6BXbwg','6D98D8TIuhExiSoo2U1eqw','PBtmpl0000000000000111',1273032721,'PBtmpl0000000000000060'),(1,NULL,'G5DgNizuG3jXkjPp6UaGrA','PBtmpl0000000000000060','PBtmpl0000000000000060',1273032722,'PBtmpl0000000000000060'),(1,NULL,'GNOAsX98vCsl0JRwfwL-gg','PBtmpl0000000000000060','PBtmpl0000000000000060',1277868921,'PBtmpl0000000000000060'),(1,'

     

    ','gI_TxK-5S4DNuv42wpImmw','PBtmpl0000000000000060','PBtmpl0000000000000111',1277868923,'PBtmpl0000000000000060'),(1,NULL,'kaPRSaf8UKiskiGEgJgLAw','PBtmpl0000000000000060','PBtmpl0000000000000111',1277868924,'2p9ygcqH_Z11qOUvQ1uBvw'); -ALTER TABLE `wobject` ENABLE KEYS; -INSERT INTO webguiVersion (webguiVersion,versionType,dateApplied) VALUES ('7.9.9','Initial Install',UNIX_TIMESTAMP()); -SET CHARACTER_SET_CLIENT = @OLD_CHARACTER_SET_CLIENT; -SET CHARACTER_SET_RESULTS = @OLD_CHARACTER_SET_RESULTS; -SET CHARACTER_SET_CONNECTION = @OLD_CHARACTER_SET_CONNECTION; -SET COLLATION_CONNECTION = @OLD_COLLATION_CONNECTION; -SET TIME_ZONE = @OLD_TIME_ZONE; -SET UNIQUE_CHECKS = @OLD_UNIQUE_CHECKS; -SET FOREIGN_KEY_CHECKS = @OLD_FOREIGN_KEY_CHECKS; -SET SQL_MODE = @OLD_SQL_MODE; -SET SQL_NOTES = @OLD_SQL_NOTES; diff --git a/docs/upgrades/packages-7.9.3/default-wiki-front-page.wgpkg b/docs/upgrades/packages-7.9.3/default-wiki-front-page.wgpkg deleted file mode 100644 index 5bd7d736b..000000000 Binary files a/docs/upgrades/packages-7.9.3/default-wiki-front-page.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.3/home_map_map-templates_default-edit-map-point.wgpkg b/docs/upgrades/packages-7.9.3/home_map_map-templates_default-edit-map-point.wgpkg deleted file mode 100644 index 822fec147..000000000 Binary files a/docs/upgrades/packages-7.9.3/home_map_map-templates_default-edit-map-point.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.3/home_map_map-templates_default-map-point-view.wgpkg b/docs/upgrades/packages-7.9.3/home_map_map-templates_default-map-point-view.wgpkg deleted file mode 100644 index c9f92fa55..000000000 Binary files a/docs/upgrades/packages-7.9.3/home_map_map-templates_default-map-point-view.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/crystalx.wgpkg b/docs/upgrades/packages-7.9.4/crystalx.wgpkg deleted file mode 100644 index 8b9dddb03..000000000 Binary files a/docs/upgrades/packages-7.9.4/crystalx.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/greenportal.wgpkg b/docs/upgrades/packages-7.9.4/greenportal.wgpkg deleted file mode 100644 index 5d3f9ba65..000000000 Binary files a/docs/upgrades/packages-7.9.4/greenportal.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/root_import_account_inbox_default-inbox-view-template.wgpkg b/docs/upgrades/packages-7.9.4/root_import_account_inbox_default-inbox-view-template.wgpkg deleted file mode 100644 index d78125402..000000000 Binary files a/docs/upgrades/packages-7.9.4/root_import_account_inbox_default-inbox-view-template.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/root_import_wiki.wgpkg b/docs/upgrades/packages-7.9.4/root_import_wiki.wgpkg deleted file mode 100644 index 8afed4e2a..000000000 Binary files a/docs/upgrades/packages-7.9.4/root_import_wiki.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/shopping-cart-collateral-items.wgpkg b/docs/upgrades/packages-7.9.4/shopping-cart-collateral-items.wgpkg deleted file mode 100644 index 1b6af5751..000000000 Binary files a/docs/upgrades/packages-7.9.4/shopping-cart-collateral-items.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/style-underground.wgpkg b/docs/upgrades/packages-7.9.4/style-underground.wgpkg deleted file mode 100644 index 4149a7f5f..000000000 Binary files a/docs/upgrades/packages-7.9.4/style-underground.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/style_01.wgpkg b/docs/upgrades/packages-7.9.4/style_01.wgpkg deleted file mode 100644 index da3c6b216..000000000 Binary files a/docs/upgrades/packages-7.9.4/style_01.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/style_02.wgpkg b/docs/upgrades/packages-7.9.4/style_02.wgpkg deleted file mode 100644 index a73d44fa6..000000000 Binary files a/docs/upgrades/packages-7.9.4/style_02.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.4/style_03.wgpkg b/docs/upgrades/packages-7.9.4/style_03.wgpkg deleted file mode 100644 index 1a0111228..000000000 Binary files a/docs/upgrades/packages-7.9.4/style_03.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.5/root_import_collaboration.wgpkg b/docs/upgrades/packages-7.9.5/root_import_collaboration.wgpkg deleted file mode 100644 index f83442066..000000000 Binary files a/docs/upgrades/packages-7.9.5/root_import_collaboration.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.5/root_import_gallery-templates_default-gallery-add-archive.wgpkg b/docs/upgrades/packages-7.9.5/root_import_gallery-templates_default-gallery-add-archive.wgpkg deleted file mode 100644 index cf6bb0c81..000000000 Binary files a/docs/upgrades/packages-7.9.5/root_import_gallery-templates_default-gallery-add-archive.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.5/wiki-master-by-keyword-template.tmpl.wgpkg b/docs/upgrades/packages-7.9.5/wiki-master-by-keyword-template.tmpl.wgpkg deleted file mode 100644 index b4e74c04f..000000000 Binary files a/docs/upgrades/packages-7.9.5/wiki-master-by-keyword-template.tmpl.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-add-archive.wgpkg b/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-add-archive.wgpkg deleted file mode 100644 index a907fd1d4..000000000 Binary files a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-add-archive.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-search.wgpkg b/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-search.wgpkg deleted file mode 100644 index 0fd040d1f..000000000 Binary files a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-search.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-view-photo.wgpkg b/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-view-photo.wgpkg deleted file mode 100644 index ded6e284f..000000000 Binary files a/docs/upgrades/packages-7.9.6/root_import_gallery-templates_default-gallery-view-photo.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.7/root_import_gallery-templates_admin.css.wgpkg b/docs/upgrades/packages-7.9.7/root_import_gallery-templates_admin.css.wgpkg deleted file mode 100644 index f5cd50d57..000000000 Binary files a/docs/upgrades/packages-7.9.7/root_import_gallery-templates_admin.css.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.7/root_import_gallery-templates_default-gallery-edit-album.wgpkg b/docs/upgrades/packages-7.9.7/root_import_gallery-templates_default-gallery-edit-album.wgpkg deleted file mode 100644 index 14275ac5d..000000000 Binary files a/docs/upgrades/packages-7.9.7/root_import_gallery-templates_default-gallery-edit-album.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.8/root_import_auth_twitter_chooseusername_default-twitter-choose-username.wgpkg b/docs/upgrades/packages-7.9.8/root_import_auth_twitter_chooseusername_default-twitter-choose-username.wgpkg deleted file mode 100644 index e024a07e9..000000000 Binary files a/docs/upgrades/packages-7.9.8/root_import_auth_twitter_chooseusername_default-twitter-choose-username.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.8/root_import_collaboration.wgpkg b/docs/upgrades/packages-7.9.8/root_import_collaboration.wgpkg deleted file mode 100644 index 98633a498..000000000 Binary files a/docs/upgrades/packages-7.9.8/root_import_collaboration.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.8/root_import_gallery-templates.wgpkg b/docs/upgrades/packages-7.9.8/root_import_gallery-templates.wgpkg deleted file mode 100644 index a2080830f..000000000 Binary files a/docs/upgrades/packages-7.9.8/root_import_gallery-templates.wgpkg and /dev/null differ diff --git a/docs/upgrades/packages-7.9.8/templates_thingy-default-search-thing.wgpkg b/docs/upgrades/packages-7.9.8/templates_thingy-default-search-thing.wgpkg deleted file mode 100644 index 6076e8b0a..000000000 Binary files a/docs/upgrades/packages-7.9.8/templates_thingy-default-search-thing.wgpkg and /dev/null differ diff --git a/docs/upgrades/upgrade_7.9.2-7.9.3.pl b/docs/upgrades/upgrade_7.9.2-7.9.3.pl deleted file mode 100644 index 501ea26e2..000000000 --- a/docs/upgrades/upgrade_7.9.2-7.9.3.pl +++ /dev/null @@ -1,176 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; - - -my $toVersion = '7.9.3'; -my $quiet; # this line required - - -my $session = start(); # this line required - -reindexSiteForDefaultSynopsis( $session ); -addTopLevelWikiKeywords( $session ); -renameMapPointStateColumn( $session ); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -sub renameMapPointStateColumn { - my $session = shift; - print "\tRename the MapPoint column state to region... " unless $quiet; - - $session->db->write('ALTER TABLE MapPoint CHANGE state region char(35)'); - - print "Done.\n" unless $quiet; -} - - -#---------------------------------------------------------------------------- -sub addTopLevelWikiKeywords { - my $session = shift; - print "\tAdding top level keywords page to WikiMaster... " unless $quiet; - - my $sth = $session->db->read('DESCRIBE `WikiMaster`'); - while (my ($col) = $sth->array) { - if ($col eq 'topLevelKeywords') { - print "Skipped.\n" unless $quiet; - return; - } - } - $session->db->write('ALTER TABLE WikiMaster ADD COLUMN topLevelKeywords LONGTEXT'); - - print "Done.\n" unless $quiet; -} - - -#---------------------------------------------------------------------------- -# Reindex the site to clear out default synopsis -sub reindexSiteForDefaultSynopsis { - my $session = shift; - print "\tRe-indexing site to clear out default synopses... " unless $quiet; - - my $rs = $session->db->read("select assetId, className from asset where state='published'"); - my @searchableAssetIds; - while (my ($id, $class) = $rs->array) { - my $asset = WebGUI::Asset->new($session,$id,$class); - if (defined $asset && $asset->get("state") eq "published" && ($asset->get("status") eq "approved" || $asset->get("status") eq "archived")) { - $asset->indexContent; - push (@searchableAssetIds, $id); - } - } - - # delete indexes of assets that are no longer searchable - my $list = $session->db->quoteAndJoin(\@searchableAssetIds) if scalar(@searchableAssetIds); - $session->db->write("delete from assetIndex where assetId not in (".$list.")") if $list; - - print "DONE!\n" unless $quiet; -} - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.9.3-7.9.4.pl b/docs/upgrades/upgrade_7.9.3-7.9.4.pl deleted file mode 100644 index 18d7d96fd..000000000 --- a/docs/upgrades/upgrade_7.9.3-7.9.4.pl +++ /dev/null @@ -1,267 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; -use WebGUI::Asset::WikiPage; -use WebGUI::Exception; -use WebGUI::Shop::Pay; - - -my $toVersion = '7.9.4'; -my $quiet; # this line required - - -my $session = start(); # this line required - -# upgrade functions go here -addWikiSubKeywords($session); -addSynopsistoEachWikiPage($session); -dropVisitorAddressBooks($session); -alterCartTable($session); -alterAddressBookTable($session); -addWizardHandler( $session ); -addTemplateExampleImage( $session ); -addPayDriverTemplates( $session ); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -# Add example images to templates -sub addTemplateExampleImage { - my $session = shift; - print "\tAdding example image field to template... " unless $quiet; - - $session->db->write( q{ - ALTER TABLE template ADD storageIdExample CHAR(22) - } ); - - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- - -sub addWizardHandler { - my ( $sesssion ) = @_; - print "\tAdding WebGUI::Wizard... " unless $quiet; - - if ( !grep { $_ eq 'WebGUI::Content::Wizard' } @{$session->config->get('contentHandlers')} ) { - # Find the place of Operation and add before - my @handlers = (); - for my $handler ( @{$session->config->get('contentHandlers')} ) { - if ( $handler eq 'WebGUI::Content::Operation' ) { - push @handlers, 'WebGUI::Content::Wizard'; - } - push @handlers, $handler; - } - $session->config->set('contentHandlers',\@handlers); - } - - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub addWikiSubKeywords { - my $session = shift; - print "\tAdd the WikiMaster sub-keywords table... " unless $quiet; - # and here's our code - $session->db->write(<getIsa($session); - PAGE: while (1) { - my $page = eval {$pager->()}; - next PAGE if Exception::Class->caught(); - last PAGE unless $page; - my ($synopsis) = $page->getSynopsisAndContent(undef, $page->get('content')); - $page->update({synopsis => $synopsis}); - } - # and here's our code - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub dropVisitorAddressBooks { - my $session = shift; - print "\tDrop AddressBooks owned by Visitor... " unless $quiet; - my $sth = $session->db->read(q|SELECT addressBookId FROM addressBook where userId='1'|); - BOOK: while (my ($addressBookId) = $sth->array) { - my $book = eval { WebGUI::Shop::AddressBook->new($session, $addressBookId); }; - next BOOK if Exception::Class->caught(); - $book->delete; - } - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub alterAddressBookTable { - my $session = shift; - print "\tDrop sessionId from the Address Book database table... " unless $quiet; - # and here's our code - $session->db->write("ALTER TABLE addressBook DROP COLUMN sessionId"); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub alterCartTable { - my $session = shift; - print "\tAdd billing address column to the Cart table... " unless $quiet; - # and here's our code - $session->db->write("ALTER TABLE cart ADD COLUMN billingAddressId CHAR(22)"); - $session->db->write("ALTER TABLE cart ADD COLUMN gatewayId CHAR(22)"); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub addPayDriverTemplates { - my $session = shift; - print "\tAdd templates to the Payment Drivers that need them... " unless $quiet; - # and here's our code - my $pay = WebGUI::Shop::Pay->new($session); - my @gateways = @{ $pay->getPaymentGateways }; - GATEWAY: foreach my $gateway (@gateways) { - next GATEWAY unless $gateway; - my $properties = $gateway->get; - if ($gateway->isa('WebGUI::Shop::PayDriver::Cash')) { - $properties->{summaryTemplateId} = '30h5rHxzE_Q0CyI3Gg7EJw'; - } - elsif ($gateway->isa('WebGUI::Shop::PayDriver::ITransact')) { - ##Nothing to do. This template was only changed, not added. - } - elsif ($gateway->isa('WebGUI::Shop::PayDriver::Ogone')) { - $properties->{summaryTemplateId} = 'jysVZeUR0Bx2NfrKs5sulg'; - } - elsif ($gateway->isa('WebGUI::Shop::PayDriver::PayPal::PayPalStd')) { - $properties->{summaryTemplateId} = '300AozDaeveAjB_KN0ljlQ'; - } - elsif ($gateway->isa('WebGUI::Shop::PayDriver::PayPal::ExpressCheckout')) { - $properties->{summaryTemplateId} = 'GqnZPB0gLoZmqQzYFaq7bg'; - } - else { - die "Unknown payment driver type found. Unable to automatically upgrade.\n"; - } - $gateway->update($properties); - } - print "DONE!\n" unless $quiet; -} - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.9.4-7.9.5.pl b/docs/upgrades/upgrade_7.9.4-7.9.5.pl deleted file mode 100644 index 3d5487d0f..000000000 --- a/docs/upgrades/upgrade_7.9.4-7.9.5.pl +++ /dev/null @@ -1,207 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; -use WebGUI::Workflow::Instance; - - -my $toVersion = '7.9.5'; -my $quiet; # this line required - - -my $session = start(); # this line required - -# upgrade functions go here -modifySortItems( $session ); -fixRequestForApprovalScratch($session); -addRejectNoticeSetting($session); -updateGroupGroupingsTable($session); -installNewCSUnsubscribeTemplate($session); - -finish($session); # this line required - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -# Adds setting which allows users to set whether or not to send reject notices -sub addRejectNoticeSetting { - my $session = shift; - print "\tAdding reject notice setting... " unless $quiet; - $session->setting->add('sendRejectNotice',1); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub installNewCSUnsubscribeTemplate { - my $session = shift; - print "\tAdding new unsubscribe template to the CS... " unless $quiet; - $session->db->write(q|ALTER TABLE Collaboration ADD COLUMN unsubscribeTemplateId CHAR(22) NOT NULL|); - $session->db->write(q|UPDATE Collaboration set unsubscribeTemplateId='default_CS_unsubscribe'|); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Add keys and indicies to groupGroupings to help speed up group queries -sub updateGroupGroupingsTable { - my $session = shift; - print "\tAdding primary key and indicies to groupGroupings table... " unless $quiet; - my $sth = $session->db->read('show create table groupGroupings'); - my ($field,$stmt) = $sth->array; - $sth->finish; - unless ($stmt =~ m/PRIMARY KEY/i) { - $session->db->write("alter table groupGroupings add primary key (groupId,inGroup)"); - } - unless ($stmt =~ m/KEY `inGroup`/i) { - $session->db->write("alter table groupGroupings add index inGroup (inGroup)"); - } - print "DONE!\n" unless $quiet; -} - - -#---------------------------------------------------------------------------- -# Describe what our function does -sub fixRequestForApprovalScratch { - my $session = shift; - print "\tCorrect RequestApprovalForVersionTag workflow instance data with leading commas... " unless $quiet; - # and here's our code - my $instances = WebGUI::Workflow::Instance->getAllInstances($session); - INSTANCE: foreach my $instance (@{ $instances }) { - my $messageId = $instance->getScratch('messageId'); - next INSTANCE unless $messageId; - $messageId =~ s/^,//; - $instance->setScratch('messageId', $messageId); - } - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Changes sortItems to a SelectBox -sub modifySortItems { - my $session = shift; - print "\tUpdating SyndicatedContent...\n" unless $quiet; - - require WebGUI::Form::SelectBox; - - print "\t\tModifying table...\n" unless $quiet; - my $type = WebGUI::Form::SelectBox->getDatabaseFieldType; - $session->db->write("ALTER TABLE SyndicatedContent MODIFY sortItems $type"); - - print "\t\tConverting old values..." unless $quiet; - $session->db->write(q{ - UPDATE SyndicatedContent - SET sortItems = 'none' - WHERE sortItems <> '1' - }); - $session->db->write(q{ - UPDATE SyndicatedContent - SET sortItems = 'pubDate_des' - WHERE sortItems = '1' - }); - - # and here's our code - print "DONE!\n" unless $quiet; -} - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.9.5-7.9.6.pl b/docs/upgrades/upgrade_7.9.5-7.9.6.pl deleted file mode 100644 index 6c382052d..000000000 --- a/docs/upgrades/upgrade_7.9.5-7.9.6.pl +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; - - -my $toVersion = '7.9.6'; -my $quiet; # this line required - - -my $session = start(); # this line required - -# upgrade functions go here -fixConvertUTCMacroName($session); -dropOldEMSTableColumn($session); -addIndexForInbox($session); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -# Add keys and indicies to groupGroupings to help speed up group queries -sub addIndexForInbox { - my $session = shift; - print "\tAdding index to inbox_messageState... " unless $quiet; - my $sth = $session->db->read('show create table inbox_messageState'); - my ($field,$stmt) = $sth->array; - $sth->finish; - unless ($stmt =~ m/KEY `userId_deleted_isRead`/i) { - $session->db->write("alter table inbox_messageState add index userId_deleted_isRead (userId,deleted,isRead)"); - } - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub fixConvertUTCMacroName { - my $session = shift; - print "\tFix the name of the ConvertUTCToTZ macro in the config file... " unless $quiet; - $session->config->deleteFromHash('macros', 'ConvertToUTC'); - $session->config->addToHash('macros', 'ConvertUTCToTZ', 'ConvertUTCToTZ'); - # and here's our code - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub dropOldEMSTableColumn { - my $session = shift; - print "\tDrop an old column from the EventMangementSystem table that is no longer used... " unless $quiet; - $session->db->write(q|ALTER TABLE EventManagementSystem DROP COLUMN groupToApproveEvents|); - # and here's our code - print "DONE!\n" unless $quiet; -} - - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.9.6-7.9.7.pl b/docs/upgrades/upgrade_7.9.6-7.9.7.pl deleted file mode 100644 index ea35f7b0a..000000000 --- a/docs/upgrades/upgrade_7.9.6-7.9.7.pl +++ /dev/null @@ -1,241 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; -use WebGUI::Asset::Wobject::Collaboration; -use WebGUI::Exception; -use WebGUI::Workflow::Cron; -use WebGUI::Utility qw/isIn/; - - -my $toVersion = '7.9.7'; -my $quiet; # this line required - - -my $session = start(); # this line required - -# upgrade functions go here -restoreDefaultCronJobs($session); -restoreCsCronJobs($session); -cleanup_inbox_messageStateTable($session); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub cleanup_inbox_messageStateTable { - my $session = shift; - print "\tDelete dead entries from the inbox_MessageState table. This may take a long time... " unless $quiet; - # and here's our code - my $source = $session->db->read("select messageId from inbox_messageState s where not exists(select messageId from inbox where messageId = s.messageId)"); - my $cleaner = $session->db->prepare("delete from inbox_messageState where messageId=?"); - while (my ($messageId) = $source->array) { - $cleaner->execute([$messageId]); - } - $source->finish; - $cleaner->finish; - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub restoreDefaultCronJobs { - my $session = shift; - # and here's our code - print "\tRestore missing default cron jobs that may have been deleted... " unless $quiet; - my $tasks = WebGUI::Workflow::Cron->getAllTasks($session); - my @taskIds = map { $_->getId } @{ $tasks }; - if (! isIn('pbcron0000000000000001', @taskIds)) { - print "\n\t\tRestoring Daily Maintenance Task... " unless $quiet; - WebGUI::Workflow::Cron->create($session, { - title => "Daily Maintenance", dayOfMonth => '*', - enabled => 1, monthOfYear => '*', - runOnce => 0, dayOfWeek => '*', - minuteOfHour => 30, workflowId => 'pbworkflow000000000001', - hourOfDay => 23, priority => 3, - }, - 'pbcron0000000000000001'); - } - if (! isIn('pbcron0000000000000002', @taskIds)) { - print "\n\t\tRestoring Weekly Maintenance Task... " unless $quiet; - WebGUI::Workflow::Cron->create($session, { - title => "Weekly Maintenance", dayOfMonth => '*', - enabled => 1, monthOfYear => '*', - runOnce => 0, dayOfWeek => '0', - minuteOfHour => 30, workflowId => 'pbworkflow000000000002', - hourOfDay => 1, priority => 3, - }, - 'pbcron0000000000000002'); - } - if (! isIn('pbcron0000000000000003', @taskIds)) { - print "\n\t\tRestoring Hourly Maintenance Task... " unless $quiet; - WebGUI::Workflow::Cron->create($session, { - title => "Hourly Maintenance", dayOfMonth => '*', - enabled => 1, monthOfYear => '*', - runOnce => 0, dayOfWeek => '*', - minuteOfHour => 15, workflowId => 'pbworkflow000000000004', - hourOfDay => '*', priority => 3, - }, - 'pbcron0000000000000003'); - } - if (! isIn('pbcron0000000000000004', @taskIds)) { - print "\n\t\tRestoring Email Delivery Task... " unless $quiet; - WebGUI::Workflow::Cron->create($session, { - title => "Send Queued Email Messages Every 5 Minutes", - dayOfMonth => '*', - enabled => 1, monthOfYear => '*', - runOnce => 0, dayOfWeek => '*', - minuteOfHour => '*/5', workflowId => 'pbworkflow000000000007', - hourOfDay => '*', priority => 3, - }, - 'pbcron0000000000000004'); - } - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub restoreCsCronJobs { - my $session = shift; - print "\tRestore missing Collaboration System cron jobs that may have been deleted... " unless $quiet; - my $i18n = WebGUI::International->new($session, "Asset_Collaboration"); - my $getCs = WebGUI::Asset::Wobject::Collaboration->getIsa($session); - CS: while (1) { - my $cs = eval { $getCs->(); }; - if (my $e = Exception::Class->caught()) { - $session->log->error($@); - next CS; - } - last CS unless $cs; - ##Do something useful with $product - my $cron = undef; - if ($cs->get("getMailCronId")) { - $cron = WebGUI::Workflow::Cron->new($session, $cs->get("getMailCronId")); - } - next CS if $cron; - $cron = WebGUI::Workflow::Cron->create($session, { - title => $cs->getTitle." ".$i18n->get("mail"), - minuteOfHour => "*/".($cs->get("getMailInterval")/60), - className => (ref $cs), - methodName => "new", - parameters => $cs->getId, - workflowId => "csworkflow000000000001" - }); - $cs->update({getMailCronId=>$cron->getId}); - if ($cs->get("getMail")) { - $cron->set({enabled=>1,title=>$cs->getTitle." ".$i18n->get("mail"), minuteOfHour=>"*/".($cs->get("getMailInterval")/60)}); - } else { - $cron->set({enabled=>0,title=>$cs->getTitle." ".$i18n->get("mail"), minuteOfHour=>"*/".($cs->get("getMailInterval")/60)}); - } - - } - print "DONE!\n" unless $quiet; -} - - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/docs/upgrades/upgrade_7.9.7-7.9.8.pl b/docs/upgrades/upgrade_7.9.7-7.9.8.pl deleted file mode 100644 index 5a9b7280b..000000000 --- a/docs/upgrades/upgrade_7.9.7-7.9.8.pl +++ /dev/null @@ -1,190 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -our ($webguiRoot); - -BEGIN { - $webguiRoot = "../.."; - unshift (@INC, $webguiRoot."/lib"); -} - -use strict; -use Getopt::Long; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; -use WebGUI::Asset::Wobject::Collaboration; -use WebGUI::Asset::Post::Thread; -use WebGUI::ProfileField; - -my $toVersion = '7.9.8'; -my $quiet; # this line required - -my $session = start(); # this line required - -# upgrade functions go here -changeFirstDayOfWeekDefault($session); -updateLastPostCS($session); -updateLastPostThread($session); -addTwitterAuth( $session ); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - -#---------------------------------------------------------------------------- -# Add twitter auth and macro -sub addTwitterAuth { - my $session = shift; - print "\tAdding twitter auth method... " unless $quiet; - - $session->config->addToArray( 'authMethods', 'Twitter' ); - $session->config->addToHash( 'macros', "TwitterLogin" => "TwitterLogin" ); - $session->setting->set( 'twitterEnabled', 0 ); - $session->setting->set( 'twitterTemplateIdChooseUsername', 'mfHGkp6t9gdclmzN33OEnw' ); - - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub changeFirstDayOfWeekDefault { - my $session = shift; - print "\tMake the default for firstDayOfWeek a number instead of a string... " unless $quiet; - # and here's our code - my $profileField = WebGUI::ProfileField->new($session, 'firstDayOfWeek'); - my $properties = $profileField->get(); - $properties->{dataDefault} = 0; - $profileField->set($properties); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub updateLastPostCS { - my $session = shift; - print "\tUpdating last post information in every Collaboration System. This could take a very long time... " unless $quiet; - # and here's our code - my $getCs = WebGUI::Asset::Wobject::Collaboration->getIsa($session); - CS: while (my $cs = eval { $getCs->() } ) { - next CS if Exception::Class->caught(); - last CS if ! $cs; - next CS unless $cs->get('lastPostId'); - my $lastPost = WebGUI::Asset->newByDynamicClass($session, $cs->get('lastPostId')); - next CS unless $lastPost && $lastPost->get('status') eq 'archived'; - $lastPost->disqualifyAsLastPost; - } - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -# Describe what our function does -sub updateLastPostThread { - my $session = shift; - print "\tUpdating last post information in every Thread. This could also take a very long time... " unless $quiet; - # and here's our code - my $getThread = WebGUI::Asset::Wobject::Collaboration->getIsa($session); - THREAD: while (my $thread = eval { $getThread->() } ) { - next THREAD if Exception::Class->caught(); - last THREAD if ! $thread; - next THREAD unless $thread->get('lastPostId'); - my $lastPost = WebGUI::Asset->newByDynamicClass($session, $thread->get('lastPostId')); - next THREAD unless $lastPost && $lastPost->get('status') eq 'archived'; - $lastPost->disqualifyAsLastPost; - } - print "DONE!\n" unless $quiet; -} - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($webguiRoot,$configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/lib/WebGUI/Account/Inbox.pm b/lib/WebGUI/Account/Inbox.pm index db3e03607..2eecedc2d 100644 --- a/lib/WebGUI/Account/Inbox.pm +++ b/lib/WebGUI/Account/Inbox.pm @@ -850,7 +850,7 @@ sub www_inviteUser { $var->{'submit_button' } = WebGUI::Form::submit($session,{}); $var->{'form_footer' } = WebGUI::Form::formFooter($session, {}); - $var->{'back_url' } = $session->env->get("HTTP_REFERER") || $var->{'view_inbox_url'}; + $var->{'back_url' } = $session->request->referer || $var->{'view_inbox_url'}; #Add common template variable for displaying the inbox $self->appendCommonVars($var); @@ -1099,7 +1099,7 @@ sub www_sendMessage { my $messageId = $form->get("messageId"); my $userId = $form->get("userId"); my $pageUrl = $session->url->page; - my $backUrl = $session->env->get("HTTP_REFERER") || $var->{'view_inbox_url'}; + my $backUrl = $session->request->referer || $var->{'view_inbox_url'}; my $errorMsg = ""; if($messageId) { diff --git a/lib/WebGUI/AdSpace.pm b/lib/WebGUI/AdSpace.pm index 4b670b70b..e898f4b16 100644 --- a/lib/WebGUI/AdSpace.pm +++ b/lib/WebGUI/AdSpace.pm @@ -52,7 +52,7 @@ sub countClick { my $session = shift; my $id = shift; my ($url) = $session->db->quickArray("select url from advertisement where adId=?",[$id]); - return $url if $session->env->requestNotViewed(); + return $url if $session->request->requestNotViewed(); $session->db->write("update advertisement set clicks=clicks+1 where adId=?",[$id]); return $url; } @@ -119,7 +119,7 @@ A boolean that tells the ad system not to count this impression if true. sub displayImpression { my $self = shift; my $dontCount = shift; - return '' if $self->session->env->requestNotViewed(); + return '' if $self->session->request->requestNotViewed(); my ($id, $ad, $priority, $clicks, $clicksBought, $impressions, $impressionsBought) = $self->session->db->quickArray("select adId, renderedAd, priority, clicks, clicksBought, impressions, impressionsBought from advertisement where adSpaceId=? and isActive=1 order by nextInPriority asc limit 1",[$self->getId]); unless ($dontCount) { my $isActive = 1; diff --git a/lib/WebGUI/Asset.pm b/lib/WebGUI/Asset.pm index f09fcbb5a..f70152340 100644 --- a/lib/WebGUI/Asset.pm +++ b/lib/WebGUI/Asset.pm @@ -588,8 +588,8 @@ to SSL. sub checkView { my $self = shift; return $self->session->privilege->noAccess() unless $self->canView; - my ($conf, $env, $var, $http) = $self->session->quick(qw(config env var http)); - if ($conf->get("sslEnabled") && $self->get("encryptPage") && ! $env->sslRequest) { + my ($conf, $var, $http) = $self->session->quick(qw(config var http)); + if ($conf->get("sslEnabled") && $self->get("encryptPage") && ! $self->session->request->secure) { # getUrl already changes url to https if 'encryptPage' $http->setRedirect($self->getUrl); $http->sendHeader; @@ -1726,7 +1726,7 @@ sub getWwwCacheKey { my $session = $self->session; my $method = shift; my $cacheKey = join '_', @_, $self->getId; - if ($session->env->sslRequest) { + if ($session->request->secure) { $cacheKey .= '_ssl'; } return $cacheKey; diff --git a/lib/WebGUI/Asset/File/GalleryFile.pm b/lib/WebGUI/Asset/File/GalleryFile.pm index 6c9cb081f..21fad7b3b 100644 --- a/lib/WebGUI/Asset/File/GalleryFile.pm +++ b/lib/WebGUI/Asset/File/GalleryFile.pm @@ -697,7 +697,7 @@ sub processCommentEditForm { ; my $visitorIp = $session->user->isVisitor - ? $session->env->get("REMOTE_ADDR") + ? $session->request->remote_host : undef ; diff --git a/lib/WebGUI/Asset/MatrixListing.pm b/lib/WebGUI/Asset/MatrixListing.pm index d2239fad1..f6c9fbb7e 100644 --- a/lib/WebGUI/Asset/MatrixListing.pm +++ b/lib/WebGUI/Asset/MatrixListing.pm @@ -350,7 +350,7 @@ sub hasRated { my $hasRated = $self->session->db->quickScalar("select count(*) from MatrixListing_rating where ((userId=? and userId<>'1') or (userId='1' and ipAddress=?)) and listingId=?", - [$session->user->userId,$session->env->get("HTTP_X_FORWARDED_FOR"),$self->getId]); + [$session->user->userId,$session->request->env->{"HTTP_X_FORWARDED_FOR"}, $self->getId]); return $hasRated; } @@ -372,7 +372,7 @@ sub incrementCounter { my $db = $self->session->db; my $counter = shift; - my $currentIp = $self->session->env->get("HTTP_X_FORWARDED_FOR"); + my $currentIp = $self->session->request->env->{"HTTP_X_FORWARDED_FOR"}; unless ($self->get($counter."LastIp") && ($self->get($counter."LastIp") eq $currentIp)) { $self->update({ @@ -528,7 +528,7 @@ sub setRatings { $db->write("insert into MatrixListing_rating (userId, category, rating, timeStamp, listingId, ipAddress, assetId) values (?,?,?,?,?,?,?)", [$session->user->userId,$category,$ratings->{$category},time(),$self->getId, - $session->env->get("HTTP_X_FORWARDED_FOR"),$matrixId]); + $session->request->env->{"HTTP_X_FORWARDED_FOR"}, $matrixId]); } my $sql = "from MatrixListing_rating where listingId=? and category=?"; my $sum = $db->quickScalar("select sum(rating) $sql", [$self->getId,$category]); diff --git a/lib/WebGUI/Asset/Post.pm b/lib/WebGUI/Asset/Post.pm index be95e1534..2a9ba3c56 100644 --- a/lib/WebGUI/Asset/Post.pm +++ b/lib/WebGUI/Asset/Post.pm @@ -120,8 +120,8 @@ sub _fixReplyCount { orderByClause => 'assetData.revisionDate desc', limit => 1, } )->[0]; - - if (my $lastPost = WebGUI::Asset->newById( $self->session, $lastPostId ) ) { + my $lastPost = eval { WebGUI::Asset->newById( $self->session, $lastPostId ); }; + if ( ! Exception::Class->caught() ) { $asset->incrementReplies( $lastPost->revisionDate, $lastPost->getId ); } else { @@ -293,23 +293,30 @@ the parent thread. =cut override cut => sub { + warn "post's cut"; my $self = shift; # Fetch the Thread and CS before cutting the asset. my $thread = $self->getThread; + warn "got thread"; my $cs = $thread->getParent; + warn "got cs"; # Cut the asset my $result = super(); + warn "called super"; # If a post is being cut update the thread reply count first if ($thread->getId ne $self->getId) { + warn "calling _fixReplyCount on thread"; $self->_fixReplyCount( $thread ); } # Update the CS reply count. This step is also necessary when a Post is cut since the Thread's incrementReplies # also calls the CS's incrementReplies, possibly with the wrong last post Id. + warn "calling _fixReplyCount on cs"; $self->_fixReplyCount( $cs ); + warn "all should be well...?"; return $result; }; @@ -823,7 +830,7 @@ sub hasRated { return 1 if $self->isPoster; my $flag = 0; if ($self->session->user->isVisitor) { - ($flag) = $self->session->db->quickArray("select count(*) from Post_rating where assetId=? and ipAddress=?",[$self->getId, $self->session->env->getIp]); + ($flag) = $self->session->db->quickArray("select count(*) from Post_rating where assetId=? and ipAddress=?",[$self->getId, $self->session->request->address]); } else { ($flag) = $self->session->db->quickArray("select count(*) from Post_rating where assetId=? and userId=?",[$self->getId, $self->session->user->userId]); } @@ -888,7 +895,7 @@ sub insertUserPostRating { $self->session->db->write("insert into Post_rating (assetId,userId,ipAddress,dateOfRating,rating) values (?,?,?,?,?)", [$self->getId, $self->session->user->userId, - $self->session->env->getIp, + $self->session->request->address, time(), $rating,] ); @@ -1367,7 +1374,7 @@ Updates the last post information in the parent Thread and CS if applicable. sub setStatusUnarchived { my ($self) = @_; - $self->update({status=>'approved'}) if ($self->get("status") eq "archived"); + $self->update({status=>'approved'}) if ($self->status eq "archived"); $self->qualifyAsLastPost; } diff --git a/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm b/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm index d77c05c94..6fb344ca6 100644 --- a/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm +++ b/lib/WebGUI/Asset/Wobject/GalleryAlbum.pm @@ -211,8 +211,9 @@ sub appendTemplateVarsFileLoop { my $assetIds = shift; my $session = $self->session; - for my $assetId (@$assetIds) { - my $asset = WebGUI::Asset->newById($session, $assetId); + ASSET: for my $assetId (@$assetIds) { + my $asset = eval { WebGUI::Asset->newById($session, $assetId); }; + next ASSET if Exception::Class->caught(); # Set the parent $asset->{_parent} = $self; push @{$var->{file_loop}}, $asset->getTemplateVars; diff --git a/lib/WebGUI/Asset/Wobject/HttpProxy.pm b/lib/WebGUI/Asset/Wobject/HttpProxy.pm index 49e293922..c24ce5d7a 100644 --- a/lib/WebGUI/Asset/Wobject/HttpProxy.pm +++ b/lib/WebGUI/Asset/Wobject/HttpProxy.pm @@ -310,7 +310,7 @@ sub view { return $self->processTemplate({},$self->templateId) unless ($proxiedUrl ne ""); - my $requestMethod = $self->session->env->get("REQUEST_METHOD") || "GET"; + my $requestMethod = $self->session->request->method || "GET"; ### Do we have cached content to get? my $cache = $self->session->cache; @@ -328,7 +328,7 @@ sub view { REDIRECT: for my $redirect (0..4) { # We follow max 5 redirects to prevent bouncing/flapping my $userAgent = new LWP::UserAgent; - $userAgent->agent($self->session->env->get("HTTP_USER_AGENT")); + $userAgent->agent($self->session->request->user_agent); $userAgent->timeout($self->timeout); $userAgent->env_proxy; diff --git a/lib/WebGUI/Asset/Wobject/Poll.pm b/lib/WebGUI/Asset/Wobject/Poll.pm index b56132443..9f96e0deb 100644 --- a/lib/WebGUI/Asset/Wobject/Poll.pm +++ b/lib/WebGUI/Asset/Wobject/Poll.pm @@ -203,7 +203,7 @@ sub _hasVoted { my $self = shift; my ($hasVoted) = $self->session->db->quickArray("select count(*) from Poll_answer where assetId=".$self->session->db->quote($self->getId)." and ((userId=".$self->session->db->quote($self->session->user->userId)." - and userId<>'1') or (userId=".$self->session->db->quote($self->session->user->userId)." and ipAddress='".$self->session->env->getIp."'))"); + and userId<>'1') or (userId=".$self->session->db->quote($self->session->user->userId)." and ipAddress='".$self->session->request->address."'))"); return $hasVoted; } @@ -545,7 +545,7 @@ sub www_vote { my $self = shift; my $u; if ($self->session->form->process("answer") ne "" && $self->session->user->isInGroup($self->get("voteGroup")) && !($self->_hasVoted())) { - $self->setVote($self->session->form->process("answer"),$self->session->user->userId,$self->session->env->getIp); + $self->setVote($self->session->form->process("answer"),$self->session->user->userId,$self->session->request->address); if ($self->session->setting->get("useKarma")) { $self->session->user->karma($self->get("karmaPerVote"),"Poll (".$self->getId.")","Voted on this poll."); } diff --git a/lib/WebGUI/Asset/Wobject/ProjectManager.pm b/lib/WebGUI/Asset/Wobject/ProjectManager.pm index 1e5eaa3fc..9851078b1 100644 --- a/lib/WebGUI/Asset/Wobject/ProjectManager.pm +++ b/lib/WebGUI/Asset/Wobject/ProjectManager.pm @@ -1044,7 +1044,7 @@ sub www_drawGanttChart { } #Adjust top for MSIE - my $isMSIE = ($session->env->get("HTTP_USER_AGENT") =~ /msie/i); + my $isMSIE = ($session->env->request->user_agent =~ /msie/i); my $divTop = $isMSIE ? 45 : 45; #Start at 45 px and add 20px as the start of the new task #Set the propert mutiplier diff --git a/lib/WebGUI/Asset/Wobject/Survey.pm b/lib/WebGUI/Asset/Wobject/Survey.pm index 3b2684268..704d9ffb7 100644 --- a/lib/WebGUI/Asset/Wobject/Survey.pm +++ b/lib/WebGUI/Asset/Wobject/Survey.pm @@ -2045,7 +2045,7 @@ sub responseId { my $ignoreRevisionDate = $opts{ignoreRevisionDate}; my $user = WebGUI::User->new( $self->session, $userId ); - my $ip = $self->session->env->getIp; + my $ip = $self->session->request->address; my $responseId = $self->{responseId}; return $responseId if $responseId; @@ -2178,7 +2178,7 @@ sub canTakeSurvey { } my $maxResponsesPerUser = $self->maxResponsesPerUser; - my $ip = $self->session->env->getIp; + my $ip = $self->session->request->address; my $userId = $self->session->user->userId(); my $takenCount = 0; diff --git a/lib/WebGUI/Asset/Wobject/Thingy.pm b/lib/WebGUI/Asset/Wobject/Thingy.pm index c046cf826..d9dd603ab 100644 --- a/lib/WebGUI/Asset/Wobject/Thingy.pm +++ b/lib/WebGUI/Asset/Wobject/Thingy.pm @@ -565,7 +565,7 @@ sub editThingDataSave { if ($thingDataId eq "new"){ $thingData{dateCreated} = time(); $thingData{createdById} = $session->user->userId; - $thingData{ipAddress} = $session->env->getIp; + $thingData{ipAddress} = $session->request->address; } else { %thingData = $session->db->quickHash("select * from ".$session->db->dbh->quote_identifier("Thingy_".$thingId) diff --git a/lib/WebGUI/AssetCollateral/DataForm/Entry.pm b/lib/WebGUI/AssetCollateral/DataForm/Entry.pm index 650a9f099..9b636586c 100644 --- a/lib/WebGUI/AssetCollateral/DataForm/Entry.pm +++ b/lib/WebGUI/AssetCollateral/DataForm/Entry.pm @@ -301,7 +301,7 @@ sub new { } else { $self->user($session->user); - $self->ipAddress($session->env->getIp); + $self->ipAddress($session->request->address); $self->submissionDate(WebGUI::DateTime->new($session, time)); $entryData{id $self} = {}; } diff --git a/lib/WebGUI/AssetPackage.pm b/lib/WebGUI/AssetPackage.pm index ab068d7f6..607eb1f00 100644 --- a/lib/WebGUI/AssetPackage.pm +++ b/lib/WebGUI/AssetPackage.pm @@ -161,6 +161,7 @@ sub importAssetData { WebGUI::Asset->loadModule( $class ); my %properties = %{ $data->{properties} }; + delete $properties{tagId}; if ($options->{inheritPermissions}) { delete $properties{ownerUserId}; delete $properties{groupIdView}; @@ -173,6 +174,13 @@ sub importAssetData { $properties{isDefault} = 1; } + if ($options->{clearPackageFlag}) { + $properties{isPackage} = 0; + } + if ($options->{setDefaultTemplate}) { + $properties{isDefault} = 1; + } + my $asset = eval { $class->new($session, $id, $version); }; if (! Exception::Class->caught()) { # update an existing revision diff --git a/lib/WebGUI/Auth.pm b/lib/WebGUI/Auth.pm index 780eac849..8f21cd39b 100644 --- a/lib/WebGUI/Auth.pm +++ b/lib/WebGUI/Auth.pm @@ -100,8 +100,8 @@ sub _logLogin { $_[0], $_[1], time(), - $self->session->env->getIp, - $self->session->env->get("HTTP_USER_AGENT"), + $self->session->request->address, + $self->session->request->user_agent, $self->session->getId, time(), ] @@ -539,7 +539,7 @@ sub displayLogin { ) { my $returnUrl = $self->session->form->get('returnUrl') - || $self->session->url->page( $self->session->env->get('QUERY_STRING') ) + || $self->session->url->page( $self->session->request->env->{'QUERY_STRING'} ) ; $self->session->scratch->set("redirectAfterLogin", $returnUrl); } diff --git a/lib/WebGUI/Auth/Twitter.pm b/lib/WebGUI/Auth/Twitter.pm index 041c5a4da..de2408aa1 100644 --- a/lib/WebGUI/Auth/Twitter.pm +++ b/lib/WebGUI/Auth/Twitter.pm @@ -151,7 +151,7 @@ Get the template to choose a username sub getTemplateChooseUsername { my ( $self ) = @_; my $templateId = $self->session->setting->get('twitterTemplateIdChooseUsername'); - return WebGUI::Asset::Template->new( $self->session, $templateId ); + return WebGUI::Asset->newById( $self->session, $templateId ); } #---------------------------------------------------------------------------- diff --git a/lib/WebGUI/Config.pm b/lib/WebGUI/Config.pm index 2c7720cf5..7d7df3807 100644 --- a/lib/WebGUI/Config.pm +++ b/lib/WebGUI/Config.pm @@ -35,8 +35,6 @@ This package parses the WebGUI config file. use WebGUI::Config; - WebGUI::Config->loadAllConfigs($webguiRoot); - my $configs = WebGUI::Config->readAllConfigs; my $config = WebGUI::Config->new($configFileName); @@ -65,24 +63,6 @@ These subroutines are available from this package: #------------------------------------------------------------------- -=head2 clearCache ( ) - -Clear the cache of in-memory configuration files. This is required by the upgrade script, which -forks to run each upgrade. When the child is reaped, the original is untouched, so that the -next script in the line recieves an old, in-memory config, essentially undoing any config -changes in the first upgrade script. - -This is a class method. - -=cut - -sub clearCache { - my $class = shift; - %config = (); -} - -#------------------------------------------------------------------- - =head2 getCookieName ( ) Returns the cookie name defined in the config file. Returns "wgSession" if one isn't defined. @@ -112,62 +92,22 @@ sub getCookieTTL { #------------------------------------------------------------------- -=head2 loadAllConfigs ( webguiRoot ) - -Reads all the config file data for all defined sites into an in-memory cache. This is a class method. - -=head3 webguiRoot - -The path to the WebGUI installation. - -=cut - -sub loadAllConfigs { - my $class = shift; - my $configs = $class->readAllConfigs; - foreach my $filename (keys %{$configs}) { - unless ($filename =~ /^demo\d/) { - print "\tLoading ".$filename."\n"; - $config{$filename} = $configs->{$filename}; - } - } -} - - -#------------------------------------------------------------------- - -=head2 new ( webguiRoot , configFile [ , noCache ] ) +=head2 new ( configFile ) Returns a hash reference containing the configuration data. It tries to get the data out of the memory cache first, but reads the config file directly if necessary. -=head3 webguiRoot - -The path to the WebGUI installation. - =head3 configFile The filename of the config file to read. -=head3 noCache - -A boolean value that when set to true tells the config system not to store the config in an in memory cache, in case it's loaded again later. This is mostly used when loading utility configs, like spectre.conf. - =cut -around new => sub { +around BUILDARGS => sub { my $orig = shift; my $class = shift; my $filename = shift; - my $noCache = shift; $filename = Cwd::realpath(File::Spec->rel2abs($filename, WebGUI::Paths->configBase)); - if (exists $config{$filename}) { - return $config{$filename}; - } - else { - my $self = $class->$orig($filename); - $config{$filename} = $self unless $noCache; - return $self; - } + return $class->$orig($filename); }; #------------------------------------------------------------------- diff --git a/lib/WebGUI/Content/Prefetch.pm b/lib/WebGUI/Content/Prefetch.pm index 4c61556ed..dc721a899 100644 --- a/lib/WebGUI/Content/Prefetch.pm +++ b/lib/WebGUI/Content/Prefetch.pm @@ -46,7 +46,7 @@ The content handler for this package. sub handler { my ($session) = @_; - if ($session->env->get("HTTP_X_MOZ") eq "prefetch") { # browser prefetch is a bad thing + if ($session->request->env->{"HTTP_X_MOZ"} eq "prefetch") { # browser prefetch is a bad thing $session->http->setStatus(403); } return undef; diff --git a/lib/WebGUI/Exception.pm b/lib/WebGUI/Exception.pm index 73dd2504c..0fb390cf6 100644 --- a/lib/WebGUI/Exception.pm +++ b/lib/WebGUI/Exception.pm @@ -286,13 +286,12 @@ use Exception::Class ( }, ); - - - - - - - +{ + package WebGUI::Error; + use overload '~~' => sub { + return $_[0]->isa($_[1]); + }; +} 1; diff --git a/lib/WebGUI/Form/Captcha.pm b/lib/WebGUI/Form/Captcha.pm index 21fab775a..1c99ac37b 100644 --- a/lib/WebGUI/Form/Captcha.pm +++ b/lib/WebGUI/Form/Captcha.pm @@ -111,7 +111,7 @@ sub getValue { my $ua = LWP::UserAgent->new; my $res = $ua->post('http://api-verify.recaptcha.net/verify', { privatekey => $privKey, - remoteip => $self->session->env->getIp, + remoteip => $self->session->request->env->{REMOTE_ADDR}, challenge => $challenge, response => $response, }); @@ -158,10 +158,9 @@ sub toHtml { my $self = shift; if ($self->session->setting->get('useRecaptcha')) { - my $env = $self->session->env; my $pubKey = $self->session->setting->get('recaptchaPublicKey'); my $server = "http://api.recaptcha.net"; - if ($env->sslRequest) { + if ($self->session->request->secure) { $server = "https://api-secure.recaptcha.net"; } return diff --git a/lib/WebGUI/Form/Template.pm b/lib/WebGUI/Form/Template.pm index 1784b2f57..cd47e9eba 100644 --- a/lib/WebGUI/Form/Template.pm +++ b/lib/WebGUI/Form/Template.pm @@ -173,9 +173,9 @@ sub setOptions { #Remove entries from template list that the user does not have permission to view. for my $assetId ( keys %{$templateList} ) { - my $asset = WebGUI::Asset::Template->newById($self->session, $assetId); - if (!$asset->canView($self->session->user->userId)) { - delete $templateList->{$assetId}; + my $asset = eval { WebGUI::Asset->newById($session, $assetId); }; + if (!Exception::Class->caught() && !$asset->canView($self->session->user->userId)) { + delete $templateList->{$assetId}; } } diff --git a/lib/WebGUI/Friends.pm b/lib/WebGUI/Friends.pm index a8fbdea9f..210505295 100644 --- a/lib/WebGUI/Friends.pm +++ b/lib/WebGUI/Friends.pm @@ -15,7 +15,20 @@ package WebGUI::Friends; =cut use strict; -use Class::InsideOut qw(id register public readonly); + +use Moose; + +has 'session' => ( + is => 'ro', + required => 1, + weak_ref => 1, +); + +has 'user' => ( + is => 'ro', + required => 1, +); + use WebGUI::DateTime; use WebGUI::HTML; use WebGUI::Inbox; @@ -23,9 +36,6 @@ use WebGUI::International; use WebGUI::User; use WebGUI::Utility; -readonly session => my %session; -readonly user => my %user; - =head1 NAME WebGUI::Friends @@ -45,6 +55,20 @@ A user relationship management system. =cut +around BUILDARGS => sub { + my $orig = shift; + my $className = shift; + + ##Original arguments start here. + my $protoSession = $_[0]; + if (blessed $protoSession && $protoSession->isa('WebGUI::Session')) { + my $protoUser = defined $_[1] ? $_[1] : $protoSession->user; + return $className->$orig(session => $protoSession, user => $protoUser,); + } + return $className->$orig(@_); +}; + + #------------------------------------------------------------------- @@ -276,16 +300,6 @@ attached to the session. =cut -sub new { - my $class = shift; - my $session = shift; - my $user = shift || $session->user; - my $self = register($class); - $session{id $self} = $session; - $user{id $self} = $user; - return $self; -} - #------------------------------------------------------------------- =head2 rejectAddRequest ( inviteId[,sendNotification] ) diff --git a/lib/WebGUI/Group.pm b/lib/WebGUI/Group.pm index 409096102..236f53d75 100644 --- a/lib/WebGUI/Group.pm +++ b/lib/WebGUI/Group.pm @@ -283,7 +283,7 @@ sub clearCaches { $stow->delete("groupObj"); $stow->delete("isInGroup"); $stow->delete("gotGroupsInGroup"); - $session->stow->delete("gotGroupsForUser"); + $stow->delete("gotGroupsForUser"); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Image/Font.pm b/lib/WebGUI/Image/Font.pm index 6a4085f1e..a14f5ef92 100644 --- a/lib/WebGUI/Image/Font.pm +++ b/lib/WebGUI/Image/Font.pm @@ -73,7 +73,7 @@ sub getFile { if ($self->getStorageId) { return WebGUI::Storage->get($self->session, $self->getStorageId)->getPath($self->getFilename); } else { - return WebGUI::Paths->var . '/default.ttf'; + return WebGUI::Paths->share . '/default.ttf'; } } diff --git a/lib/WebGUI/Keyword.pm b/lib/WebGUI/Keyword.pm index eaec541ee..a851718e9 100644 --- a/lib/WebGUI/Keyword.pm +++ b/lib/WebGUI/Keyword.pm @@ -15,7 +15,13 @@ package WebGUI::Keyword; =cut use strict; -use Class::InsideOut qw(public register id); +use Moose; + +has session => ( + is => 'ro', + required => 1, +); + use HTML::TagCloud; use WebGUI::Paginator; @@ -40,6 +46,17 @@ These methods are available from this class: =cut +around BUILDARGS => sub { + my $orig = shift; + my $className = shift; + + ##Original arguments start here. + my $protoSession = $_[0]; + if (blessed $protoSession && $protoSession->isa('WebGUI::Session')) { + return $className->$orig(session => $protoSession); + } + return $className->$orig(@_); +}; #------------------------------------------------------------------- @@ -49,9 +66,6 @@ Returns a reference to the current session. =cut -public session => my %session; - - #------------------------------------------------------------------- =head2 deleteKeywordsForAsset ( $asset ) @@ -473,15 +487,6 @@ A reference to the current session. =cut -sub new { - my $class = shift; - my $session = shift; - my $self = bless \do {my $s}, $class; - register($self); - $session{id $self} = $session; - return $self; -} - #------------------------------------------------------------------- =head2 replaceKeyword ( { currentKeyword => $keyword1, newKeyword => $keyword2 } ) diff --git a/lib/WebGUI/Macro/Env.pm b/lib/WebGUI/Macro/Env.pm index a12c1b779..295cf36db 100644 --- a/lib/WebGUI/Macro/Env.pm +++ b/lib/WebGUI/Macro/Env.pm @@ -32,7 +32,8 @@ then undef will be returned. #------------------------------------------------------------------- sub process { my $session = shift; - return $session->env->get(shift); + my $key = shift; + return $session->request->env->{$key}; } 1; diff --git a/lib/WebGUI/Macro/L_loginBox.pm b/lib/WebGUI/Macro/L_loginBox.pm index a2b82b8da..a9feadc7b 100644 --- a/lib/WebGUI/Macro/L_loginBox.pm +++ b/lib/WebGUI/Macro/L_loginBox.pm @@ -79,18 +79,18 @@ sub process { # A hidden field with the current URL my $returnUrl = $session->url->page; if ( !$session->form->get("op") eq "auth" ) { - $returnUrl .= '?' . $session->env->get( "QUERY_STRING" ); + $returnUrl .= '?' . $session->request->env->{ "QUERY_STRING" }; } $var{'form.returnUrl'} = WebGUI::Form::hidden( $session, { name => 'returnUrl', - value => $session->url->page($session->env->get("QUERY_STRING")), + value => $session->url->page($session->request->env->{"QUERY_STRING"}), }); # Fix box size my $boxSize = $param[0]; $boxSize = 12 unless ($boxSize); - if (index(lc($session->env->get("HTTP_USER_AGENT")),"msie") < 0) { + if (index(lc($session->request->user_agent),"msie") < 0) { $boxSize = int($boxSize=$boxSize*2/3); } diff --git a/lib/WebGUI/Macro/r_printable.pm b/lib/WebGUI/Macro/r_printable.pm index d327c7714..2774a6c62 100644 --- a/lib/WebGUI/Macro/r_printable.pm +++ b/lib/WebGUI/Macro/r_printable.pm @@ -54,7 +54,7 @@ sub process { my $append = 'op=makePrintable'; $temp = $session->url->page($append); $temp =~ s/\/\//\//; - $temp = $session->url->append($temp,$session->env->get("QUERY_STRING")); + $temp = $session->url->append($temp,$session->request->env->{"QUERY_STRING"}); if ($param[1] ne "") { $temp = $session->url->append($temp,'styleId='.$param[1]); } diff --git a/lib/WebGUI/Middleware/Maintenance.pm b/lib/WebGUI/Middleware/Maintenance.pm new file mode 100644 index 000000000..f994a7c0b --- /dev/null +++ b/lib/WebGUI/Middleware/Maintenance.pm @@ -0,0 +1,64 @@ +package WebGUI::Middleware::Maintenance; + +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=cut + +use strict; +use parent qw(Plack::Middleware); + + +=head1 NAME + +Package WebGUI::Content::Maintenance; + +=head1 DESCRIPTION + +A content handler that displays a maintenance page while upgrading. + +=head1 SYNOPSIS + + enable '+WebGUI::Middleware::Maintenance'; + +=head1 SUBROUTINES + +These subroutines are available from this package: + +=cut + +#------------------------------------------------------------------- + +=head2 handler ( session ) + +The content handler for this package. + +=cut + +sub call { + my $self = shift; + my $env = shift; + my $session = $env->{'webgui.session'}; + my $upgradeState = $session->setting->get('upgradeState'); + if ($upgradeState) { + if ($upgradeState eq WebGUI->VERSION) { + $session->setting->remove('upgradeState'); + } + else { + return [ 503, ['Content-Type' => 'text/plain'], [ 'Service Unavailable' ] ]; + } + } + return $self->app->($env); +} + +1; + diff --git a/lib/WebGUI/Operation/Cron.pm b/lib/WebGUI/Operation/Cron.pm index ccfa81e49..712bc7f1a 100644 --- a/lib/WebGUI/Operation/Cron.pm +++ b/lib/WebGUI/Operation/Cron.pm @@ -271,7 +271,7 @@ sub www_runCronJob { my $session = shift; $session->http->setMimeType("text/plain"); $session->http->setCacheControl("none"); - unless (isInSubnet($session->env->getIp, $session->config->get("spectreSubnets")) || canView($session)) { + unless (isInSubnet($session->request->address, $session->config->get("spectreSubnets")) || canView($session)) { $session->errorHandler->security("make a Spectre cron job runner request, but we're only allowed to accept requests from ".join(",",@{$session->config->get("spectreSubnets")})."."); return "error"; } diff --git a/lib/WebGUI/Operation/Spectre.pm b/lib/WebGUI/Operation/Spectre.pm index fe6253eb2..c8c3d9cec 100644 --- a/lib/WebGUI/Operation/Spectre.pm +++ b/lib/WebGUI/Operation/Spectre.pm @@ -59,7 +59,7 @@ sub www_spectreGetSiteData { if (!defined $subnets) { $subnets = []; } - if (!isInSubnet($session->env->getIp, $subnets)) { + if (!isInSubnet($session->request->address, $subnets)) { $session->errorHandler->security("Tried to make a Spectre workflow data load request, but we're only allowed to accept requests from " .join(",",@{$subnets})."."); } @@ -181,7 +181,7 @@ sub www_spectreTest { $subnets = []; } - my $sessionIp = $session->env->getIp; + my $sessionIp = $session->request->address; unless (isInSubnet($sessionIp, $subnets)) { $session->errorHandler->security( sprintf "Tried to make a Spectre workflow runner request from %s, but we're only allowed to accept requests from %s", diff --git a/lib/WebGUI/Operation/User.pm b/lib/WebGUI/Operation/User.pm index 2014ee832..b7d0971bb 100644 --- a/lib/WebGUI/Operation/User.pm +++ b/lib/WebGUI/Operation/User.pm @@ -141,7 +141,7 @@ sub canUseService { my ( $session ) = @_; my $subnets = $session->config->get('serviceSubnets'); return 1 if !$subnets || !@{$subnets}; - return 1 if WebGUI::Utility::isInSubnet( $session->env->getIp, $subnets ); + return 1 if WebGUI::Utility::isInSubnet( $session->request->address, $subnets ); return 0; # Don't go away mad, just go away } diff --git a/lib/WebGUI/Operation/Workflow.pm b/lib/WebGUI/Operation/Workflow.pm index 1c038cc89..2806fc2ca 100644 --- a/lib/WebGUI/Operation/Workflow.pm +++ b/lib/WebGUI/Operation/Workflow.pm @@ -482,7 +482,7 @@ sub www_runWorkflow { my $session = shift; $session->http->setMimeType("text/plain"); $session->http->setCacheControl("none"); - unless (isInSubnet($session->env->getIp, $session->config->get("spectreSubnets")) || canRunWorkflow($session)) { + unless (isInSubnet($session->request->address, $session->config->get("spectreSubnets")) || canRunWorkflow($session)) { $session->errorHandler->security("make a Spectre workflow runner request, but we're only allowed to accept requests from ".join(",",@{$session->config->get("spectreSubnets")})."."); return "error"; } diff --git a/lib/WebGUI/Paths.pm b/lib/WebGUI/Paths.pm index 22238e932..7de1d2cb4 100644 --- a/lib/WebGUI/Paths.pm +++ b/lib/WebGUI/Paths.pm @@ -85,7 +85,7 @@ Returns the base directory of the default site uploads content. Returns the file path of the default site create.sql script. -=head2 var +=head2 share Returns the base directory for WebGUI auxiliary files. @@ -102,12 +102,12 @@ BEGIN { spectreConfig => catfile($root, 'etc', 'spectre.conf'), preloadCustom => catfile($root, 'etc', 'preload.custom'), preloadExclusions => catfile($root, 'etc', 'preload.exclude'), - upgrades => catdir($root, 'var', 'upgrades'), + upgrades => catdir($root, 'share', 'upgrades'), extras => catdir($root, 'www', 'extras'), defaultUploads => catdir($root, 'www', 'uploads'), - defaultCreateSQL => catdir($root, 'docs', 'create.sql'), - var => catdir($root, 'var'), - defaultPSGI => catdir($root, 'var', 'site.psgi'), + defaultCreateSQL => catdir($root, 'share', 'create.sql'), + share => catdir($root, 'share'), + defaultPSGI => catdir($root, 'share', 'site.psgi'), ); my $meta = Class::MOP::Class->initialize(__PACKAGE__); for my $sub (keys %paths) { @@ -203,6 +203,7 @@ Returns the list of modules to exclude from preloading as an array. sub preloadExclude { my $class = shift; my @excludes = _readTextLines($class->preloadExclusions); + push @excludes, 'WebGUI::Upgrade', 'WebGUI::Upgrade::*'; return @excludes; } diff --git a/lib/WebGUI/Session.pm b/lib/WebGUI/Session.pm index 496129b8e..a06705e0f 100644 --- a/lib/WebGUI/Session.pm +++ b/lib/WebGUI/Session.pm @@ -20,11 +20,12 @@ use 5.010; use CHI; use File::Temp qw( tempdir ); use Scalar::Util qw( weaken ); +use HTTP::Message::PSGI; +use HTTP::Request::Common; use WebGUI::Config; use WebGUI::SQL; use WebGUI::User; use WebGUI::Session::DateTime; -use WebGUI::Session::Env; use WebGUI::Session::ErrorHandler; use WebGUI::Session::Form; use WebGUI::Session::Http; @@ -64,7 +65,6 @@ B It is important to distinguish the difference between a WebGUI session $session->datetime $session->db $session->dbSlave - $session->env $session->log $session->form $session->http @@ -169,9 +169,15 @@ sub close { # Kill circular references. The literal list is so that the order # can be explicitly shuffled as necessary. - foreach my $key (qw/_asset _datetime _icon _slave _db _env _form _http _id _output _privilege _scratch _setting _stow _style _url _user _var _cache _errorHandler _response _request/) { + foreach my $key (qw/_asset _datetime _icon _slave _db _form _http _id _output _privilege _scratch _setting _stow _style _url _user _var _cache _errorHandler _response _request/) { delete $self->{$key}; } + $self->{closed} = 1; +} + +sub closed { + my $self = shift; + return $self->{closed}; } #------------------------------------------------------------------- @@ -306,23 +312,6 @@ sub duplicate { } -#------------------------------------------------------------------- - -=head2 env ( ) - -Returns a WebGUI::Session::Env object. - -=cut - -sub env { - my $self = shift; - unless (exists $self->{_env}) { - $self->{_env} = WebGUI::Session::Env->new($self); - } - return $self->{_env}; -} - - #------------------------------------------------------------------- =head2 errorHandler ( ) @@ -480,15 +469,21 @@ sub open { my $self = { _config => $config }; bless $self, $class; - if ($env) { - my $request = WebGUI::Session::Request->new($env); - $self->{_request} = $request; - $self->{_response} = $request->new_response( 200 ); - - # Use the WebGUI::Session::Request object to look up the sessionId from cookies, if it - # wasn't given explicitly - $sessionId ||= $request->cookies->{$config->getCookieName}; + ##No env was passed, so construct one + if (! $env) { + my $url = 'http://' . $config->get('sitename')->[0]; + my $request = HTTP::Request::Common::GET($url); + $request->headers->user_agent('WebGUI'); + $env = $request->to_psgi; } + + my $request = WebGUI::Session::Request->new($env); + $self->{_request} = $request; + $self->{_response} = $request->new_response( 200 ); + + # Use the WebGUI::Session::Request object to look up the sessionId from cookies, if it + # wasn't given explicitly + $sessionId ||= $request->cookies->{$config->getCookieName}; # If the sessionId is still unset or is invalid, generate a new one if (!$sessionId || !$self->id->valid($sessionId)) { diff --git a/lib/WebGUI/Session/Env.pm b/lib/WebGUI/Session/Env.pm deleted file mode 100644 index 2f2965c89..000000000 --- a/lib/WebGUI/Session/Env.pm +++ /dev/null @@ -1,193 +0,0 @@ -package WebGUI::Session::Env; - -=head1 LEGAL - - ------------------------------------------------------------------- - WebGUI is Copyright 2001-2009 Plain Black Corporation. - ------------------------------------------------------------------- - Please read the legal notices (docs/legal.txt) and the license - (docs/license.txt) that came with this distribution before using - this software. - ------------------------------------------------------------------- - http://www.plainblack.com info@plainblack.com - ------------------------------------------------------------------- - -=cut - -use strict; - -=head1 NAME - -Package WebGUI::Session::Env - -=head1 DESCRIPTION - -This package allows you to reference environment variables. - -=head1 SYNOPSIS - -$env = WebGUI::Session::Env->new; - -$value = $env->get('REMOTE_ADDR'); - -return 'not gonna see it' if $env->requestNotViewed() ; - -=head1 METHODS - -These methods are available from this package: - -=cut - - -#------------------------------------------------------------------- - -=head2 callerIsSearchSite ( ) - -Returns true if the remote address matches a site which is a known indexer or spider. - -=cut - -sub callerIsSearchSite { - - my $self = shift; - my $remoteAddress = $self->getIp; - - return 1 if $remoteAddress =~ /203\.87\.123\.1../ # Blaiz Enterprise Rawgrunt search - || $remoteAddress =~ /123\.113\.184\.2../ # Unknown Yahoo Robot - || $remoteAddress == ''; - - return 0; - -} - - -#------------------------------------------------------------------- - -=head2 clientIsSpider ( ) - -Returns true is the client/agent is a spider/indexer or some other non-human interface, determined -by checking the user agent against a list of known spiders. - -=cut - - -sub clientIsSpider { - - my $self = shift; - my $userAgent = $self->get('HTTP_USER_AGENT'); - - return 1 if $userAgent eq '' - || $userAgent =~ m<(^wre\/| # the WRE wget's http://localhost/ every 2-3 minutes 24 hours a day... - ^morpheus| - libwww| - s[pb]ider| - bot| - robo| - sco[ou]t| - crawl| - miner| - reaper| - finder| - search| - engine| - download| - fetch| - scan| - slurp)>ix; - - return 0; - -} - -#------------------------------------------------------------------- - -=head2 get( varName ) - -Retrieves the current value of an environment variable. - -=head3 varName - -The name of the variable. - -=cut - -sub get { - my $self = shift; - my $var = shift; - return $$self->{$var}; -} - - -#------------------------------------------------------------------- - -=head2 getIp ( ) - -Returns the user's IP address. - -=cut - -sub getIp { - my $self = shift; - return $self->get('REMOTE_ADDR'); -} - - -#------------------------------------------------------------------- - -=head2 new ( ) - -Constructor. Returns an env object. - -=cut - -sub new { - my $class = shift; - my $session = shift; - my $env; - if ($session->request) { - $env = $session->request->env; - } - else { - $env = {}; - } - return bless \$env, $class; -} - -#------------------------------------------------------------------- - -=head2 requestNotViewed ( ) - -Returns true is the client/agent is a spider/indexer or some other non-human interface - -=cut - -sub requestNotViewed { - - my $self = shift; - return $self->clientIsSpider(); - # || $self->callerIsSearchSite(); # this part is currently left out because - # it has minimal effect and does not manage - # IPv6 addresses. it may be useful in the - # future though - -} - -#------------------------------------------------------------------- - -=head2 sslRequest ( ) - -Returns true if a https request was made. - -HTTP_SSLPROXY is set by mod_proxy in the WRE so that WebGUI knows that the original request -was made via SSL. - -=cut - -sub sslRequest { - my $self = shift; - return $self->get('psgi.url_scheme') eq 'https'; -} - - -1; - diff --git a/lib/WebGUI/Session/ErrorHandler.pm b/lib/WebGUI/Session/ErrorHandler.pm index 0519e2ab5..887cf0ecd 100644 --- a/lib/WebGUI/Session/ErrorHandler.pm +++ b/lib/WebGUI/Session/ErrorHandler.pm @@ -253,7 +253,7 @@ sub security { my $self = shift; my $message = shift; @_ = ($self, $self->session->user->username." (".$self->session->user->userId.") connecting from " - .$self->session->env->getIp." attempted to ".$message); + .$self->session->request->address." attempted to ".$message); goto $self->can('warn'); } diff --git a/lib/WebGUI/Session/Request.pm b/lib/WebGUI/Session/Request.pm index 2a9113529..393a7cf46 100644 --- a/lib/WebGUI/Session/Request.pm +++ b/lib/WebGUI/Session/Request.pm @@ -17,6 +17,68 @@ is created. =head1 METHODS +=cut + +#------------------------------------------------------------------- + +=head2 clientIsSpider ( ) + +Returns true is the client/agent is a spider/indexer or some other non-human interface, determined +by checking the user agent against a list of known spiders. + +=cut + +sub clientIsSpider { + + my $self = shift; + my $userAgent = $self->user_agent; + + return 1 if $userAgent eq '' + || $userAgent =~ m<(^wre\/| # the WRE wget's http://localhost/ every 2-3 minutes 24 hours a day... + ^morpheus| + libwww| + s[pb]ider| + bot| + robo| + sco[ou]t| + crawl| + miner| + reaper| + finder| + search| + engine| + download| + fetch| + scan| + slurp)>ix; + + return 0; + +} + +#------------------------------------------------------------------- + +=head2 callerIsSearchSite ( ) + +Returns true if the remote address matches a site which is a known indexer or spider. + +=cut + +sub callerIsSearchSite { + + my $self = shift; + my $remoteAddress = $self->address; + + return 1 if $remoteAddress =~ /203\.87\.123\.1../ # Blaiz Enterprise Rawgrunt search + || $remoteAddress =~ /123\.113\.184\.2../ # Unknown Yahoo Robot + || $remoteAddress == ''; + + return 0; + +} + +#------------------------------------------------------------------- + =head2 new_response () Creates a new L object. @@ -32,9 +94,29 @@ sub new_response { return WebGUI::Session::Response->new(@_); } +#------------------------------------------------------------------- + +=head2 requestNotViewed ( ) + +Returns true is the client/agent is a spider/indexer or some other non-human interface + +=cut + +sub requestNotViewed { + + my $self = shift; + return $self->clientIsSpider(); + # || $self->callerIsSearchSite(); # this part is currently left out because + # it has minimal effect and does not manage + # IPv6 addresses. it may be useful in the + # future though + +} + + # This is only temporary sub TRACE { shift->env->{'psgi.errors'}->print(join '', @_, "\n"); } -1; \ No newline at end of file +1; diff --git a/lib/WebGUI/Session/Style.pm b/lib/WebGUI/Session/Style.pm index ed449cb06..7258c4016 100644 --- a/lib/WebGUI/Session/Style.pm +++ b/lib/WebGUI/Session/Style.pm @@ -131,7 +131,7 @@ sub useMobileStyle { if (! $session->setting->get('useMobileStyle')) { return $self->{_useMobileStyle} = 0; } - my $ua = $session->env->get('HTTP_USER_AGENT'); + my $ua = $session->request->user_agent; for my $mobileUA (@{ $self->session->config->get('mobileUserAgents') }) { if ($ua =~ m/$mobileUA/) { return $self->{_useMobileStyle} = 1; diff --git a/lib/WebGUI/Session/Url.pm b/lib/WebGUI/Session/Url.pm index 101e8ee47..cc0d907ff 100644 --- a/lib/WebGUI/Session/Url.pm +++ b/lib/WebGUI/Session/Url.pm @@ -136,7 +136,7 @@ sub extras { my $cdnCfg = $self->session->config->get('cdn'); if ( $cdnCfg and $cdnCfg->{'enabled'} and $cdnCfg->{'extrasCdn'} ) { unless ( $path and grep $path =~ m/$_/, @{ $cdnCfg->{'extrasExclude'} } ) { - if ($cdnCfg->{'extrasSsl'} && $self->session->env->sslRequest) { + if ($cdnCfg->{'extrasSsl'} && $self->session->request->secure) { $url = $cdnCfg->{'extrasSsl'}; } else { @@ -258,7 +258,7 @@ Returns the URL of the page this request was refered from (no gateway, no query sub getRefererUrl { my $self = shift; - my $referer = $self->session->env->get("HTTP_REFERER"); + my $referer = $self->session->request->referer; return undef unless ($referer); my $url = $referer; my $gateway = $self->session->config->get("gateway"); @@ -289,20 +289,20 @@ is not passed in, it will attempt to get one from the L method, or finally sub forceSecureConnection { my $self = shift; my $url = shift; - my ($conf, $env, $http) = $self->session->quick(qw(config env http)); + my ($conf, $http) = $self->session->quick(qw(config http)); - if ($conf->get("sslEnabled") && !$env->sslRequest){ + if ($conf->get("sslEnabled") && ! $self->session->request->secure){ - $url = $self->session->url->page if(! $url); - $url = $env->get('QUERY_STRING') if(! $url); + my $query_string = $self->session->request->env->{'QUERY_STRING'}; + $url = $url || $self->page || $query_string; my $siteURL = $self->getSiteURL(); if($url !~ /^$siteURL/i){ $url = $siteURL . $url; } - if($env->get('QUERY_STRING')){ - $url .= "?". $env->get('QUERY_STRING'); + if($query_string){ + $url .= "?". $query_string; } if($url =~ /^http/i) { $url =~ s/^https?/https/i; @@ -347,14 +347,14 @@ sub getSiteURL { unless ($self->{_siteUrl}) { my $site = ""; my $sitenames = $self->session->config->get("sitename"); - my ($http_host,$currentPort) = split(':', $self->session->env->get("HTTP_HOST")); + my ($http_host,$currentPort) = split(':', $self->session->request->env->{"HTTP_HOST"}); if ($self->session->setting->get("hostToUse") eq "HTTP_HOST" and isIn($http_host,@{$sitenames})) { $site = $http_host; } else { $site = $sitenames->[0]; } my $proto = "http://"; - if ($self->session->env->sslRequest) { + if ($self->session->request->secure) { $proto = "https://"; } my $port = ""; diff --git a/lib/WebGUI/Session/Var.pm b/lib/WebGUI/Session/Var.pm index 1dba94d22..6f611b1c0 100644 --- a/lib/WebGUI/Session/Var.pm +++ b/lib/WebGUI/Session/Var.pm @@ -182,7 +182,7 @@ sub new { my $time = time(); my $timeout = $session->setting->get("sessionTimeout"); $self->{_var}{lastPageView} = $time; - $self->{_var}{lastIP} = $session->env->getIp; + $self->{_var}{lastIP} = $session->request->address; $self->{_var}{expires} = $time + $timeout; if ($self->{_var}{nextCacheFlush} > 0 && $self->{_var}{nextCacheFlush} < $time) { delete $self->{_var}{nextCacheFlush}; @@ -247,7 +247,7 @@ sub start { $self->{_var} = { expires => $time + $timeout, lastPageView => $time, - lastIP => $session->env->getIp, + lastIP => $session->request->address, adminOn => 0, userId => $userId }; diff --git a/lib/WebGUI/Shop/Address.pm b/lib/WebGUI/Shop/Address.pm index 49631c78c..4c0d8c919 100644 --- a/lib/WebGUI/Shop/Address.pm +++ b/lib/WebGUI/Shop/Address.pm @@ -15,7 +15,85 @@ package WebGUI::Shop::Address; =cut use strict; -use Class::InsideOut qw{ :std }; +use Moose; +use WebGUI::Definition; + +property label => ( + noFormPost => 1, + default => '', +); + +property firstName => ( + noFormPost => 1, + default => '', +); + +property lastName => ( + noFormPost => 1, + default => '', +); + +property address1 => ( + noFormPost => 1, + default => '', +); + +property address2 => ( + noFormPost => 1, + default => '', +); + +property address3 => ( + noFormPost => 1, + default => '', +); + +property city => ( + noFormPost => 1, + default => '', +); + +property state => ( + noFormPost => 1, + default => '', +); + +property code => ( + noFormPost => 1, + default => '', +); + +property country => ( + noFormPost => 1, + default => '', +); + +property phoneNumber => ( + noFormPost => 1, + default => '', +); + +property email => ( + noFormPost => 1, + default => '', +); + +property organization => ( + noFormPost => 1, + default => '', +); + +property "addressBookId" => ( + noFormPost => 1, + required => 1, +); + +has [ qw/addressId addressBook/] => ( + is => 'ro', + required => 1, +); + +use Scalar::Util qw/blessed/; use WebGUI::Exception::Shop; =head1 NAME @@ -39,166 +117,30 @@ These subroutines are available from this package: =cut -readonly addressBook => my %addressBook; -private properties => my %properties; - #------------------------------------------------------------------- -=head2 addressBook ( ) +=head2 new ( $book, $addressId ) -Returns a reference to the Address Book. +Constructor. Instanciates an address based upon an addressId. -=cut +=head2 new ( $book, $properties ) -#------------------------------------------------------------------- +Constructor. Builds a new, default address. -=head2 create ( addressBook, address) +=head2 new ( $properties ) -Constructor. Adds an address to an address book. Returns a reference to the address. +Constructor. Builds a new, default address book object in Moose style with default properties set by $properties. This does not +persist them to the database automatically. This needs to be done via $self->write. -=head3 addressBook +=head3 $addressBook -A reference to a WebGUI::Shop::AddressBook object. +A reference to an addressBook object -=head3 address +=head3 $addressId -A hash reference containing the properties to set in the address. +The unique id of an address to instanciate. -=cut - -sub create { - my ($class, $book, $addressData) = @_; - unless (defined $book && $book->isa("WebGUI::Shop::AddressBook")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Shop::AddressBook", got=>(ref $book), error=>"Need an address book.", param=>$book); - } - unless (defined $addressData && ref $addressData eq "HASH") { - WebGUI::Error::InvalidParam->throw(param=>$addressData, error=>"Need a hash reference."); - } - my $id = $book->session->db->setRow("address","addressId", {addressId=>"new", addressBookId=>$book->getId}); - my $address = $class->new($book, $id); - $address->update($addressData); - return $address; -} - -#------------------------------------------------------------------- - -=head2 delete ( ) - -Removes this address from the book. - -=cut - -sub delete { - my $self = shift; - $self->addressBook->session->db->deleteRow("address","addressId",$self->getId); - return undef; -} - -#------------------------------------------------------------------- - -=head2 get ( [ property ] ) - -Returns a duplicated hash reference of this object’s data. - -=head3 property - -Any field − returns the value of a field rather than the hash reference. - -=cut - -sub get { - my ($self, $name) = @_; - if (defined $name) { - return $properties{id $self}{$name}; - } - my %copyOfHashRef = %{$properties{id $self}}; - return \%copyOfHashRef; -} - -#------------------------------------------------------------------- - -=head2 getHtmlFormatted () - -Returns an HTML formatted address for display. - -=cut - -sub getHtmlFormatted { - my $self = shift; - my $address = $self->get("firstName"). " " .$self->get("lastName") . "
    "; - $address .= $self->get("organization") . "
    " if ($self->get("organization") ne ""); - $address .= $self->get("address1") . "
    "; - $address .= $self->get("address2") . "
    " if ($self->get("address2") ne ""); - $address .= $self->get("address3") . "
    " if ($self->get("address3") ne ""); - $address .= $self->get("city") . ", "; - $address .= $self->get("state") . " " if ($self->get("state") ne ""); - $address .= $self->get("code") if ($self->get("code") ne ""); - $address .= '
    ' . $self->get("country"); - $address .= '
    '.$self->get("phoneNumber") if ($self->get("phoneNumber") ne ""); - $address .= '
    '.$self->get("email").'' if ($self->get("email") ne ""); - return $address; -} - -#------------------------------------------------------------------- - -=head2 getId () - -Returns the unique id of this item. - -=cut - -sub getId { - my $self = shift; - return $self->get("addressId"); -} - - -#------------------------------------------------------------------- - -=head2 new ( addressBook, addressId ) - -Constructor. Instanciates an existing address from the database based upon addressId. - -=head3 addressBook - -A reference to a WebGUI::Shop::AdressBook object. - -=head3 addressId - -The unique id of the address to instanciate. - -=cut - -sub new { - my ($class, $book, $addressId) = @_; - unless (defined $book && $book->isa("WebGUI::Shop::AddressBook")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Shop::AddressBook", got=>(ref $book), error=>"Need an address book."); - } - unless (defined $addressId) { - WebGUI::Error::InvalidParam->throw(error=>"Need an addressId.", param=>$addressId); - } - my $address = $book->session->db->quickHashRef('select * from address where addressId=?', [$addressId]); - if ($address->{addressId} eq "") { - WebGUI::Error::ObjectNotFound->throw(error=>"Address not found.", id=>$addressId); - } - if ($address->{addressBookId} ne $book->getId) { - WebGUI::Error::ObjectNotFound->throw(error=>"Address not in this address book.", id=>$addressId); - } - my $self = register $class; - my $id = id $self; - $addressBook{ $id } = $book; - $properties{ $id } = $address; - return $self; -} - - -#------------------------------------------------------------------- - -=head2 update ( properties ) - -Sets properties of the address. - -=head3 properties +=head3 $properties A hash reference that contains one or more of the following: @@ -254,19 +196,165 @@ An email address for this user. The organization or company that this user is a part of. -=head4 addressBookId +=cut -The address book that this address belongs to. + +around BUILDARGS => sub { + my $orig = shift; + my $class = shift; + if (ref $_[0] eq 'HASH') { + my $properties = $_[0]; + my $book = $properties->{addressBook}; + if (! (blessed $book && $book->isa('WebGUI::Shop::AddressBook')) ) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Shop::AddressBook", got=>(ref $book), error=>"Need an address book.", param=>$book); + } + my ($addressId) = $class->_init($book); + $properties->{addressId} = $addressId; + $properties->{addressBookId} = $book->addressBookId; + $properties->{addressBook} = $book; + return $class->$orig($properties); + } + my $book = shift; + if (! (blessed $book && $book->isa('WebGUI::Shop::AddressBook')) ) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Shop::AddressBook", got=>(ref $book), error=>"Need an address book.", param=>$book); + } + my $argument2 = shift; + if (!defined $argument2) { + my ($addressId) = $class->_init($book); + my $properties = {}; + $properties->{addressId} = $addressId; + $properties->{addressBookId} = $book->addressBookId; + $properties->{addressBook} = $book; + return $class->$orig($properties); + } + elsif (ref $argument2 eq 'HASH') { + my $properties = $argument2; + my ($addressId) = $class->_init($book); + $properties->{addressId} = $addressId; + $properties->{addressBookId} = $book->addressBookId; + $properties->{addressBook} = $book; + return $class->$orig($properties); + } + ##Look up one in the db + my $address = $book->session->db->quickHashRef("select * from address where addressId=?", [$argument2]); + if ($address->{addressId} eq "") { + WebGUI::Error::ObjectNotFound->throw(error=>"Address not found.", id=>$argument2); + } + if ($address->{addressBookId} ne $book->getId) { + WebGUI::Error::ObjectNotFound->throw(error=>"Address not in this address book.", id=>$argument2); + } + $address->{addressBook} = $book; + return $class->$orig($address); +}; + +#------------------------------------------------------------------- + +=head2 _init ( session ) + +Builds a stub of object information in the database, and returns the newly created +addressId, and the creationDate fields so the object can be initialized correctly. =cut -sub update { - my ($self, $newProperties) = @_; - my $id = id $self; - foreach my $field (qw(addressBookId email organization address1 address2 address3 state code city label firstName lastName country phoneNumber)) { - $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; - } - $self->addressBook->session->db->setRow("address","addressId",$properties{$id}); +sub _init { + my $class = shift; + my $book = shift; + my $session = $book->session; + my $addressId = $session->id->generate; + $session->db->write('insert into address (addressId, addressBookId) values (?,?)', [$addressId, $book->getId]); + return ($addressId); +} + +#------------------------------------------------------------------- + +=head2 addressBook ( ) + +Returns a reference to the Address Book. + +=cut + +#------------------------------------------------------------------- + +=head2 create ( book ) + +Deprecated, left as a stub for existing code. Use L instead. + +=head3 book + +A reference to an address book. + +=cut + +sub create { + my ($class, $book) = @_; + return $class->new($book); +} + +#------------------------------------------------------------------- + +=head2 delete ( ) + +Removes this address from the book. + +=cut + +sub delete { + my $self = shift; + $self->addressBook->session->db->deleteRow("address","addressId",$self->getId); + return undef; +} + +#------------------------------------------------------------------- + +=head2 getHtmlFormatted () + +Returns an HTML formatted address for display. + +=cut + +sub getHtmlFormatted { + my $self = shift; + my $address = $self->firstName. " " .$self->lastName . "
    "; + $address .= $self->organization . "
    " if ($self->organization ne ""); + $address .= $self->address1 . "
    "; + $address .= $self->address2 . "
    " if ($self->address2 ne ""); + $address .= $self->address3 . "
    " if ($self->address3 ne ""); + $address .= $self->city . ", "; + $address .= $self->state . " " if ($self->state ne ""); + $address .= $self->code if ($self->code ne ""); + $address .= '
    ' . $self->country; + $address .= '
    '.$self->phoneNumber if ($self->phoneNumber ne ""); + $address .= '
    '.$self->email.'' if ($self->email ne ""); + return $address; +} + +#------------------------------------------------------------------- + +=head2 getId () + +Returns the unique id of this item. + +=cut + +sub getId { + my $self = shift; + return $self->get("addressId"); +} + + +#------------------------------------------------------------------- + +=head2 write ( ) + +Store the object's properties to the db. + +=cut + +sub write { + my ($self) = @_; + my $properties = $self->get(); + my $book = delete $properties->{addressBook}; + $book->session->db->setRow("address","addressId",$properties); } diff --git a/lib/WebGUI/Shop/AddressBook.pm b/lib/WebGUI/Shop/AddressBook.pm index a504e5c7c..fd0056d2f 100644 --- a/lib/WebGUI/Shop/AddressBook.pm +++ b/lib/WebGUI/Shop/AddressBook.pm @@ -2,7 +2,25 @@ package WebGUI::Shop::AddressBook; use strict; -use Class::InsideOut qw{ :std }; +use Moose; +use WebGUI::Definition; + +property 'userId' => ( + noFormPost => 1, + default => '', +); + +property 'defaultAddressId' => ( + noFormPost => 1, + default => '', +); + +has [ qw/addressBookId session/] => ( + is => 'ro', + required => 1, +); + + use JSON; require WebGUI::Asset::Template; use WebGUI::Exception::Shop; @@ -31,9 +49,103 @@ These subroutines are available from this package: =cut -readonly session => my %session; -private properties => my %properties; -private addressCache => my %addressCache; +#------------------------------------------------------------------- + +=head2 new ( $session, $addressBookId ) + +Constructor. Instanciates an address book based upon an addressBookId. + +=head2 new ( $session ) + +Constructor. Builds a new, default address book object. + +=head2 new ( $properties ) + +Constructor. Builds a new, default address book object in Moose style with default properties set by $properties. This does not +persist them to the database automatically. This needs to be done via $self->write. + +=head3 $session + +A reference to the current session. + +=head3 $addressBookId + +The unique id of a cart to instanciate. + +=head3 $properties + +A hash reference that contains one or more of the following: + +=head4 defaultAddressId + +The unique id for a address attached to this cart. + +=head4 userId + +The unique id for the user who owns this cart. + +=cut + + +around BUILDARGS => sub { + my $orig = shift; + my $class = shift; + if (ref $_[0] eq 'HASH') { + my $properties = $_[0]; + my $session = $properties->{session}; + if (! (blessed $session && $session->isa('WebGUI::Session')) ) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + if ($session->user->isVisitor) { + WebGUI::Error::InvalidParam->throw(error=>"Visitor cannot have an address book."); + } + my ($addressBookId) = $class->_init($session); + $properties->{addressBookId} = $addressBookId; + $properties->{userId} = $session->user->userId; + return $class->$orig($properties); + } + my $session = shift; + if (! (blessed $session && $session->isa('WebGUI::Session'))) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + if ($session->user->isVisitor) { + WebGUI::Error::InvalidParam->throw(error=>"Visitor cannot have an address book."); + } + my $argument2 = shift; + if (!defined $argument2) { + my ($addressBookId) = $class->_init($session); + my $properties = {}; + $properties->{session} = $session; + $properties->{addressBookId} = $addressBookId; + $properties->{userId} = $session->user->userId; + return $class->$orig($properties); + } + ##Look up one in the db + my $book = $session->db->quickHashRef("select * from addressBook where addressBookId=?", [$argument2]); + if ($book->{addressBookId} eq "") { + WebGUI::Error::ObjectNotFound->throw(error=>"No such address book.", id=>$argument2); + } + $book->{session} = $session; + return $class->$orig($book); +}; + +#------------------------------------------------------------------- + +=head2 _init ( session ) + +Builds a stub of object information in the database, and returns the newly created +addressBookId, and the creationDate fields so the object can be initialized correctly. + +=cut + +sub _init { + my $class = shift; + my $session = shift; + my $addressBookId = $session->id->generate; + $session->db->write('insert into addressBook (addressBookId, userId) values (?,?)', [$addressBookId, $session->user->userId]); + return ($addressBookId); +} + #------------------------------------------------------------------- @@ -51,7 +163,8 @@ A hash reference containing address information. sub addAddress { my ($self, $address) = @_; - my $addressObj = WebGUI::Shop::Address->create( $self, $address); + my $addressObj = WebGUI::Shop::Address->create($self); + $addressObj->update($address); return $addressObj; } @@ -114,32 +227,19 @@ sub appendAddressFormVars { #------------------------------------------------------------------- -=head2 create ( session, userId ) +=head2 create ( session ) -Constructor. Creates a new address book for this user. +Deprecated, left as a stub for existing code. Use L instead. =head3 session A reference to the current session. -=head3 userId - -The userId for the user. Throws an exception if it is Visitor. Defaults to the session -user if omitted. - =cut sub create { - my ($class, $session, $userId) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - $userId ||= $session->user->userId; - if ($userId eq '1') { - WebGUI::Error::InvalidParam->throw(error=>"Visitor cannot have an address book."); - } - my $id = $session->db->setRow("addressBook", "addressBookId", {addressBookId=>"new", userId=>$userId}); - return $class->new($session, $id); + my ($class, $session) = @_; + return $class->new($session); } #------------------------------------------------------------------- @@ -152,9 +252,7 @@ Deletes this address book and all addresses contained in it. sub delete { my ($self) = @_; - my $myId = id $self; foreach my $address (@{$self->getAddresses}) { - delete $addressCache{$myId}{$address->getId}; $address->delete; } $self->session->db->write("delete from addressBook where addressBookId=?",[$self->getId]); @@ -181,28 +279,6 @@ sub formatCallbackForm { #------------------------------------------------------------------- -=head2 get ( [ property ] ) - -Returns a duplicated hash reference of this object’s data. - -=head3 property - -Any field − returns the value of a field rather than the hash reference. See the -C method. - -=cut - -sub get { - my ($self, $name) = @_; - if (defined $name) { - return $properties{id $self}{$name}; - } - my %copyOfHashRef = %{$properties{id $self}}; - return \%copyOfHashRef; -} - -#------------------------------------------------------------------- - =head2 getAddress ( id ) Returns an address object. @@ -215,11 +291,10 @@ An address object's unique id. sub getAddress { my ($self, $addressId) = @_; - my $id = id $self; - unless (exists $addressCache{$id}{$addressId}) { - $addressCache{$id}{$addressId} = WebGUI::Shop::Address->new($self, $addressId); + unless (exists $self->{_addressCache}->{$addressId}) { + $self->{_addressCache}->{$addressId} = WebGUI::Shop::Address->new($self, $addressId); } - return $addressCache{$id}{$addressId}; + return $self->{_addressCache}->{$addressId}; } #------------------------------------------------------------------- @@ -337,41 +412,6 @@ sub missingFields { #------------------------------------------------------------------- -=head2 new ( session, addressBookId ) - -Constructor. Instanciates an addressBook based upon a addressBookId. - -=head3 session - -A reference to the current session. - -=head3 addressBookId - -The unique id of an address book to instanciate. - -=cut - -sub new { - my ($class, $session, $addressBookId) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - unless (defined $addressBookId) { - WebGUI::Error::InvalidParam->throw(error=>"Need an addressBookId."); - } - my $addressBook = $session->db->quickHashRef('select * from addressBook where addressBookId=?', [$addressBookId]); - if ($addressBook->{addressBookId} eq "") { - WebGUI::Error::ObjectNotFound->throw(error=>"No such address book.", id=>$addressBookId); - } - my $self = register $class; - my $id = id $self; - $session{ $id } = $session; - $properties{ $id } = $addressBook; - return $self; -} - -#------------------------------------------------------------------- - =head2 newByUserId ( session, userId ) Constructor. Creates a new address book for this user if they don't have one. In any case returns a reference to the address book. @@ -418,7 +458,7 @@ sub newByUserId { } else { # nope create one for the user - return $class->create($session); + return $class->new($session); } } @@ -465,31 +505,15 @@ sub processAddressForm { #------------------------------------------------------------------- -=head2 update ( properties ) +=head2 write ( ) -Sets properties in the addressBook - -=head3 properties - -A hash reference that contains one of the following: - -=head4 userId - -Assign the user that owns this address book. - -=head4 defaultAddressId - -The id of the address to be made the default for this address book. +Writes the object properties to the database. =cut -sub update { +sub write { my ($self, $newProperties) = @_; - my $id = id $self; - foreach my $field (qw(userId defaultAddressId)) { - $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; - } - $self->session->db->setRow("addressBook","addressBookId",$properties{$id}); + $self->session->db->setRow("addressBook","addressBookId",$self->get()); } #------------------------------------------------------------------- diff --git a/lib/WebGUI/Shop/Admin.pm b/lib/WebGUI/Shop/Admin.pm index 3bae3354d..5279990ad 100644 --- a/lib/WebGUI/Shop/Admin.pm +++ b/lib/WebGUI/Shop/Admin.pm @@ -1,7 +1,27 @@ package WebGUI::Shop::Admin; use strict; -use Class::InsideOut qw{ :std }; + +use Moose; + +has session => ( + is => 'ro', + required => 1, +); + +around BUILDARGS => sub { + my $orig = shift; + my $className = shift; + + ##Original arguments start here. + my $protoSession = $_[0]; + if (blessed $protoSession && $protoSession->isa('WebGUI::Session')) { + return $className->$orig(session => $protoSession); + } + return $className->$orig(@_); +}; + + use WebGUI::AdminConsole; use WebGUI::Exception::Shop; use WebGUI::HTMLForm; @@ -28,8 +48,6 @@ These subroutines are available from this package: =cut -readonly session => my %session; - #------------------------------------------------------------------- =head2 canManage ( [ $user ] ) @@ -103,17 +121,6 @@ A reference to the current session. =cut -sub new { - my ($class, $session) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - my $self = register $class; - my $id = id $self; - $session{ $id } = $session; - return $self; -} - #------------------------------------------------------------------- =head2 session () diff --git a/lib/WebGUI/Shop/Cart.pm b/lib/WebGUI/Shop/Cart.pm index ffcdf8d97..61dd5c371 100644 --- a/lib/WebGUI/Shop/Cart.pm +++ b/lib/WebGUI/Shop/Cart.pm @@ -2,7 +2,58 @@ package WebGUI::Shop::Cart; use strict; -use Class::InsideOut qw{ :std }; +use Scalar::Util qw/blessed/; +use Moose; +use WebGUI::Definition; + +property 'shippingAddressId' => ( + noFormPost => 1, + default => '', +); + +property 'billingAddressId' => ( + noFormPost => 1, + default => '', +); + +property 'shipperId' => ( + noFormPost => 1, + default => '', +); + +property 'gatewayId' => ( + noFormPost => 1, + default => '', +); + +property 'posUserId' => ( + noFormPost => 1, + default => '', +); + +property creationDate => ( + required => 1, + noFormPost => 1, + default => '', +); +has [ qw/cartId session/] => ( + is => 'ro', + required => 1, +); +has sessionId => ( + is => 'ro', + lazy => 1, + builder => '_default_sessionId', +); +sub _default_sessionId { + my $self = shift; + return $self->session->getId; +} +has error => ( + is => 'rw', +); + + use JSON; use WebGUI::Asset::Template; use WebGUI::Exception::Shop; @@ -38,10 +89,110 @@ These subroutines are available from this package: =cut -readonly session => my %session; -private properties => my %properties; -public error => my %error; -private addressBookCache => my %addressBookCache; +#------------------------------------------------------------------- + +=head2 new ( $session, $cartId ) + +Constructor. Instanciates a cart based upon a cartId. + +=head2 new ( $session ) + +Constructor. Builds a new, default cart object. + +=head2 new ( $properties ) + +Constructor. Builds a new, default cart object in Moose style with default properties set by $properties. This does not +persist them to the database automatically. This needs to be done via $self->write. + +=head3 $session + +A reference to the current session. + +=head3 $cartId + +The unique id of a cart to instanciate. + +=head3 $properties + +A hash reference that contains one or more of the following: + +=head4 shippingAddressId + +The unique id for a shipping address attached to this cart. + +=head4 billingAddressId + +The unique id for a billing address attached to this cart. + +=head4 shipperId + +The unique id of the configured shipping driver that will be used to ship these goods. + +=head4 posUserId + +The ID of a user being checked out, if they're being checked out by a cashier. + +=head4 creationDate + +The date the cart was created. + +=cut + + +around BUILDARGS => sub { + my $orig = shift; + my $class = shift; + if (ref $_[0] eq 'HASH') { + my $properties = $_[0]; + my $session = $properties->{session}; + if (! (blessed $session && $session->isa('WebGUI::Session')) ) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + my ($cartId, $creationDate) = $class->_init($session); + $properties->{cartId} = $cartId; + $properties->{creationDate} = $creationDate; + return $class->$orig($properties); + } + my $session = shift; + if (! (blessed $session && $session->isa('WebGUI::Session'))) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + my $argument2 = shift; + if (!defined $argument2) { + my ($cartId, $creationDate) = $class->_init($session); + my $properties = {}; + $properties->{session} = $session; + $properties->{cartId} = $cartId; + $properties->{creationDate} = $creationDate; + return $class->$orig($properties); + } + ##Look up one in the db + my $cart = $session->db->quickHashRef("select * from cart where cartId=?", [$argument2]); + if ($cart->{cartId} eq "") { + WebGUI::Error::ObjectNotFound->throw(error=>"No such cart.", id=>$argument2); + } + $cart->{session} = $session; + return $class->$orig($cart); +}; + + +#------------------------------------------------------------------- + +=head2 _init ( session ) + +Builds a stub of object information in the database, and returns the newly created +cartId, and the creationDate fields so the object can be initialized correctly. + +=cut + +sub _init { + my $class = shift; + my $session = shift; + my $creationDate = WebGUI::DateTime->new($session)->epoch; + my $cartId = $session->id->generate; + $session->db->write('insert into cart (cartId, sessionId, creationDate) values (?,?,?)', [$cartId, $session->getId, $creationDate]); + return ($cartId, $creationDate); +} #------------------------------------------------------------------- @@ -83,7 +234,7 @@ sub calculateShopCreditDeduction { } # cannot use in-shop credit on recurring items return $self->formatCurrency(0) if $self->requiresRecurringPayment; - return $self->formatCurrency(WebGUI::Shop::Credit->new($self->session, $self->get('posUserId'))->calculateDeduction($total)); + return $self->formatCurrency(WebGUI::Shop::Credit->new($self->session, $self->posUserId)->calculateDeduction($total)); } #------------------------------------------------------------------- @@ -160,7 +311,7 @@ sub calculateTotal { =head2 create ( session ) -Constructor. Creates a new cart object if there’s not one already attached to the current session object. Otherwise just instanciates the existing one. Returns a reference to the object. +Deprecated, left as a stub for existing code. Use L instead. =head3 session @@ -170,12 +321,7 @@ A reference to the current session. sub create { my ($class, $session) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - my $cartId = $session->id->generate; - $session->db->write('insert into cart (cartId, sessionId, creationDate) values (?,?,UNIX_TIMESTAMP())', [$cartId, $session->getId]); - return $class->new($session, $cartId); + return $class->new($session); } #------------------------------------------------------------------- @@ -230,27 +376,6 @@ sub formatCurrency { #------------------------------------------------------------------- -=head2 get ( [ property ] ) - -Returns a duplicated hash reference of this object’s data. - -=head3 property - -Any field − returns the value of a field rather than the hash reference. - -=cut - -sub get { - my ($self, $name) = @_; - if (defined $name) { - return $properties{id $self}{$name}; - } - my %copyOfHashRef = %{$properties{id $self}}; - return \%copyOfHashRef; -} - -#------------------------------------------------------------------- - =head2 getAddressBook () Returns a reference to the address book for the user who's cart this is. @@ -259,11 +384,10 @@ Returns a reference to the address book for the user who's cart this is. sub getAddressBook { my $self = shift; - my $id = id $self; - unless (exists $addressBookCache{$id}) { - $addressBookCache{$id} = WebGUI::Shop::AddressBook->newByUserId($self->session); + unless (exists $self->{_addressBook}) { + $self->{_addressBook} = WebGUI::Shop::AddressBook->newByUserId($self->session); } - return $addressBookCache{$id}; + return $self->{_addressBook}; } #------------------------------------------------------------------- @@ -277,7 +401,7 @@ Returns the WebGUI::Shop::Address object that is attached to this cart for billi sub getBillingAddress { my $self = shift; my $book = $self->getAddressBook; - if (my $addressId = $self->get("billingAddressId")) { + if (my $addressId = $self->billingAddressId) { return $book->getAddress($addressId); } my $address = $book->getDefaultAddress; @@ -332,7 +456,7 @@ Returns the unique id for this cart. sub getId { my ($self) = @_; - return $self->get("cartId"); + return $self->cartId; } #------------------------------------------------------------------- @@ -409,7 +533,7 @@ Returns the WebGUI::Shop::PayDriver object that is attached to this cart for pay sub getPaymentGateway { my $self = shift; - return WebGUI::Shop::Pay->new($self->session)->getPaymentGateway($self->get("gatewayId")); + return WebGUI::Shop::Pay->new($self->session)->getPaymentGateway($self->gatewayId); } #------------------------------------------------------------------- @@ -422,7 +546,7 @@ Returns the userId of the user making a purchase. If there is a cashier and the sub getPosUser { my $self = shift; - if ($self->get('posUserId') ne "") { + if ($self->posUserId ne "") { return WebGUI::User->new($self->session, $self->get('posUserId')); } return $self->session->user; @@ -438,7 +562,7 @@ Returns the WebGUI::Shop::ShipDriver object that is attached to this cart for sh sub getShipper { my $self = shift; - return WebGUI::Shop::Ship->new(session => $self->session)->getShipper($self->get("shipperId")); + return WebGUI::Shop::Ship->new(session => $self->session)->getShipper($self->shipperId); } #------------------------------------------------------------------- @@ -452,8 +576,8 @@ Returns the WebGUI::Shop::Address object that is attached to this cart for shipp sub getShippingAddress { my $self = shift; my $book = $self->getAddressBook; - if ($self->get("shippingAddressId")) { - return $book->getAddress($self->get("shippingAddressId")); + if ($self->shippingAddressId) { + return $book->getAddress($self->shippingAddressId); } my $address = $book->getDefaultAddress; $self->update({shippingAddressId=>$address->getId}); @@ -487,41 +611,6 @@ sub hasMixedItems { #------------------------------------------------------------------- -=head2 new ( session, cartId ) - -Constructor. Instanciates a cart based upon a cartId. - -=head3 session - -A reference to the current session. - -=head3 cartId - -The unique id of a cart to instanciate. - -=cut - -sub new { - my ($class, $session, $cartId) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - unless (defined $cartId && $cartId =~ m/^[A-Za-z0-9_-]{22}$/) { - WebGUI::Error::InvalidParam->throw(error=>"Need a cartId."); - } - my $cart = $session->db->quickHashRef('select * from cart where cartId=?', [$cartId]); - if ($cart->{cartId} eq "") { - WebGUI::Error::ObjectNotFound->throw(error=>"No such cart.", id=>$cartId); - } - my $self = register $class; - my $id = id $self; - $session{ $id } = $session; - $properties{ $id } = $cart; - return $self; -} - -#------------------------------------------------------------------- - =head2 newBySession ( session ) Class method that figures out if the user has a cart in their session. If they do it returns it. If they don't it creates it and returns it. @@ -538,8 +627,7 @@ sub newBySession { WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); } my $cartId = $session->db->quickScalar("select cartId from cart where sessionId=?",[$session->getId]); - return $class->new($session, $cartId) if (defined $cartId and $cartId ne ''); - return $class->create($session); + return $class->new($session, $cartId); ##Falls back to creating a new cart if there's no 2nd argument } #------------------------------------------------------------------- @@ -597,12 +685,12 @@ sub readyForCheckout { if ($self->requiresShipping) { ##Must have a configured shipping id. - if (! $self->get('shipperId')) { + if (! $self->shipperId) { $self->error('no shipping method set'); return 0; } - my $shipper = eval { WebGUI::Shop::ShipDriver->new($session, $self->get('shipperId'))}; + my $shipper = eval { WebGUI::Shop::ShipDriver->new($session, $self->shipperId)}; if (my $e = WebGUI::Error->caught) { $self->error($e->error); return 0; @@ -628,19 +716,19 @@ sub readyForCheckout { } ##Must have a configured payment method. - if (! $self->get('gatewayId')) { + if (! $self->gatewayId) { $self->error('no payment gateway set'); return 0; } - my $gateway = eval { WebGUI::Shop::PayDriver->new($session, $self->get('gatewayId'))}; + my $gateway = eval { WebGUI::Shop::PayDriver->new($session, $self->gatewayId)}; if (my $e = WebGUI::Error->caught) { $self->error($e->error); return 0; } ##Check for any other logged errors - return 0 if $error{ id $self }; + return 0 if $self->error; # All checks passed so return true return 1; @@ -688,46 +776,17 @@ sub requiresShipping { #------------------------------------------------------------------- -=head2 update ( properties ) +=head2 write ( ) -Sets properties in the cart. - -=head3 properties - -A hash reference that contains one of the following: - -=head4 shippingAddressId - -The unique id for a shipping address attached to this cart. - -=head4 billingAddressId - -The unique id for a billing address attached to this cart. - -=head4 shipperId - -The unique id of the configured shipping driver that will be used to ship these goods. - -=head4 posUserId - -The ID of a user being checked out, if they're being checked out by a cashier. - -=head4 creationDate - -The date the cart was created. +Serialize the current set of cart properties to the database. =cut -sub update { - my ($self, $newProperties) = @_; - unless (defined $newProperties && ref $newProperties eq 'HASH') { - WebGUI::Error::InvalidParam->throw(error=>"Need a properties hash ref."); - } - my $id = id $self; - foreach my $field (qw(billingAddressId shippingAddressId posUserId gatewayId shipperId creationDate)) { - $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; - } - $self->session->db->setRow("cart","cartId",$properties{$id}); +sub write { + my ($self) = @_; + my $properties = $self->get(); + delete $properties->{error}; + $self->session->db->setRow("cart", "cartId", $properties); } #------------------------------------------------------------------- @@ -747,10 +806,10 @@ sub updateFromForm { eval { $item->setQuantity($form->get("quantity-".$item->getId)) }; if (WebGUI::Error->caught("WebGUI::Error::Shop::MaxOfItemInCartReached")) { my $i18n = WebGUI::International->new($self->session, "Shop"); - $error{id $self} = sprintf($i18n->get("too many of this item"), $item->get("configuredTitle")); + $self->error(sprintf($i18n->get("too many of this item"), $item->get("configuredTitle"))); } elsif (my $e = WebGUI::Error->caught) { - $error{id $self} = "An unknown error has occured: ".$e->message; + $self->error("An unknown error has occured: ".$e->message); } } if (my $itemAddressId = $form->get("itemAddress_".$item->getId)) { @@ -759,7 +818,7 @@ sub updateFromForm { } if ($self->hasMixedItems) { my $i18n = WebGUI::International->new($self->session, "Shop"); - $error{id $self} = $i18n->get('mixed items warning'); + $self->error($i18n->get('mixed items warning')); } my @cartItemIds = $form->process('remove_item', 'checkList'); @@ -782,7 +841,7 @@ sub updateFromForm { my $newAddress = $book->addAddress(\%billingData); $cartProperties->{billingAddressId} = $newAddress->get('addressId'); } - elsif ($billingAddressId eq 'update_address' && $self->get('billingAddressId') && ! @missingBillingFields) { + elsif ($billingAddressId eq 'update_address' && $self->billingAddressId && ! @missingBillingFields) { ##User updated the current address my $address = $self->getBillingAddress(); $address->update(\%billingData); @@ -802,7 +861,7 @@ sub updateFromForm { if ($self->requiresShipping) { if ($form->process('sameShippingAsBilling', 'yesNo')) { - $cartProperties->{shippingAddressId} = $self->get('billingAddressId'); + $cartProperties->{shippingAddressId} = $self->billingAddressId; } else { my %shippingData = $book->processAddressForm('shipping_'); @@ -817,7 +876,7 @@ sub updateFromForm { my $newAddress = $book->addAddress(\%shippingData); $cartProperties->{shippingAddressId} = $newAddress->get('addressId'); } - elsif ($shippingAddressId eq 'update_address' && $self->get('shippingAddressId') && ! @missingShippingFields) { + elsif ($shippingAddressId eq 'update_address' && $self->shippingAddressId && ! @missingShippingFields) { ##User changed the address selector my $address = $self->getBillingAddress(); $address->update(\%shippingData); @@ -918,8 +977,8 @@ sub www_checkout { my $self = shift; my $session = $self->session; ##Setting a shipping address greatly simplifies the Transaction - if (! $self->requiresShipping && ! $self->get('shippingAddressId')) { - $self->update({shippingAddressId => $self->get('billingAddressId')}); + if (! $self->requiresShipping && ! $self->shippingAddressId) { + $self->update({shippingAddressId => $self->billingAddressId}); } if ($self->readyForCheckout()) { my $total = $self->calculateTotal; @@ -1049,7 +1108,7 @@ sub www_view { # get the shipping address my $address = eval { $self->getShippingAddress }; - if (my $e = WebGUI::Error->caught("WebGUI::Error::ObjectNotFound") && $self->get('shippingAddressId')) { + if (my $e = WebGUI::Error->caught("WebGUI::Error::ObjectNotFound") && $self->shippingAddressId) { # choose another address cuz we've got a problem $self->update({shippingAddressId=>''}); } @@ -1125,7 +1184,7 @@ sub www_view { $formOptions{$optionId} .= ' ('.$self->formatCurrency($options->{$optionId}{price}).')'; } } - my $shipperId = $self->get('shipperId'); + my $shipperId = $self->shipperId; if (!$shipperId && $numberOfOptions == 1) { my ($option) = keys %{ $options }; $self->update({shipperId => $option}); @@ -1172,7 +1231,7 @@ sub www_view { tie my %billingAddressOptions, 'Tie::IxHash'; $billingAddressOptions{'new_address'} = $i18n->get('Add new address'); - my $billingAddressId = $self->get('billingAddressId'); + my $billingAddressId = $self->billingAddressId; if ($billingAddressId) { $billingAddressOptions{'update_address'} = sprintf $i18n->get('Update %s'), $self->getBillingAddress->get('label'); } @@ -1188,7 +1247,7 @@ sub www_view { tie my %shippingAddressOptions, 'Tie::IxHash'; $shippingAddressOptions{'new_address'} = $i18n->get('Add new address'); - my $shippingAddressId = $self->get('shippingAddressId'); + my $shippingAddressId = $self->shippingAddressId; if ($shippingAddressId) { $shippingAddressOptions{'update_address'} = sprintf $i18n->get('Update %s'), $self->getShippingAddress->get('label'); } @@ -1200,15 +1259,15 @@ sub www_view { value => $shippingAddressId ? $shippingAddressId : 'new_address', }); - my $shippingAddressData = $self->get('shippingAddressId') ? $self->getShippingAddress->get() : {}; - my $billingAddressData = $self->get('billingAddressId') ? $self->getBillingAddress->get() : {}; + my $shippingAddressData = $self->shippingAddressId ? $self->getShippingAddress->get() : {}; + my $billingAddressData = $self->billingAddressId ? $self->getBillingAddress->get() : {}; my $addressBook = $self->getAddressBook; $addressBook->appendAddressFormVars(\%var, 'shipping_', $shippingAddressData); $addressBook->appendAddressFormVars(\%var, 'billing_', $billingAddressData); $var{sameShippingAsBilling} = WebGUI::Form::yesNo($session, { name => 'sameShippingAsBilling', - value => $self->get('billingAddressId') && $self->get('billingAddressId') eq $self->get('shippingAddressId'), + value => $self->billingAddressId && $self->billingAddressId eq $self->shippingAddressId, }); } @@ -1223,7 +1282,7 @@ sub www_view { $var{paymentOptions} = WebGUI::Form::selectBox($session, { name => 'gatewayId', options => \%paymentOptions, - value => $self->get('gatewayId') || $form->get('gatewayId') || '', + value => $self->gatewayId || $form->get('gatewayId') || '', }); # POS variables diff --git a/lib/WebGUI/Shop/Credit.pm b/lib/WebGUI/Shop/Credit.pm index f7b02a363..9cd4efc18 100644 --- a/lib/WebGUI/Shop/Credit.pm +++ b/lib/WebGUI/Shop/Credit.pm @@ -1,7 +1,15 @@ package WebGUI::Shop::Credit; use strict; -use Class::InsideOut qw{ :std }; +use Moose; +use Scalar::Util qw/blessed/; + +has [ qw/session userId/ ] => ( + is => 'ro', + required => 1, +); + + use WebGUI::Shop::Admin; use WebGUI::Exception::Shop; use WebGUI::International; @@ -28,8 +36,18 @@ These subroutines are available from this package: =cut -readonly session => my %session; -readonly userId => my %userId; +around BUILDARGS => sub { + my $orig = shift; + my $className = shift; + + ##Original arguments start here. + my $protoSession = $_[0]; + if (blessed $protoSession && $protoSession->isa('WebGUI::Session')) { + return $className->$orig(session => $protoSession, userId => $_[1], ); + } + return $className->$orig(@_); +}; + #------------------------------------------------------------------- @@ -137,21 +155,6 @@ A unique id for a user that you want to adjust the credit of. Defaults to the cu =cut -sub new { - my ($class, $session, $userId) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - unless (defined $userId) { - $userId = $session->user->userId; - } - my $self = register $class; - my $id = id $self; - $session{ $id } = $session; - $userId{ $id } = $userId; - return $self; -} - #------------------------------------------------------------------- =head2 session () diff --git a/lib/WebGUI/Shop/Pay.pm b/lib/WebGUI/Shop/Pay.pm index e6425bebc..4ebb03cb6 100644 --- a/lib/WebGUI/Shop/Pay.pm +++ b/lib/WebGUI/Shop/Pay.pm @@ -16,7 +16,6 @@ package WebGUI::Shop::Pay; use strict; -#use Class::InsideOut qw{ :std }; use Moose; use WebGUI::Exception; use WebGUI::International; diff --git a/lib/WebGUI/Shop/Vendor.pm b/lib/WebGUI/Shop/Vendor.pm index bf9a6d3e6..4584aa601 100644 --- a/lib/WebGUI/Shop/Vendor.pm +++ b/lib/WebGUI/Shop/Vendor.pm @@ -1,7 +1,93 @@ package WebGUI::Shop::Vendor; use strict; -use Class::InsideOut qw{ :std }; +use Scalar::Util qw/blessed/; +use Moose; +use WebGUI::Definition; + +property 'name' => ( + is => 'rw', + noFormPost => 1, + default => '', +); + +property 'userId' => ( + is => 'rw', + noFormPost => 1, + default => '', +); + +property 'url' => ( + is => 'rw', + noFormPost => 1, + default => '', +); + +property 'paymentInformation' => ( + is => 'rw', + noFormPost => 1, + default => '', +); + +property 'preferredPaymentType' => ( + is => 'rw', + noFormPost => 1, + default => '', +); + +has 'dateCreated' => ( + is => 'ro', +); +has [ qw/session vendorId/ ] => ( + is => 'ro', + required => 1, +); + +around BUILDARGS => sub { + my $orig = shift; + my $class = shift; + if (ref $_[0] eq 'HASH') { + ##Need same db code as below here. + ##Session check goes here? + ##Build a new one + my $properties = $_[0]; + my $session = $properties->{session}; + if (! (blessed $session && $session->isa('WebGUI::Session')) ) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + my ($vendorId, $dateCreated) = $class->_init($session); + $properties->{vendorId} = $vendorId; + $properties->{dateCreated} = $dateCreated; + return $class->$orig($properties); + } + my $session = shift; + if (! (blessed $session && $session->isa('WebGUI::Session'))) { + WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); + } + my $argument2 = shift; + if (!defined $argument2) { + WebGUI::Error::InvalidParam->throw( param=>$argument2, error=>"Need a vendorId."); + } + if (ref $argument2 eq 'HASH') { + ##Build a new one + my ($vendorId, $dateCreated) = $class->_init($session); + my $properties = $argument2; + $properties->{session} = $session; + $properties->{vendorId} = $vendorId; + $properties->{dateCreated} = $dateCreated; + return $class->$orig($properties); + } + else { + ##Look up one in the db + my $vendor = $session->db->quickHashRef("select * from vendor where vendorId=?", [$argument2]); + if ($vendor->{vendorId} eq "") { + WebGUI::Error::ObjectNotFound->throw(error=>"Vendor not found.", id=>$argument2); + } + $vendor->{session} = $session; + return $class->$orig($vendor); + } +}; + use WebGUI::Shop::Admin; use WebGUI::Exception::Shop; use WebGUI::International; @@ -21,7 +107,7 @@ Keeps track of vendors that sell merchandise in the store. use WebGUI::Shop::Vendor; - my $vendor = WebGUI::Shop::Vendor->new($session, $vendord); + my $vendor = WebGUI::Shop::Vendor->new($session, $vendorId); =head1 METHODS @@ -29,35 +115,35 @@ These subroutines are available from this package: =cut -readonly session => my %session; -readonly properties => my %properties; +#------------------------------------------------------------------- + +=head2 _init ( session ) + +Builds a stub of object information in the database, and returns the newly created +vendorId, and the dateCreated fields so the object can be initialized correctly. + +=cut + +sub _init { + my $class = shift; + my $session = shift; + my $vendorId = $session->id->generate; + my $dateCreated = WebGUI::DateTime->new($session)->toDatabase; + $session->db->write("insert into vendor (vendorId, dateCreated) values (?, ?)",[$vendorId, $dateCreated]); + return ($vendorId, $dateCreated); +} #------------------------------------------------------------------- =head2 create ( session, properties ) -Constructor. Creates a new vendor. - -=head3 session - -A reference to the current session. - -=head3 properties - -A hash reference containing the properties for this vendor. See update() for details. +Constructor. Creates a new vendor. Really an alias for WebGUI::Shop::Vendor->new($session, $properties) =cut sub create { my ($class, $session, $properties) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - my $id = $session->id->generate; - $session->db->write("insert into vendor (vendorId, dateCreated) values (?, now())",[$id]); - my $self = $class->new($session, $id); - $self->update($properties); - return $self; + return $class->new($session, $properties); } #------------------------------------------------------------------- @@ -70,51 +156,20 @@ Deletes this vendor. sub delete { my ($self) = @_; - $self->session->db->deleteRow("vendor","vendorId",$self->getId); -} - -#------------------------------------------------------------------- - -=head2 get ( [ property ] ) - -Returns a duplicated hash reference of this objectÕs data. See update() for details. - -=head3 property - -Any field returns the value of a field rather than the hash reference. - -=head3 Additional properties - -=head4 dateCreated - -The date this vendor was created in the system. - -=head4 vendorId - -The id of this vendor from the database. Use getId() instead. - -=cut - -sub get { - my ($self, $name) = @_; - if (defined $name) { - return $properties{id $self}{$name}; - } - my %copyOfHashRef = %{$properties{id $self}}; - return \%copyOfHashRef; + $self->session->db->deleteRow("vendor", "vendorId", $self->vendorId); } #------------------------------------------------------------------- =head2 getId () -Returns the unique id of this item. +Returns the unique id of this item. You should use $self->vendorId instead. =cut sub getId { my $self = shift; - return $self->get("vendorId"); + return $self->vendorId; } #------------------------------------------------------------------- @@ -147,7 +202,7 @@ sub getPayoutTotals { my %totals = $self->session->db->buildHash( 'select vendorPayoutStatus, sum(vendorPayoutAmount) as amount from transactionItem as t1, transaction as t2 ' .'where t1.transactionId = t2.transactionId and t2.isSuccessful <> 0 and vendorId=? group by vendorPayoutStatus ', - [ $self->getId ] + [ $self->vendorId ] ); # Format the payout categories and calc the total those. @@ -204,10 +259,10 @@ sub isVendorInfoComplete { my $self = shift; my $complete = - defined $self->get( 'name' ) - && defined $self->get( 'userId' ) - && defined $self->get( 'preferredPaymentType' ) - && defined $self->get( 'paymentInformation' ); + defined $self->name + && defined $self->userId + && defined $self->preferredPaymentType + && defined $self->paymentInformation; return $complete } @@ -216,7 +271,12 @@ sub isVendorInfoComplete { =head2 new ( session, vendorId ) -Constructor. Returns a WebGUI::Shop::Vendor object. +=head2 new ( session, properties ) + +=head2 new ( hashref ) + +Constructor. Returns a WebGUI::Shop::Vendor object, either by fetching information from the database, +or using passed in properties. =head3 session @@ -229,26 +289,44 @@ A unique id for a vendor that already exists in the database. If the vendorId i in, then a WebGUI::Error::InvalidParam Exception will be thrown. If the requested Id cannot be found in the database, then a WebGUI::Error::ObjectNotFound exception will be thrown. +=head3 properties + +A hashref of properties to assign to the object when it is created. + +=head3 hashref + +A classic Moose-style hashref of options. It must include a WebGUI::Session object. + +=head3 Attributes + +=head4 name + +The name of the vendor. + +=head4 userId + +The unique GUID of the vendor. + +=head4 url + +The vendor's url. + +=head4 vendorId + +A unique identifier for this vendor. This option may be included in the properties for the new object, but it will +be ignored. + +=head4 dateCreated + +The date this vendor was created, in database format. This option may be included in the properties for the new object, +but it will be ignored. + +=head4 paymentInformation + +=head4 preferredPaymentType + =cut -sub new { - my ($class, $session, $vendorId) = @_; - unless (defined $session && $session->isa("WebGUI::Session")) { - WebGUI::Error::InvalidObject->throw(expected=>"WebGUI::Session", got=>(ref $session), error=>"Need a session."); - } - unless (defined $vendorId) { - WebGUI::Error::InvalidParam->throw( param=>$vendorId, error=>"Need a vendorId."); - } - my $vendor = $session->db->quickHashRef("select * from vendor where vendorId=?",[$vendorId]); - if ($vendor->{vendorId} eq "") { - WebGUI::Error::ObjectNotFound->throw(error=>"Vendor not found.", id=>$vendorId); - } - my $self = register $class; - my $id = id $self; - $session{ $id } = $session; - $properties{ $id } = $vendor; - return $self; -} #------------------------------------------------------------------- @@ -262,7 +340,7 @@ A reference to the current session. =head3 userId -A unique userId. Will pull from the session if not specified. +A unique userId. Will pull from the session if not specified. =cut @@ -289,44 +367,16 @@ Returns a reference to the current session. #------------------------------------------------------------------- -=head2 update ( properties ) +=head2 write ( ) -Sets properties of the vendor - -=head3 properties - -A hash reference that contains one of the following: - -=head4 name - -The name of the vendor. - -=head4 userId - -The unique GUID of the vendor. - -=head4 url - -The vendor's url. - -=head4 paymentInformation - -???? - -=head4 preferredPaymentType - -???? +Serializes the object's properties to the database =cut -sub update { - my ($self, $newProperties) = @_; - my $id = id $self; - my @fields = (qw(name userId url paymentInformation preferredPaymentType)); - foreach my $field (@fields) { - $properties{$id}{$field} = (exists $newProperties->{$field}) ? $newProperties->{$field} : $properties{$id}{$field}; - } - $self->session->db->setRow("vendor","vendorId",$properties{$id}); +sub write { + my ($self) = @_; + my $properties = $self->get(); + $self->session->db->setRow("vendor", "vendorId", $properties); } #------------------------------------------------------------------- @@ -447,7 +497,7 @@ sub www_manage { .WebGUI::Form::formHeader($session, {extras=>'style="float: left;"' }) .WebGUI::Form::hidden($session, { name => "shop", value => "vendor" }) .WebGUI::Form::hidden($session, { name => "method", value => "delete" }) - .WebGUI::Form::hidden($session, { name => "vendorId", value => $vendor->getId }) + .WebGUI::Form::hidden($session, { name => "vendorId", value => $vendor->vendorId }) .WebGUI::Form::submit($session, { value => $i18n->get("delete"), extras => 'class="backwardButton"' }) .WebGUI::Form::formFooter($session) @@ -455,12 +505,12 @@ sub www_manage { .WebGUI::Form::formHeader($session, {extras=>'style="float: left;"' }) .WebGUI::Form::hidden($session, { name => "shop", value => "vendor" }) .WebGUI::Form::hidden($session, { name => "method", value => "edit" }) - .WebGUI::Form::hidden($session, { name => "vendorId", value => $vendor->getId }) + .WebGUI::Form::hidden($session, { name => "vendorId", value => $vendor->vendorId }) .WebGUI::Form::submit($session, { value => $i18n->get("edit"), extras => 'class="normalButton"' }) .WebGUI::Form::formFooter($session) # Append name - .' '. $vendor->get("name") + .' '. $vendor->name .''; } diff --git a/lib/WebGUI/Storage.pm b/lib/WebGUI/Storage.pm index 477ff3342..297dc15c4 100644 --- a/lib/WebGUI/Storage.pm +++ b/lib/WebGUI/Storage.pm @@ -259,7 +259,7 @@ sub addFileFromCaptcha { $self->session->errorHandler->warn("Error adding noise: $error"); } # AddNoise generates a different average color depending on library. This is ugly, but the best I can see for now - $error = $image->Annotate(font=>WebGUI::Paths->var.'/default.ttf', pointsize=>40, skewY=>0, skewX=>0, gravity=>'center', fill=>'#ffffff', antialias=>'true', text=>$challenge); + $error = $image->Annotate(font=>WebGUI::Paths->share.'/default.ttf', pointsize=>40, skewY=>0, skewX=>0, gravity=>'center', fill=>'#ffffff', antialias=>'true', text=>$challenge); if($error) { $self->session->errorHandler->warn("Error Annotating image: $error"); } @@ -1284,7 +1284,7 @@ sub getUrl { and -e $self->getPath . '/.cdn' ) { my $sep = '/'; # separator, if not already present trailing - if ($cdnCfg->{'sslAlt'} && $self->session->env->sslRequest) { + if ($cdnCfg->{'sslAlt'} && $self->session->request->secure) { if ( $cdnCfg->{'sslUrl'} ) { substr( $cdnCfg->{'sslUrl'}, -1 ) eq '/' and $sep = ''; $url = $cdnCfg->{'sslUrl'} . $sep . $self->getDirectoryId; diff --git a/lib/WebGUI/TabForm.pm b/lib/WebGUI/TabForm.pm index 73b84915d..3e09ad0af 100644 --- a/lib/WebGUI/TabForm.pm +++ b/lib/WebGUI/TabForm.pm @@ -206,7 +206,7 @@ sub new { } my $i18n = WebGUI::International->new($session); my $cancelJS = 'history.go(-1);'; - if (my $cancelURL = $session->env->get('HTTP_REFERER')) { + if (my $cancelURL = $session->request->referer) { $cancelJS = sprintf q{window.location.href='%s';}, $cancelURL; } my $cancel = WebGUI::Form::button($session,{ diff --git a/lib/WebGUI/Upgrade.pm b/lib/WebGUI/Upgrade.pm new file mode 100644 index 000000000..501ef359f --- /dev/null +++ b/lib/WebGUI/Upgrade.pm @@ -0,0 +1,559 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade - Perform upgrades on WebGUI sites + +=head1 SYNOPSIS + + use WebGUI::Upgrade; + my $upgrade = WebGUI::Upgrade->new; + $upgrade->upgradeSites; + +=head1 DESCRIPTION + +This package calculates upgrade paths and performs upgrades for WebGUI sites. + +=head1 Differences from WebGUI 7's upgrade system + +In WebGUI 7 and prior, a single upgrade for each version was created +as F. This script would be +run with a command line parameter of --configFile=F. +This script contained all of the code to set up a session and do +any other work that was needed. + +To cut down on the amount of boilerplate code and allow for more +flexible upgrades, this has been changed. Multiple upgrade files +are placed in the directory F, and are +processed in alphabetical order, with the file extension determining +how to process the file. + +=head1 Supported File Types + +The file extension determines the class that will be used to process them. The class is determined by appending it to C. + +=head2 Perl Scripts - F<.pl> + +Perl scripts are processed by L, which +runs them after setting the environment variables C +and C. Usually, these scripts should use +the module L to load a number of subs to +greatly simplify how they are written. + +=head2 SQL Scripts - F<.sql> + +SQL scripts are processed by L, which +runs them with the F command line client. + +=head2 WebGUI Packages - F<.wgpkg> + +WebGUI packages are processed by L, +which imports them into the WebGUI site. + +=head2 Text and POD Documents - F<.txt>/F<.pod> + +Text and POD documents are processed by L +and L respectively. The files will be +shown to the user running the upgrade, and will wait for user +confirmation before continuing. This will only be done once per +upgrade process. + +=cut + +package WebGUI::Upgrade; +use 5.010; +use Moose; +use WebGUI::Paths; +use WebGUI::Pluggable; +use WebGUI::Config; +use WebGUI::SQL; +use Try::Tiny; +use File::Spec; +use File::Path qw(make_path); +use POSIX qw(strftime); +use Cwd (); +use namespace::autoclean; + +=head1 ATTRIBUTES + +These attributes can be set when creating a WebGUI::Upgrade instance: + +=cut + +=head2 quiet + +Whether information about the upgrade progress will be output. Defaults to false. + +=cut + +has quiet => ( + is => 'rw', + default => undef, +); + +=head2 mysql + +The path to the mysql command line client. Defaults to 'mysql'. + +=cut + +has mysql => ( + is => 'rw', + default => 'mysql', +); + +=head2 mysqldump + +The path to the mysqldump command line client. Defaults to 'mysqldump'. + +=cut + +has mysqldump => ( + is => 'rw', + default => 'mysqldump', +); + +=head2 clearCache + +If true, the cache will be cleared for each site before running +any upgrade scripts. Defaults to true. + +=cut + +has clearCache => ( + is => 'rw', + default => 1, +); + +=head2 backupPath + +The path where backups will be stored. Defaults to 'backups' inside the temp directory. + +=cut + +has backupPath => ( + is => 'rw', + default => File::Spec->catdir(File::Spec->tmpdir, 'backups'), +); + +=head2 createBackups + +If true, backups will be created before each version upgrade for +each site. The backup files will be named +C<{config file}_{version}_{timestamp}.sql>. + +=cut + +has createBackups => ( + is => 'rw', + default => 1, +); + +=head2 useMaintenanceMode + +If set, sites will be put into maintenance mode before any upgrades +are run on them. Defaults to true. + +=cut + +has useMaintenanceMode => ( + is => 'rw', + default => 1, +); + +# this is used to store if a given upgrade file has been run yet. +# Some upgrade files should only be processed once per upgrade. +has _files_run => ( + is => 'rw', + default => sub { { } }, +); + +=head1 METHODS + +=head2 upgradeSites + +Upgrades all available sites to match the current WebGUI codebase. + +=cut + +sub upgradeSites { + my $self = shift; + require Carp; + my @configs = WebGUI::Paths->siteConfigs; + my $i = 0; + for my $configFile (@configs) { + $i++; + my $bareFilename = $configFile; + $bareFilename =~ s{.*/}{}; + print "Upgrading $bareFilename (site $i/@{[ scalar @configs ]}):\n"; + try { + $self->upgradeSite($configFile); + } + catch { + print "Error upgrading $bareFilename: $_\n"; + }; + } + return 1; +} + +=head2 getCodeVersion + +Returns the current version of the codebase. + +=cut + +sub getCodeVersion { + require WebGUI; + return WebGUI->VERSION; +} + +=head2 upgradeSite ( $config ) + +Upgrades the given config file to the current codebase. + +=head3 $config + +The path to a WebGUI config file or a WebGUI::Config instance + +=cut + +sub upgradeSite { + my $self = shift; + my ($configFile) = @_; + my $fromVersion = $self->getCurrentVersion($configFile); + my $toVersion = $self->getCodeVersion; + my @steps = $self->calcUpgradePath($fromVersion, $toVersion); + if ( $self->useMaintenanceMode ) { + my $dbh = $self->dbhForConfig( $configFile ); + $dbh->do('REPLACE INTO settings (name, value) VALUES (?, ?)', {}, 'upgradeState', 'started'); + } + if (! @steps) { + print "No upgrades needed.\n"; + } + my $i = 0; + for my $step ( @steps ) { + $i++; + print "Running upgrades for $step (step $i/@{[ scalar @steps ]}):\n"; + $self->createBackup($configFile); + $self->runUpgradeStep($configFile, $step); + } +} + +=head1 calcUpgradePath ( $fromVerson , $toVersion ) + +Class method to calculate the upgrade path between two versions. +Tries to find the best path between the versions by looking in +F for directories that make a path between the versions. +Returns either a list of directories to use, or throws an error if +no path can be found. + +=cut + +sub calcUpgradePath { + my $class = shift; + my ($fromVersionStr, $toVersionStr) = @_; + my $fromVersion = $class->_numericVersion($fromVersionStr); + my $toVersion = $class->_numericVersion($toVersionStr); + + my %upgrades; + opendir my $dh, WebGUI::Paths->upgrades + or die "Upgrades directory doesn't exist.\n"; + while ( my $dir = readdir $dh ) { + next + if $dir =~ /^\./; + next + unless -d File::Spec->catdir(WebGUI::Paths->upgrades, $dir); + if ($dir =~ /^((\d+\.\d+\.\d+)-(\d+\.\d+\.\d+))$/) { + $upgrades{ $class->_numericVersion($2) }{ $class->_numericVersion($3) } = $1; + } + } + closedir $dh; + + my @steps; + while ( 1 ) { + my $atVersion = @steps ? $steps[-1][0] : $fromVersion; + last + if $atVersion eq $toVersion; + + # find the available steps for the version we are at + my $stepsAvail = $upgrades{ $atVersion }; + if ( $stepsAvail && %{ $stepsAvail } ) { + # take the lowest destination version, and remove it so it isn't considered again + my ($nextStep) = sort { $a <=> $b } keys %{ $stepsAvail }; + my $dir = delete $stepsAvail->{$nextStep}; + # add a step for that + push @steps, [$nextStep, $dir]; + } + # if we don't have any steps available, the last step we tried won't work so remove it + elsif ( @steps ) { + pop @steps; + } + # if there is no way forward and we can't backtrack, bail out + else { + die "Can't find upgrade path from $fromVersionStr to $toVersionStr.\n"; + } + } + return map { $_->[1] } @steps; +} + +=head2 runUpgradeStep ( $config , $step ) + +Runs the given upgrade step against the WebGUI config file. + +=cut + +sub runUpgradeStep { + my $self = shift; + my ($configFile, $step) = @_; + + my ($version) = $step =~ /-(\d+\.\d+\.\d+)$/; + my $upgradesDir = File::Spec->catdir(WebGUI::Paths->upgrades, $step); + opendir my($dh), $upgradesDir or die "Can't get upgrades for $step: $!\n"; + while ( my $upgradeFile = readdir $dh ) { + next + if $upgradeFile =~ /^\./; + my $filename = File::Spec->catfile($upgradesDir, $upgradeFile); + next + unless -f $filename; + $self->runUpgradeFile($configFile, $version, $filename); + } + closedir $dh; + $self->markVersionUpgrade($configFile, $version); +} + +=head2 runUpgradeFile ( $config , $version , $filename ) + +Runs the given upgrade file against a WebGUI config file. + +=head3 $version + +The destination version for the step this upgrade file is part of. + +=cut + +sub runUpgradeFile { + my $self = shift; + my ($configFile, $version, $filename) = @_; + my $has_run = $self->_files_run->{ Cwd::realpath($filename) } ++; + + return try { + my $upgrade_class = $self->classForFile($filename); + my $upgrade_file = $upgrade_class->new( + version => $version, + file => $filename, + upgrade => $self, + ); + if ($has_run && $upgrade_file->once) { + return; + } + $upgrade_file->run($configFile); + } + catch { + when (/^No upgrade package/) { + warn $_; + return; + } + default { + die $_; + } + }; +} + +=head2 classForFile ( $file ) + +Class method to find the class to use to run the upgrade file. +Given a filename, it will either load and return a class name to +use, or throw an error if no appropriate class is available. + +=cut + +sub classForFile { + my $class = shift; + my $file = shift; + my ($extension) = $file =~ /\.([^.]+)$/; + if ($extension) { + my $package = 'WebGUI::Upgrade::File::' . $extension; + WebGUI::Pluggable::load($package); + return $package + if $package->DOES('WebGUI::Upgrade::File'); + } + no warnings 'uninitialized'; + die "No upgrade package for extension: $extension"; +} + +=head2 markVersionUpgrade ( $config , $version ) + +Marks that a given version upgrade has been completed for a config file. + +=cut + +sub markVersionUpgrade { + my $self = shift; + my $configFile = shift; + my $version = shift; + + my $dbh = $self->dbhForConfig($configFile); + + $dbh->do( + 'INSERT INTO webguiVersion (webguiVersion, versionType, dateApplied) VALUES (?,?,?)', {}, + $version, 'upgrade', time, + ); + if ( $self->useMaintenanceMode ) { + $dbh->do('REPLACE INTO settings (name, value) VALUES (?, ?)', {}, 'upgradeState', $version); + } +} + +=head2 createBackup ( $config ) + +Creates a database backup file for a given config file. + +=cut + +sub createBackup { + my $self = shift; + my $config = shift; + if (! ref $config) { + $config = WebGUI::Config->new($config); + } + + make_path($self->backupPath); + my $configFile = ( File::Spec->splitpath($config->pathToFile) )[2]; + my $resultFile = File::Spec->catfile( + $self->backupPath, + $configFile . '_' . $self->getCurrentVersion($config) . '_' . time . '.sql', + ); + print "Backing up to $resultFile\n"; + my @command_line = ( + $self->mysqldump, + $self->mysqlCommandLine($config), + '--add-drop-table', + '--result-file=' . $resultFile, + ); + system { $command_line[0] } @command_line + and die "$!"; +} + +=head2 reportHistory ( $config ) + +Class method to return the upgrade history for a given config file. + +=cut + +sub reportHistory { + my $class = shift; + my $config = shift; + my $dbh = $class->dbhForConfig($config); + my $sth = $dbh->prepare('SELECT webguiVersion, dateApplied, versionType FROM webguiVersion ORDER BY dateApplied ASC, webguiVersion ASC'); + $sth->execute; + while ( my @data = $sth->fetchrow_array ) { + printf "\t%-8s %-15s %-15s\n", $data[0], strftime('%D %T', localtime $data[1]), $data[2]; + } + $sth->finish; +} + +=head2 getCurrentVersion ( $config ) + +Class method that returns the current version of a WebGUI database. + +=cut + +sub getCurrentVersion { + my $class = shift; + my $configFile = shift; + my $dbh = $class->dbhForConfig($configFile); + + my $sth = $dbh->prepare('SELECT webguiVersion FROM webguiVersion'); + $sth->execute; + my ($version) = map { $_->[0] } + sort { $b->[1] <=> $a->[1] } + map { [ $_->[0], $class->_numericVersion($_->[0]) ] } + @{ $sth->fetchall_arrayref( [0] ) }; + $sth->finish; + return $version; +} + +=head2 dbhForConfig ( $config ) + +Class method that creates a new WebGUI::SQL object given a config file. + +=cut + +sub dbhForConfig { + my $class = shift; + my $config = shift; + if (! ref $config) { + $config = WebGUI::Config->new($config); + } + return WebGUI::SQL->connect($config); +} + +=head2 mysqlCommandLine ( $config ) + +Class method to return a list of options to pass to the mysql or +mysqldump command line client to connect to the given config file's +database. + +=cut + +sub mysqlCommandLine { + my $class = shift; + my $config = shift; + if (! ref $config) { + $config = WebGUI::Config->new($config); + } + + my $dsn = $config->get('dsn'); + my $username = $config->get('dbuser'); + my $password = $config->get('dbpass'); + my $database = ( split /[:;]/msx, $dsn )[2]; + my $hostname = 'localhost'; + my $port = '3306'; + while ( $dsn =~ /([^=;:]+)=([^;:]+)/msxg ) { + if ( $1 eq 'host' || $1 eq 'hostname' ) { + $hostname = $2; + } + elsif ( $1 eq 'db' || $1 eq 'database' || $1 eq 'dbname' ) { + $database = $2; + } + elsif ( $1 eq 'port' ) { + $port = $2; + } + } + + my @command_line = ( + '-h' . $hostname, + '-P' . $port, + $database, + '-u' . $username, + ( $password ? '-p' . $password : () ), + '--default-character-set=utf8', + ); + return @command_line; +} + +# converts a period separated version number into a form that can +# be compared numerically. +sub _numericVersion { + my $class = shift; + my $version = shift; + my @parts = split /\./, $version; + my $decVersion = 0; + for my $i (0..$#parts) { + $decVersion += $parts[$i] / (1000**$i); + } + return $decVersion; +} + +__PACKAGE__->meta->make_immutable; +1; + diff --git a/lib/WebGUI/Upgrade/File.pm b/lib/WebGUI/Upgrade/File.pm new file mode 100644 index 000000000..2b9b8c12a --- /dev/null +++ b/lib/WebGUI/Upgrade/File.pm @@ -0,0 +1,101 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File - Role for upgrade file classes + +=head1 SYNOPSIS + + package WebGUI::Upgrade::File::ext; + with 'WebGUI::Upgrade::File'; + + sub run { + my $self = shift; + print "Running " . $self->file . "\n"; + } + +=head1 DESCRIPTION + +To be consumed by classes for running upgrade scripts. + +=cut + +package WebGUI::Upgrade::File; +use 5.010; +use Moose::Role; + +=head1 REQUIRED METHODS + +Classes consuming this role must implement the following methods: + +=head2 run + +This method much be implemented and should run the actual upgrade file on the config file. + +=cut + +requires 'run'; + +=head1 ATTRIBUTES + +This role includes the following attributes. + +=cut + +=head2 file + +The upgrade file to run. + +=cut + +has file => ( + is => 'ro', + required => 1, +); + +=head2 version + +The version the upgrade is for. + +=cut + +has version => ( + is => 'ro', + required => 1, +); + +=head2 upgrade + +The WebGUI::Upgrade object to use for this upgrade. + +=cut + +has upgrade => ( + is => 'ro', + required => 1, + handles => [ 'quiet' ], +); + +=head1 METHODS + +=head2 once + +A method to be overridden that controls if the upgrade file should +be run more than once per server. + +=cut + +sub once { 0 } + +1; + diff --git a/lib/WebGUI/Upgrade/File/pl.pm b/lib/WebGUI/Upgrade/File/pl.pm new file mode 100644 index 000000000..f50f6e64d --- /dev/null +++ b/lib/WebGUI/Upgrade/File/pl.pm @@ -0,0 +1,79 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File::pl - Upgrade class for Perl scripts + +=cut + +package WebGUI::Upgrade::File::pl; +use Moose; +use Class::MOP::Class; +use File::Spec::Functions qw(devnull); +use Scope::Guard; +use namespace::autoclean -also => qr/^_/; + +with 'WebGUI::Upgrade::File'; + +sub run { + my $self = shift; + my $configFile = shift; + + local $ENV{WEBGUI_CONFIG} = $configFile; + local $ENV{WEBGUI_UPGRADE_VERSION} = $self->version; + my $io_guard; + if ($self->quiet) { + open my $stdout_old, '>&=', \*STDOUT; + open \*STDOUT, '>', devnull; + $io_guard = Scope::Guard->new(sub { + close STDOUT; + open STDOUT, '>&=', $stdout_old; + }); + } + return _runScript($self->file); +} + +sub _runScript { + my $file = shift; + my @res; + my $err; + { + local $@; + local *_; + # use an anonymous package for this code. the namespace will + # automatically be deleted when this goes out of scope. + my $anon_class = Class::MOP::Class->create_anon_class; + my $wanted = wantarray; + eval sprintf(<<'END_CODE', $anon_class->name); + package %s; + # maintain context + if ($wanted) { + @res = do $file; + } + elsif (defined $wanted) { + $res[0] = do $file; + } + else { + do $file; + } + # save error as soon as possible, before local removes it + $err = $@; +END_CODE + } + die $err + if $err; + return (wantarray ? @res : $res[0]); +} + +__PACKAGE__->meta->make_immutable; +1; diff --git a/lib/WebGUI/Upgrade/File/pod.pm b/lib/WebGUI/Upgrade/File/pod.pm new file mode 100644 index 000000000..3861688b0 --- /dev/null +++ b/lib/WebGUI/Upgrade/File/pod.pm @@ -0,0 +1,45 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File::pod - Upgrade class for POD documents + +=cut + +package WebGUI::Upgrade::File::pod; +use Moose; +use POSIX qw(_exit); +with 'WebGUI::Upgrade::File'; + +sub once { 1 } + +sub run { + my $self = shift; + my $configFile = shift; + if ( ! $self->quiet ) { + my $pid = fork; + if (! $pid) { + require Pod::Perldoc; + @ARGV = ($self->file); + Pod::Perldoc->run; + _exit; + } + waitpid $pid, 0; + } + + return 1; +} + +__PACKAGE__->meta->make_immutable; +1; + diff --git a/lib/WebGUI/Upgrade/File/sql.pm b/lib/WebGUI/Upgrade/File/sql.pm new file mode 100644 index 000000000..856f9a2ff --- /dev/null +++ b/lib/WebGUI/Upgrade/File/sql.pm @@ -0,0 +1,41 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File::sql - Upgrade class for SQL scripts + +=cut + +package WebGUI::Upgrade::File::sql; +use Moose; +with 'WebGUI::Upgrade::File'; + +sub run { + my $self = shift; + my $configFile = shift; + + my @command_line = ( + $self->upgrade->mysql, + $self->upgrade->mysqlCommandLine($configFile), + '--batch', + '--execute=source ' . $self->file, + ); + + system { $command_line[0] } @command_line + and die "$!"; + return 1; +} + +__PACKAGE__->meta->make_immutable; +1; + diff --git a/lib/WebGUI/Upgrade/File/txt.pm b/lib/WebGUI/Upgrade/File/txt.pm new file mode 100644 index 000000000..7792fc471 --- /dev/null +++ b/lib/WebGUI/Upgrade/File/txt.pm @@ -0,0 +1,45 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File::txt - Upgrade class for text documents + +=cut + +package WebGUI::Upgrade::File::txt; +use Moose; +with 'WebGUI::Upgrade::File'; + +sub once { 1 } + +sub run { + my $self = shift; + my $configFile = shift; + if ( ! $self->quiet ) { + open my $fh, '<', $self->file; + while ( my $line = <$fh> ) { + print $line; + } + close $fh; + if (-t) { + print "\nPress ENTER to continue... "; + my $nothing = <>; + } + } + + return 1; +} + +__PACKAGE__->meta->make_immutable; +1; + diff --git a/lib/WebGUI/Upgrade/File/wgpkg.pm b/lib/WebGUI/Upgrade/File/wgpkg.pm new file mode 100644 index 000000000..57a73754e --- /dev/null +++ b/lib/WebGUI/Upgrade/File/wgpkg.pm @@ -0,0 +1,88 @@ +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::File::wgpkg - Upgrade class for WebGUI packages + +=cut + +package WebGUI::Upgrade::File::wgpkg; +use Moose; +with 'WebGUI::Upgrade::File'; + +use WebGUI::Asset; +use WebGUI::Session; +use WebGUI::Storage; +use WebGUI::VersionTag; +use File::Spec; +use Try::Tiny; +use namespace::clean; + +sub run { + my $self = shift; + my $configFile = shift; + + my $session = WebGUI::Session->open($configFile); + $session->user({userId => 3}); + + my $versionTag = WebGUI::VersionTag->getWorking($session); + (undef, undef, my $shortname) = File::Spec->splitpath($self->file); + $shortname =~ s/\.[^.]*$//; + $versionTag->set({name => "Upgrade to @{[$self->version]} - $shortname"}); + + my $package = $self->import_package($session, $self->file); + if (! $self->quiet) { + printf "\tImported '%s'\n", $package->title; + } + + $versionTag->commit; + $session->var->end; + $session->close; + + return $package; +} + +sub import_package { + my $class = shift; + my ($session, $file) = @_; + + # Make a storage location for the package + my $storage = WebGUI::Storage->createTemp( $session ); + $storage->addFileFromFilesystem( $file ); + + # Import the package into the import node + my $package = try { + my $node = WebGUI::Asset->getImportNode($session); + $node->importPackage( $storage, { + overwriteLatest => 1, + clearPackageFlag => 1, + setDefaultTemplate => 1, + } ); + } + catch { + $storage->delete; + die "Error during package import on $file: $_"; + }; + + $storage->delete; + + if ($package eq 'corrupt') { + die "Corrupt package found in $file.\n"; + } + + return $package; +} + +__PACKAGE__->meta->make_immutable; +1; + diff --git a/lib/WebGUI/Upgrade/Script.pm b/lib/WebGUI/Upgrade/Script.pm new file mode 100644 index 000000000..986ce46e5 --- /dev/null +++ b/lib/WebGUI/Upgrade/Script.pm @@ -0,0 +1,344 @@ +package WebGUI::Upgrade::Script; +use 5.010; +use strict; +use warnings; +use feature (); + +use Sub::Exporter; +use Sub::Name; +use WebGUI::Upgrade (); +use Scope::Guard; +use Scalar::Util qw(weaken); + +my $exporter = Sub::Exporter::build_exporter({ + groups => { + default => \&_build_exports, + }, +}); + +my $caller_upgrade_file; +sub import { + my ($class, @args) = @_; + my $extra = shift @args if ref $args[0] eq 'HASH'; + $extra ||= {}; + if ( !$extra->{into} ) { + $extra->{into_level} ||= 0; + $extra->{into_level}++; + } + + # save this in a lexical so _build_exports can pull it out + $caller_upgrade_file = File::Spec->rel2abs( (caller 0)[1] ); + + feature->import(':5.10'); + strict->import; + warnings->import; + warnings->unimport('uninitialized'); + $class->$exporter( $extra, @args ); +} + +my @cleanups; + +sub _build_exports { + my $configFile = $ENV{WEBGUI_CONFIG} + or die 'WEBGUI_CONFIG environment variable must be specified'; + my $version = $ENV{WEBGUI_UPGRADE_VERSION} + or die 'WEBGUI_UPGRADE_VERSION must be set'; + my $upgrade_file = $caller_upgrade_file; + (my $vol, my $dir, my $shortname) = File::Spec->splitpath( $upgrade_file ); + $shortname =~ s/\.[^.]*$//; + + # need to be able to reference these directly in the cleanup code + my $session; + my $versionTag; + + # these subs are kept separate so the others can call them + my $config_sub = sub () { + state $config = do { + require WebGUI::Config; + WebGUI::Config->new($configFile); + }; + return $config; + }; + my $session_sub = sub () { + return $session + if $session && ! $session->closed; + + require WebGUI::Session; + $session = WebGUI::Session->open($config_sub->()); + $session->user({userId => 3}); + return $session; + }; + my $version_tag_sub = sub (;$) { + my $name = shift; + require WebGUI::VersionTag; + if ($versionTag) { + if ($name) { + $versionTag->commit; + } + elsif ( ! $versionTag->get('isCommitted') ) { + return $versionTag; + } + } + $name ||= $shortname; + $versionTag = WebGUI::VersionTag->getWorking($session_sub->()); + $versionTag->set({name => "Upgrade to $version - $name"}); + return $versionTag; + }; + my $dbh_sub = sub () { + state $dbh = do { + WebGUI::Upgrade->dbhForConfig($config_sub->()); + }; + return $dbh; + }; + my $collateral_sub = sub () { + state $collateral = do { + my $path = File::Spec->catpath($vol, File::Spec->catdir($dir, $shortname), ''); + Path::Class::Dir->new($path); + }; + return $collateral; + }; + + my $cleanup = sub { + state $has_run = 0; + return + if $has_run++; + if ($session) { + require WebGUI::VersionTag; + if (WebGUI::VersionTag->getWorking($session, 'nocreate')) { + $version_tag_sub->()->commit; + } + $session->var->end; + $session->close; + } + undef $session; + undef $versionTag; + }; + my $cleanup_guard = Scope::Guard->new( $cleanup ); + + # we keep a weakened copy around. this prevents us from keeping a + # copy if the guard gets freed, but otherwise allows us to call it + # manually in END. + push @cleanups, $cleanup; + weaken $cleanups[-1]; + + my $indent = 0; + my $just_started; + + my $subs = { + # this closes over the guard, keeping it alive until the sub is either + # run or deleted. WebGUI::Upgrade::File::pl will end up deleting + # the sub when it cleans up the temporary namespace it uses. + _cleanup => sub { + undef $cleanup_guard; + }, + config => $config_sub, + session => $session_sub, + version_tag => $version_tag_sub, + dbh => $dbh_sub, + collateral => $collateral_sub, + start_step => sub (@) { + print "\n" + if $just_started; + print "\t" x $indent, @_, '... '; + $just_started = 1; + $indent++; + }, + report => sub (@) { + print "\n" + if $just_started; + print "\t" x $indent, @_, "\n"; + $just_started = 0; + }, + done => sub () { + $indent--; + print "\t" x $indent + unless $just_started; + print "Done.\n"; + $just_started = 0; + }, + sql => sub (@) { + my $sql = shift; + my $dbh = $dbh_sub->(); + my $sth = $dbh->prepare($sql); + $sth->execute(@_); + }, + rm_lib => sub (@) { + my @modules = @_; + for my $module (@modules) { + $module =~ s{::}{/}g; + $module .= '.pm'; + for my $inc (@INC) { + my $fullPath = File::Spec->catfile($inc, $module); + unlink $fullPath; + } + } + }, + import_package => sub (@) { + my $fullPath = $collateral_sub->()->file(@_); + require WebGUI::Upgrade::File::wgpkg; + WebGUI::Upgrade::File::wgpkg->import_package($session_sub->(), $fullPath); + }, + root_asset => sub () { + require WebGUI::Asset; + return WebGUI::Asset->getRoot($session_sub->()); + }, + import_node => sub () { + require WebGUI::Asset; + return WebGUI::Asset->getImportNode($session_sub->()); + }, + asset => sub ($) { + require WebGUI::Asset; + my $session = $session_sub->(); + my $assetId = shift; + my $asset; + if ($session->id->valid($assetId)) { + try { + $asset = WebGUI::Asset->newById($session, $assetId); + }; + } + if ( ! $asset ) { + $asset = WebGUI::Asset->newByUrl($session, $assetId); + } + return $asset; + }, + clear_cache => sub () { + my $session = $session_sub->(); + my $cache = $session->cache; + $cache->clear; + }, + }; + # give the subs some names to help with diagnostics + my $sub_package = $shortname; + $sub_package =~ s/\W//g; + for my $sub_name ( keys %$subs ) { + subname join('::', __PACKAGE__, $sub_package, $sub_name) => $subs->{$sub_name}; + } + return $subs; +} + +END { + for my $cleanup (@cleanups) { + # could be a weakened ref that went away + next + unless $cleanup; + $cleanup->(); + } +} + +1; + +__END__ + +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=head1 NAME + +WebGUI::Upgrade::Script - Utility package for WebGUI upgrade scripts + +=head1 SYNOPSIS + + use WebGUI::Upgrade::Script; + + print "Adding new snippet.\n"; + import_node->addChild({ className => 'WebGUI::Asset::Snippet', title => 'New Snippet'}); + config->set('config/item', 'new value'); + done; + +=head1 DESCRIPTION + +This is a package to be used in upgrade scripts to provide a number +of functions and automatic cleanup to make writing upgrade scripts +faster and simpler. + +Cing this module will also enable strictures, warnings, and +all of Perl 5.10's syntax enhancements in the caller. + +=head1 ENVIRONMENT + +This package will use the following environment variables to determine +its operation. These variables are automatically set by +L if run through the main upgrade system. + +=head2 WEBGUI_CONFIG + +The WebGUI config file to operate against. + +=head2 WEBGUI_UPGRADE_VERSION + +The version being upgraded to. + +=head1 EXPORTED SUBROUTINES + +These subroutines are all exported by default using L. +They cannot be called directly. + +=head2 report ( $message ) + +Outputs $message. + +=head2 done + +Reports that the current step has been completed. + +=head2 config + +Returns the WebGUI::Config object for the site. + +=head2 session + +Returns a session for the site. + +=head2 dbh + +Returns a database handle for the site's database. + +=head2 version_tag ( [ $name ] ) + +If $name is specified, creates a new version tag with that name, +sets it as the active version tag, and returns it + +If $name is not specified, returns the current working version tag, +creating it if needed. + +The actual name of the version tag will automatically include a +note specifying that it is an upgrade version tag. + +=head2 rm_lib ( $module ) + +Deletes the specified Perl module. The module should be specified +as a colon separated name, and it will be removed from all include +paths. + +=head2 collateral + +Returns a L object for the upgrade script's collateral +path. The collateral path is the same as the name of the upgrade +script with the extension stripped off. + +=head2 import_package ( $package_file ) + +Imports the specified package from the upgrade script's collateral path. + +=head2 root_asset + +Returns the site's root asset. + +=head2 import_node + +Returns the site's import node. + +=head2 asset ( $assetId_or_URL ) + +Returns an asset based on an asset ID or URL. + +=cut diff --git a/lib/WebGUI/User.pm b/lib/WebGUI/User.pm index 4871fe20d..65333072b 100644 --- a/lib/WebGUI/User.pm +++ b/lib/WebGUI/User.pm @@ -299,7 +299,7 @@ sub canUseAdminMode { my $pass = 1; my $subnets = $self->session->config->get("adminModeSubnets") || []; if (scalar(@$subnets)) { - $pass = WebGUI::Utility::isInSubnet($self->session->env->getIp, $subnets); + $pass = WebGUI::Utility::isInSubnet($self->session->request->address, $subnets); } return $pass && $self->isInGroup(12) diff --git a/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm b/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm index c7ffd27bb..d9d2cfcd4 100644 --- a/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm +++ b/lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm @@ -81,8 +81,8 @@ sub execute { my $date = WebGUI::DateTime->new($session, time() - $self->get("trashAfter") ); my $sth = $session->db->read( "select Event.assetId, revisionDate from Event join assetData using (assetId, revisionDate) where endDate < ? and revisionDate = (select max(revisionDate) from assetData where assetData.assetId=Event.assetId);", [ $date->toDatabaseDate ]); EVENT: while ( my ($id) = $sth->array ) { - my $asset = eval { WebGUI::Asset::Event->newById($self->session, $id); }; - if (! Exception::Class->caught() ) { + my $asset = eval { WebGUI::Asset->newById($session, $id); }; + if (! Exception::Class->caught()) { $asset->trash; } last EVENT if time() > $finishTime; diff --git a/sbin/spectre.pl b/sbin/spectre.pl index ad3cf8d20..f7cd6fbe9 100755 --- a/sbin/spectre.pl +++ b/sbin/spectre.pl @@ -18,7 +18,7 @@ use File::Spec; use POE::Component::IKC::ClientLite; use Spectre::Admin; use WebGUI::Paths -inc; -use WebGUI::Config; +use Config::JSON; use JSON; $|=1; # disable output buffering @@ -47,7 +47,7 @@ GetOptions( pod2usage( verbose => 2 ) if $help; pod2usage() unless ($ping||$shutdown||$daemon||$run||$test||$status); -my $config = WebGUI::Config->new( WebGUI::Paths->spectreConfig, 1); +my $config = Config::JSON->new( WebGUI::Paths->spectreConfig); unless (defined $config) { print <\$help, - 'history'=>\$history, - 'override'=>\$override, - 'quiet'=>\$quiet, - 'mysql=s'=>\$mysql, - 'doit'=>\$doit, - 'skipDelete' =>\$skipDelete, - 'skipMaintenance' =>\$skipMaintenance, - 'mysqldump=s'=>\$mysqldump, - 'backupDir=s'=>\$backupDir, - 'skipbackup'=>\$skipBackup -); + 'help' => \( my $help ), + 'history' => \( my $history ), + 'override' => \( my $override ), + 'quiet' => \( my $quiet ), + 'doit' => \( my $doit ), + 'skipDelete' => \( my $skipDelete ), + 'skipMaintenance' => \( my $skipMaintenance ), + 'skipbackup' => \( my $skipBackup ), + 'backupDir=s' => \( my $backupDir ), + 'mysql=s' => \( my $mysql ), + 'mysqldump=s' => \( my $mysqldump ), +) or Pod::Usage::pod2usage(2); -Pod::Usage::pod2usage( verbose => 2 ) if $help; -Pod::Usage::pod2usage() unless $doit; - -unless ($doit) { - print < 1, + -exitval => 1, + ); +} +elsif ($history) { + for my $config (WebGUI::Paths->siteConfigs) { + print "$config:\n"; + WebGUI::Upgrade->reportHistory($config); + print "\n"; + } + exit; +} +elsif ( ! $doit ) { + my $message = <<'END_MESSAGE'; +--------------------------------------------------------------------+ | | @@ -75,314 +70,41 @@ unless ($doit) { | | +--------------------------------------------------------------------+ -STOP - exit; +END_MESSAGE + Pod::Usage::pod2usage($message); } - -if (!($^O =~ /^Win/i) && $> != 0 && !$override) { - print "You must be the super user to use this utility.\n"; - exit; +if ( $^O ne 'MSWin32' && $> != 0 && !$override ) { + print "You must be the super user to use this utility.\n"; + exit; } ## Globals -$| = 1; -our $perl = $^X; -our $slash; -if ($^O =~ /^Win/i) { - $slash = "\\"; -} else { - $slash = "/"; -} -our $upgradesPath = WebGUI::Paths->upgrades; -our (%upgrade, %config); +my $upgrade = WebGUI::Upgrade->new( + quiet => $quiet, + clearCache => ! $skipDelete, + createBackups => ! $skipBackup, + useMaintenanceMode => ! $skipMaintenance, + $mysql ? ( + mysql => $mysql, + ) : (), + $mysqldump ? ( + mysqldump => $mysqldump, + ) : (), + $backupDir ? ( + backupPath => $backupDir, + ) : (), +); +$upgrade->upgradeSites; -## Find site configs. +print <readAllConfigs; -foreach my $filename (keys %{$configs}) { - print "\tProcessing $filename.\n" unless ($quiet); - $config{$filename}{configFile} = $filename; - $config{$filename}{dsn} = $configs->{$filename}->get("dsn"); - my $temp = _parseDSN($config{$filename}{dsn}, ['database', 'host', 'port']); - if ($temp->{'driver'} eq "mysql") { - $config{$filename}{db} = $temp->{'database'}; - $config{$filename}{host} = $temp->{'host'}; - $config{$filename}{port} = $temp->{'port'}; - $config{$filename}{dbuser} = $configs->{$filename}->get("dbuser"); - $config{$filename}{dbpass} = $configs->{$filename}->get("dbpass"); - $config{$filename}{mysqlCLI} = $configs->{$filename}->get("mysqlCLI"); - $config{$filename}{mysqlDump} = $configs->{$filename}->get("mysqlDump"); - $config{$filename}{backupPath} = $configs->{$filename}->get("backupPath"); - my $session = WebGUI::Session->open($filename); - ($config{$filename}{version}) = $session->db->quickArray("select webguiVersion from webguiVersion order by - dateApplied desc, length(webguiVersion) desc, webguiVersion desc limit 1"); - unless ($history) { - print "\tPreparing site for upgrade.\n" unless ($quiet); - unless ($skipMaintenance) { - $session->setting->remove('specialState'); - $session->setting->add('specialState','upgrading'); - } - unless ($skipDelete) { - print "\tDeleting temp files.\n" unless ($quiet); - my $path = File::Spec->catdir($configs->{$filename}->get("uploadsPath"), 'temp'); - File::Path::rmtree($path) unless ($path eq "" || $path eq "/" || $path eq "/data"); - print "\tDeleting file cache.\n" unless ($quiet); - $path = $configs->{$filename}->get("fileCacheRoot") || "/tmp/WebGUICache"; - File::Path::rmtree($path) unless ($path eq "" || $path eq "/" || $path eq "/data"); - } - } - $session->close(); - } else { - delete $config{$filename}; - print "\tSkipping non-MySQL database.\n" unless ($quiet); - } -} - -if ($history) { - print "\nDisplaying upgrade history for each site.\n"; - foreach my $file (keys %config) { - print "\n".$file."\n"; - my $session = WebGUI::Session->open($file); - my $sth = $session->db->read("select * from webguiVersion order by dateApplied asc, webguiVersion asc"); - while (my $data = $sth->hashRef) { - print "\t".sprintf("%-8s %-15s %-15s", - $data->{webguiVersion}, - $session->datetime->epochToHuman($data->{dateApplied},"%y-%m-%d"), - $data->{versionType})."\n"; - } - $sth->finish; - $session->close; - } - exit; -} - -## Find upgrade files. - -print "\nLooking for upgrade files...\n" unless ($quiet); -opendir(DIR,$upgradesPath) or die "Couldn't open $upgradesPath\n"; -my @files = readdir(DIR); -closedir(DIR); -foreach my $file (@files) { - if ($file =~ /^upgrade_(\d+\.\d+\.\d+)-(\d+\.\d+\.\d+)\.(pl|sql)$/) { - if (checkVersion($1)) { - if ($3 eq "sql") { - print "\tFound upgrade script from $1 to $2.\n" unless ($quiet); - $upgrade{$1}{sql} = $file; - } elsif ($3 eq "pl") { - print "\tFound upgrade executable from $1 to $2.\n" unless ($quiet); - $upgrade{$1}{pl} = $file; - } - $upgrade{$1}{from} = $1; - $upgrade{$1}{to} = $2; - } - } -} - -print "\nREADY TO BEGIN UPGRADES\n" unless ($quiet); - -my $notRun = 1; - - -my $currentPath = Cwd::getcwd(); -my $totalConfigs = scalar keys %config; -my $configCounter = 0; -foreach my $filename (keys %config) { - chdir($upgradesPath); - my $clicmd = $config{$filename}{mysqlCLI} || $mysql; - my $dumpcmd = $config{$filename}{mysqlDump} || $mysqldump; - my $backupTo = $config{$filename}{backupPath} || $backupDir; - mkdir($backupTo); - ++$configCounter; - while ($upgrade{$config{$filename}{version}}{sql} ne "" || $upgrade{$config{$filename}{version}}{pl} ne "") { - my $upgrade = $upgrade{$config{$filename}{version}}{from}; - print "\n".$config{$filename}{db}." ".$upgrade{$upgrade}{from}."-".$upgrade{$upgrade}{to}."\n" unless ($quiet); - print "Processing $configCounter out of $totalConfigs configs\n" unless ($quiet); - unless ($skipBackup) { - print "\tBacking up $config{$filename}{db} ($upgrade{$upgrade}{from})..." unless ($quiet); - my $cmd = qq!$dumpcmd -u"$config{$filename}{dbuser}" -p"$config{$filename}{dbpass}"!; - $cmd .= " --host=".$config{$filename}{host} if ($config{$filename}{host}); - $cmd .= " --port=".$config{$filename}{port} if ($config{$filename}{port}); - $cmd .= " --add-drop-table ".$config{$filename}{db}." --result-file=" - .File::Spec->catfile($backupTo, $config{$filename}{db}."_".$upgrade{$upgrade}{from}."_".time.".sql"); - unless (system($cmd)) { - print "OK\n" unless ($quiet); - } else { - print "Failed!\n" unless ($quiet); - fatalError(); - } - } - if ($upgrade{$upgrade}{sql} ne "") { - print "\tUpgrading to ".$upgrade{$upgrade}{to}."..." unless ($quiet); - my $cmd = qq!$clicmd -u"$config{$filename}{dbuser}" -p"$config{$filename}{dbpass}"!; - $cmd .= " --host=".$config{$filename}{host} if ($config{$filename}{host}); - $cmd .= " --port=".$config{$filename}{port} if ($config{$filename}{port}); - $cmd .= " --database=".$config{$filename}{db}." < ".$upgrade{$upgrade}{sql}; - unless (system($cmd)) { - print "OK\n" unless ($quiet); - } else { - print "Failed!\n" unless ($quiet); - fatalError(); - } - } - if ($upgrade{$upgrade}{pl} ne "") { - my $pid = fork; - if (!$pid) { - local @ARGV = ("--configFile=$filename", $quiet ? ('--quiet') : ()); - local $0 = $upgrade{$upgrade}{pl}; - local $@; - do $0; - if ($@) { - warn $@; - exit 255; - }; - exit; - } - waitpid $pid, 0; - if ($?) { - print "\tProcessing upgrade executable failed!\n"; - fatalError(); - } - ##Do a dummy load of the config - WebGUI::Config->clearCache(); - } - $config{$filename}{version} = $upgrade{$upgrade}{to}; - $notRun = 0; - sleep 1; # Sleep a second to avoid adding asset revisions too quickly - } - chdir($currentPath); - my $session = WebGUI::Session->open($filename); - print "\tSetting site upgrade completed..." unless ($quiet); - $session->setting->remove('specialState'); - $session->close(); - print "OK\n" unless ($quiet); -} - -if ($notRun) { - print "\nNO UPGRADES NECESSARY\n\n" unless ($quiet); -} else { - unless ($quiet) { - print < $goal) { - return 1; - } - elsif ($1 == $goal) { - if ($2 > $feature) { - return 1; - } - elsif ($2 == $feature) { - if ($3 >= $fix) { - return 1; - } - } - } - return 0; -} - -#----------------------------------------- -sub fatalError { - print <{driver} = $1; - - while (length($dsn)) { - if ($dsn =~ /([^:;]*)[:;](.*)/) { - $val = $1; - $dsn = $2; - } else { - $val = $dsn; - $dsn = ''; - } - if ($val =~ /([^=]*)=(.*)/) { - $var = $1; - $val = $2; - if ($var eq 'hostname' || $var eq 'host') { - $hash->{'host'} = $val; - } elsif ($var eq 'db' || $var eq 'dbname') { - $hash->{'database'} = $val; - } else { - $hash->{$var} = $val; - } - } else { - foreach $var (@$args) { - if (!defined($hash->{$var})) { - $hash->{$var} = $val; - last; - } - } - } - - } - return $hash; -} - -sub readLines { - my $file = shift; - my @lines; - if (open(my $fh, '<', $file)) { - while (my $line = <$fh>) { - $line =~ s/#.*//; - $line =~ s/^\s+//; - $line =~ s/\s+$//; - next if !$line; - push @lines, $line; - } - close $fh; - } - return @lines; -} __END__ @@ -392,34 +114,33 @@ upgrade - Upgrade WebGUI database to the latest revision. =head1 SYNOPSIS - upgrade --doit - [--backupDir path] - [--history] - [--mysql pathname] - [--mysqldump pathname] - [--override] - [--skipBackup] - [--skipDelete] - [--skipMaintenance] - [--quiet] + upgrade --doit + [--backupDir path] + [--mysql pathname] + [--mysqldump pathname] + [--override] + [--skipBackup] + [--skipDelete] + [--skipMaintenance] + [--quiet] + upgrade --history - upgrade --help + upgrade --help =head1 DESCRIPTION This WebGUI utility script is able to upgrade B WebGUI database -from 7.3.22 upward to the currently installed version. The WebGUI -software distribution includes a set of upgrade scripts that -perform the necessary database changes (schema and data) to bring -the database up-to-date in order to match the currently installed -WebGUI libraries and programs. +to the currently installed version. The WebGUI software distribution +includes a set of upgrade scripts that perform the necessary database +changes (schema and data) to bring the database up-to-date in order +to match the currently installed WebGUI libraries and programs. This utility is designed to be run as a superuser on Linux systems, since it needs to be able to access several system directories and change ownership of files. If you want to run this utility without -superuser privileges, use the B<--override> option described below. +superuser privileges, use the C<--override> option described below. -=head1 WARNING +=head2 WARNING There are B guarantees of any kind provided with this software. This utility has been tested rigorously, and has performed without @@ -431,62 +152,64 @@ B you should definitely read docs/gotcha.txt to find out what things you should know about that will affect your upgrade. -=over +=head1 OPTIONS -=item B<--doit> +=over 4 + +=item C<--doit> You B include this flag in the command line or the script will refuse to run. This is to force you to read this documentation at least once and be sure that you B want to perform the upgrade. -=item B<--backupDir path> +=item C<--backupDir path> Specify a path where database backups should be created during the -upgrade procedure. If left unspecified, it defaults to B. +upgrade procedure. If left unspecified, it defaults to C. -=item B<--history> +=item C<--history> Displays the upgrade history for each of your sites. Running with this flag will B perform the upgrade. -=item B<--mysql pathname> +=item C<--mysql pathname> The full pathname to your mysql client executable. If left unspecified, -it defaults to B. +it defaults to C. -=item B<--mysqldump pathname> +=item C<--mysqldump pathname> The full pathname to your mysqldump executable. If left unspecified, -it defaults to B. +it defaults to C. -=item B<--override> +=item C<--override> This flag will allow you to run this utility without being the super user, but note that it may not work as intended. -=item B<--skipBackup> +=item C<--skipBackup> Use this if you B want database backups to be performed during the upgrade procedure. -=item B<--skipDelete> +=item C<--skipDelete> The upgrade procedure normally deletes WebGUI's cache and temporary files created as part of the upgrade. This cleanup is very important during large upgrades, but can make the procedure quite slow. This option skips the deletion of these files. -=item B<--skipMaintenance> +=item C<--skipMaintenance> The upgrade procedure normally puts up a simple maintenance page on all the sites while running, but this option will skip that step. -=item B<--quiet> +=item C<--quiet> Disable all output unless there's an error. -=item B<--help> +=item C<--help> Shows this documentation, then exits. diff --git a/docs/create.sql b/share/create.sql similarity index 100% rename from docs/create.sql rename to share/create.sql diff --git a/var/default.ttf b/share/default.ttf similarity index 100% rename from var/default.ttf rename to share/default.ttf diff --git a/var/site.psgi b/share/site.psgi similarity index 94% rename from var/site.psgi rename to share/site.psgi index 1f97874d7..87d228b3e 100644 --- a/var/site.psgi +++ b/share/site.psgi @@ -29,8 +29,11 @@ builder { enable '+WebGUI::Middleware::HTTPExceptions'; + enable 'ErrorDocument', 503 => $config->get('maintenancePage'); enable_if { ! $_[0]->{'webgui.debug'} } 'ErrorDocument', 500 => $config->get('maintenancePage'); + enable '+WebGUI::Middleware::Maintenance'; + enable_if { $_[0]->{'webgui.debug'} } 'StackTrace'; enable_if { $_[0]->{'webgui.debug'} } 'Debug', panels => [ 'Environment', diff --git a/share/upgrades/7.9.8-8.0.0/addMaintenancePageToConfig.pl b/share/upgrades/7.9.8-8.0.0/addMaintenancePageToConfig.pl new file mode 100644 index 000000000..e35052024 --- /dev/null +++ b/share/upgrades/7.9.8-8.0.0/addMaintenancePageToConfig.pl @@ -0,0 +1,14 @@ +use WebGUI::Upgrade::Script; + +use File::Basename; +use Cwd qw(realpath); +use File::Spec::Functions; +use WebGUI::Paths; + +start_step "Moving preload files"; + +my $webgui_root = realpath( catdir( dirname( $INC{'WebGUI/Upgrade/Script.pm'} ), (updir) x 3 ) ); + +config->set('maintenancePage', catfile( $webgui_root, 'www', 'maintenance.html' )); + +done; diff --git a/share/upgrades/7.9.8-8.0.0/migrateToNewCache.pl b/share/upgrades/7.9.8-8.0.0/migrateToNewCache.pl new file mode 100644 index 000000000..5241484e0 --- /dev/null +++ b/share/upgrades/7.9.8-8.0.0/migrateToNewCache.pl @@ -0,0 +1,36 @@ +use WebGUI::Upgrade::Script; +use Module::Find; + +start_step "Migrating to new cache"; + +rm_lib + findallmod('WebGUI::Cache'), + 'WebGUI::Workflow::Activity::CleanDatabaseCache', + 'WebGUI::Workflow::Activity::CleanFileCache', +; + +config->set("cache", { + 'driver' => 'FastMmap', + 'expires_variance' => '0.10', + 'root_dir' => '/tmp/WebGUICache', +}); + +config->set('hotSessionFlushToDb', 600); +config->delete('disableCache'); +config->delete('cacheType'); +config->delete('fileCacheRoot'); +config->deleteFromArray('workflowActivities/None', 'WebGUI::Workflow::Activity::CleanDatabaseCache'); +config->deleteFromArray('workflowActivities/None', 'WebGUI::Workflow::Activity::CleanFileCache'); + +sql 'DROP TABLE IF EXISTS cache'; +sql 'DELETE FROM WorkflowActivity WHERE className in (?,?)', + 'WebGUI::Workflow::Activity::CleanDatabaseCache', + 'WebGUI::Workflow::Activity::CleanFileCache', +; +sql 'DELETE FROM WorkflowActivityData WHERE activityId IN (?,?)', + 'pbwfactivity0000000002', + 'pbwfactivity0000000022', +; + +done; + diff --git a/share/upgrades/7.9.8-8.0.0/moveFileLocations.pl b/share/upgrades/7.9.8-8.0.0/moveFileLocations.pl new file mode 100644 index 000000000..f468869c7 --- /dev/null +++ b/share/upgrades/7.9.8-8.0.0/moveFileLocations.pl @@ -0,0 +1,20 @@ +use WebGUI::Upgrade::Script; + +use File::Basename; +use Cwd qw(realpath); +use File::Spec::Functions; +use WebGUI::Paths; + +start_step "Moving preload files"; + +my $webgui_root = realpath( catdir( dirname( $INC{'WebGUI/Upgrade/Script.pm'} ), (updir) x 3 ) ); + +unlink catfile($webgui_root, 'lib', 'default.ttf'); + +unlink catfile($webgui_root, 'sbin', 'preload.custom.example'); +unlink catfile($webgui_root, 'sbin', 'preload.exclude.example'); + +rename catfile($webgui_root, 'sbin', 'preload.custom'), WebGUI::Paths->preloadCustom; +rename catfile($webgui_root, 'sbin', 'preload.exclude'), WebGUI::Paths->preloadExclusions; + +done; diff --git a/share/upgrades/7.9.8-8.0.0/moveMaintenance.pl b/share/upgrades/7.9.8-8.0.0/moveMaintenance.pl new file mode 100644 index 000000000..0c9fdc26a --- /dev/null +++ b/share/upgrades/7.9.8-8.0.0/moveMaintenance.pl @@ -0,0 +1,13 @@ +use WebGUI::Upgrade::Script; + +use File::Spec::Functions; +use File::Basename; +use Cwd qw(realpath); + +my $webgui_root = realpath( catdir( dirname( $INC{'WebGUI/Upgrade/Script.pm'} ), (updir) x 3 ) ); + +start_step "Moving maintenance file"; + +unlink catfile($webgui_root, 'docs', 'maintenance.html'); + +done; diff --git a/share/upgrades/7.9.8-8.0.0/root_import_default-asset-subscription.wgpkg b/share/upgrades/7.9.8-8.0.0/root_import_default-asset-subscription.wgpkg new file mode 100644 index 000000000..f04fa276d Binary files /dev/null and b/share/upgrades/7.9.8-8.0.0/root_import_default-asset-subscription.wgpkg differ diff --git a/share/upgrades/_upgrade.skeleton b/share/upgrades/_upgrade.skeleton new file mode 100644 index 000000000..c6f0bee7a --- /dev/null +++ b/share/upgrades/_upgrade.skeleton @@ -0,0 +1,25 @@ +use WebGUI::Upgrade::Script; + +report "\tRunning an upgrade step..."; + +# if (! quiet) { ... } + +# clear_cache; + +# my $session = session; +# my $config = config; +# my $dbh = dbh; +# sql 'CREATE TABLE ...'; +# version_tag "Doing asset work"; + +# rm_lib 'WebGUI::Old::Module'; + +# my $asset = asset('assetId'); +# my $asset = asset('asset/url'); +# my $asset = import_node->addChild( ... ); +# my $assets = root_asset->getLineage( ... ); + +# my $file = collateral->file('filename'); +# import_package 'some_files.wgpkg'; + +done; diff --git a/var/upgrades/convert-db-to-innodb.sql b/share/upgrades/convert-db-to-innodb.sql similarity index 100% rename from var/upgrades/convert-db-to-innodb.sql rename to share/upgrades/convert-db-to-innodb.sql diff --git a/t/AdSpace.t b/t/AdSpace.t index f7515c657..0f2ae3e2b 100644 --- a/t/AdSpace.t +++ b/t/AdSpace.t @@ -38,8 +38,9 @@ my $session = WebGUI::Test->session; my ($adSpace, $alfred, $alfred2, $bruce, $catWoman, ); my ($jokerAd, $penguinAd, $twoFaceAd); - $session->request->env->{REMOTE_ADDR} = '10.0.0.1'; - $session->request->env->{HTTP_USER_AGENT} = 'Mozilla/5.0'; +$session->request->env->{REMOTE_ADDR} = '10.0.0.1'; +$session->request->env->{HTTP_USER_AGENT} = 'Mozilla/5.0'; + $adSpace = WebGUI::AdSpace->create($session, {name=>"Alfred"}); isa_ok($adSpace, 'WebGUI::AdSpace'); diff --git a/t/Asset/AssetExportHtml.t b/t/Asset/AssetExportHtml.t index 240cee44d..1b2c55338 100644 --- a/t/Asset/AssetExportHtml.t +++ b/t/Asset/AssetExportHtml.t @@ -290,7 +290,7 @@ is($gcAsPath->absolute($exportPath)->stringify, $litmus->absolute($exportPath)-> # now let's get tricky and test different file extensions my $storage = WebGUI::Storage->create($session); -WebGUI::Test->addToCleanup($storage); +WebGUI::Test->addToCleanup('WebGUI::Storage' => $storage->getId); my $filename = 'somePerlFile_pl.txt'; $storage->addFileFromScalar($filename, $filename); $session->user({userId=>3}); diff --git a/t/Asset/AssetLineage.t b/t/Asset/AssetLineage.t index f5d014250..f87cd370f 100644 --- a/t/Asset/AssetLineage.t +++ b/t/Asset/AssetLineage.t @@ -85,8 +85,15 @@ my $snippet2 = $folder2->addChild( { }); $versionTag->commit; -my @snipIds; -my $lineageIds; + +#################################################### +# +# getLineageSql +# +#################################################### + +note "getLineageSql"; +ok $root->getLineageSql(['ancestors']), 'valid SQL returned in an error condition'; #################################################### # @@ -94,12 +101,8 @@ my $lineageIds; # #################################################### -my $ids = $folder->getLineage(['self']); -cmp_deeply( - [$folder->getId], - $ids, - 'getLineage: get self' -); +my @snipIds; +my $lineageIds; @snipIds = map { $_->getId } @snippets; $lineageIds = $folder->getLineage(['descendants']); @@ -107,7 +110,7 @@ $lineageIds = $folder->getLineage(['descendants']); cmp_deeply($lineageIds, \@snipIds, 'default order returned by getLineage is lineage order'); @snipIds = map { $_->getId } @snippets; -$ids = $folder->getLineage(['descendants']); +my $ids = $folder->getLineage(['descendants']); cmp_bag( \@snipIds, $ids, @@ -143,6 +146,13 @@ cmp_bag( '... descendants of topFolder', ); +my $empty = getListFromIterator($root->getLineageIterator(['ancestors'])); +cmp_bag( + $empty, + [], + '... getting ancestors of root returns empty array' +); + #################################################### # # getLineageIterator @@ -194,6 +204,14 @@ cmp_bag( 'getLineageIterator: descendants of topFolder', ); +my $empty = getListFromIterator($root->getLineageIterator(['ancestors'])); +cmp_bag( + $empty, + [], + '... getting ancestors of root returns empty array' +); + + #################################################### # # getFirstChild diff --git a/t/Asset/Event.t b/t/Asset/Event.t index 7a008fc48..f14874b56 100644 --- a/t/Asset/Event.t +++ b/t/Asset/Event.t @@ -129,6 +129,7 @@ sleep 2; my $event6a = $event6->addRevision({ title => 'Event with storage', }, undef, { skipAutoCommitWorkflows => 1, }); ok($session->id->valid($event6a->get('storageId')), 'addRevision gives the new revision a valid storageId'); isnt($event6a->get('storageId'), $event6->get('storageId'), '... and it is different from the previous revision'); + my $versionTag2 = WebGUI::VersionTag->getWorking($session); WebGUI::Test->addToCleanup($versionTag2); $versionTag2->commit; diff --git a/t/Asset/Post/Thread.t b/t/Asset/Post/Thread.t index 06877053e..be944216a 100644 --- a/t/Asset/Post/Thread.t +++ b/t/Asset/Post/Thread.t @@ -57,15 +57,6 @@ my $uncommittedThread = $collab->addChild($props, @addArgs); # Test for a sane object type isa_ok($thread, 'WebGUI::Asset::Post::Thread'); -my $env = $session->env; -$env = Test::MockObject::Extends->new($env); - -my %mockEnv = ( - REMOTE_ADDR => '192.168.0.2', -); - -$env->mock('get', sub { return $mockEnv{$_[1]}}); - $session->user({userId => 3}); $thread->rate(1); $thread->trash; diff --git a/t/Asset/Wobject/Gallery/00base.t b/t/Asset/Wobject/Gallery/00base.t index 81bf3ad6f..60f4d8c7f 100644 --- a/t/Asset/Wobject/Gallery/00base.t +++ b/t/Asset/Wobject/Gallery/00base.t @@ -66,3 +66,5 @@ $gallery->purge; eval { WebGUI::Asset->newById($session, $properties->{assetId}); }; ok( Exception::Class->caught(), 'Gallery no longer able to be instanciated after purge'); + +#vim:ft=perl diff --git a/t/Asset/Wobject/GalleryAlbum/00base.t b/t/Asset/Wobject/GalleryAlbum/00base.t index 80e794423..d1b618cbf 100644 --- a/t/Asset/Wobject/GalleryAlbum/00base.t +++ b/t/Asset/Wobject/GalleryAlbum/00base.t @@ -70,3 +70,5 @@ $album->purge; eval { WebGUI::Asset->newById($session, $properties->{assetId}); }; ok( Exception::Class->caught(), 'Album no longer able to be instanciated'); + +#vim:ft=perl diff --git a/t/Asset/Wobject/GalleryAlbum/ajax.t b/t/Asset/Wobject/GalleryAlbum/ajax.t index 8fe37dc28..27a7380d6 100644 --- a/t/Asset/Wobject/GalleryAlbum/ajax.t +++ b/t/Asset/Wobject/GalleryAlbum/ajax.t @@ -255,3 +255,5 @@ sub callAjaxService { # Call ajax service function and decode reply return decode_json( $album->www_ajax() ); } + +#vim:ft=perl diff --git a/t/Asset/Wobject/InOutBoard.t b/t/Asset/Wobject/InOutBoard.t index 3cc7abd0b..f48203de6 100644 --- a/t/Asset/Wobject/InOutBoard.t +++ b/t/Asset/Wobject/InOutBoard.t @@ -144,11 +144,9 @@ cmp_bag( dateStamp => ignore(), message => 'work time', username => 'red', - }), - superhashof({ username => 'Admin' }), - superhashof({ username => 'boggs' }), - superhashof({ username => 'andy' }), - superhashof({ username => 'hadley' }), + department => 'No Department', + }, + ignore(), ignore(), ignore(), ignore(), ], 'view: returns one entry for each user, entry is correct for user with status' ) or diag(Dumper $templateVars->{rows_loop}); diff --git a/t/Asset/Wobject/StoryArchive.t b/t/Asset/Wobject/StoryArchive.t index 82b2d190c..dd6d88804 100644 --- a/t/Asset/Wobject/StoryArchive.t +++ b/t/Asset/Wobject/StoryArchive.t @@ -63,12 +63,6 @@ $canPostMaker->prepare({ fail => [1, $reader ], }); -my $tests = 51 - + $canPostMaker->plan - ; -plan tests => 1 - + $tests; - #---------------------------------------------------------------------------- # put your tests here diff --git a/t/Asset/Wobject/Survey/ExpressionEngine.t b/t/Asset/Wobject/Survey/ExpressionEngine.t index 53b3fde36..9f9a08f0e 100644 --- a/t/Asset/Wobject/Survey/ExpressionEngine.t +++ b/t/Asset/Wobject/Survey/ExpressionEngine.t @@ -28,11 +28,9 @@ plan tests => $tests + 1; #---------------------------------------------------------------------------- # put your tests here -my $usedOk = use_ok('WebGUI::Asset::Wobject::Survey::ExpressionEngine'); - my $e = "WebGUI::Asset::Wobject::Survey::ExpressionEngine"; +use_ok($e); -WebGUI::Test->originalConfig('enableSurveyExpressionEngine'); $session->config->set( 'enableSurveyExpressionEngine', 0 ); is( $e->run( $session, 'jump { 1 } target' ), undef, "Nothing happens unless we turn on enableSurveyExpressionEngine in config" ); diff --git a/t/Asset/Wobject/Survey/Reports.t b/t/Asset/Wobject/Survey/Reports.t index c848c560f..3ad93209d 100644 --- a/t/Asset/Wobject/Survey/Reports.t +++ b/t/Asset/Wobject/Survey/Reports.t @@ -25,10 +25,6 @@ plan tests => 3; # put your tests here use_ok('WebGUI::Asset::Wobject::Survey'); -my ($survey); - -# Returns the contents of the Survey_tempReport table -sub getAll { $session->db->buildArrayRefOfHashRefs('select * from Survey_tempReport where assetId = ?', [$survey->getId]) } my $user = WebGUI::User->new( $session, 'new' ); WebGUI::Test->addToCleanup($user); @@ -39,6 +35,9 @@ $survey = $import_node->addChild( { className => 'WebGUI::Asset::Wobject::Survey WebGUI::Test->addToCleanup($survey); isa_ok($survey, 'WebGUI::Asset::Wobject::Survey'); +# Returns the contents of the Survey_tempReport table +sub getAll { $session->db->buildArrayRefOfHashRefs('select * from Survey_tempReport where assetId = ?', [$survey->getId]) } + my $sJSON = $survey->getSurveyJSON; # Load bare-bones survey, containing a single section (S0) @@ -125,5 +124,4 @@ superhashof({ value => 20, # e.g. score })]); - #vim:ft=perl diff --git a/t/AssetAspect/RssFeed.t b/t/AssetAspect/RssFeed.t index 0c950b983..b869e8446 100644 --- a/t/AssetAspect/RssFeed.t +++ b/t/AssetAspect/RssFeed.t @@ -184,10 +184,4 @@ cmp_bag( 'exportAssetCollateral: feed files exported, shawshank.html file' ); -##################################################### -# -# exportAssetCollateral -# -##################################################### - #vim:ft=perl diff --git a/t/Auth/mech.t b/t/Auth/mech.t index 895d8bed8..308fa9b29 100644 --- a/t/Auth/mech.t +++ b/t/Auth/mech.t @@ -70,6 +70,7 @@ my $asset }); $versionTag->commit; my $assetUrl = $baseUrl . $asset->get('url'); +WebGUI::Test->addToCleanup($versionTag); #---------------------------------------------------------------------------- # Tests diff --git a/t/Group.t b/t/Group.t index 963eb2b87..a0fda222f 100644 --- a/t/Group.t +++ b/t/Group.t @@ -96,6 +96,7 @@ plan tests => (168 + (scalar(@scratchTests) * 2) + scalar(@ipTests)); # incremen my $session = WebGUI::Test->session; $session->cache->remove('myTestKey'); +WebGUI::Test->addToCleanup(sub { $session->cache->remove('myTestKey'); }); foreach my $gid ('new', '') { my $g = WebGUI::Group->new($session, $gid); @@ -187,7 +188,7 @@ my $ldapProps = WebGUI::Test->getSmokeLDAPProps(); $session->db->setRow('ldapLink', 'ldapLinkId', $ldapProps, $ldapProps->{ldapLinkId}); my $ldap = WebGUI::LDAPLink->new($session, $ldapProps->{ldapLinkId}); is($ldap->getValue("ldapLinkId"),$ldapProps->{ldapLinkId},'ldap link created properly'); -addToCleanup($ldap); +WebGUI::Test->addToCleanup($ldap); my @shawshank; @@ -707,7 +708,6 @@ foreach my $idx (0..$#ipTests) { $ipTests[$idx]->{user} = $tcps[$idx]; } WebGUI::Test->addToCleanup(@tcps); -WebGUI::Test->addToCleanup(@sessionBank); my $gI = WebGUI::Group->new($session, "new"); WebGUI::Test->addToCleanup($gI); @@ -740,8 +740,8 @@ foreach my $ipTest (@ipTests) { note "Checking for user Visitor session leak"; - $ENV{REMOTE_ADDR} = '191.168.1.1'; my $remoteSession = WebGUI::Test->newSession; + $remoteSession->request->env->{REMOTE_ADDR} = '191.168.1.1'; $remoteSession->user({userId => 1}); my $localIpGroup = WebGUI::Group->new($session, 'new'); @@ -751,7 +751,7 @@ foreach my $ipTest (@ipTests) { ok !$remoteSession->user->isInGroup($localIpGroup->getId), 'Remote Visitor fails to be in the group'; my $localSession = WebGUI::Test->newSession; - $localSession->request->env->{'REMOTE_ADDR'} = '192.168.33.1'; + $localSession->request->env->{REMOTE_ADDR} = '192.168.33.1'; WebGUI::Test->addToCleanup($localIpGroup, $remoteSession, $localSession); $localSession->user({userId => 1}); $localIpGroup->clearCaches; @@ -828,8 +828,4 @@ ok( WebGUI::Group->vitalGroup(3), '... 3'); ok( WebGUI::Group->vitalGroup('pbgroup000000000000015'), '... pbgroup000000000000015'); ok(! WebGUI::Group->vitalGroup('27'), '... 27 is not vital'); -END { - $session->db->dbh->do('DROP TABLE IF EXISTS myUserTable'); - $session->cache->remove('myTestKey'); -} #vim:ft=perl diff --git a/t/Macro/L_loginBox.t b/t/Macro/L_loginBox.t index 376705cbc..43eb67524 100644 --- a/t/Macro/L_loginBox.t +++ b/t/Macro/L_loginBox.t @@ -30,7 +30,7 @@ $session->user({userId=>1}); ##known user agent. Since it usually contains a reference to %ENV, ##you can't just modify that hash since it's protected my $env = $session->request->env; -$env->{'HTTP_USER_AGENT'} = 'mozilla'; +$session->request->headers->user_agent('mozilla'); $env->{'QUERY_STRING'} = 'func=search'; my $i18n = WebGUI::International->new($session,'Macro_L_loginBox'); @@ -102,7 +102,7 @@ is($vars{'form.footer'}, WebGUI::Form::formFooter($session), 'form.footer'); is( $vars{'form.returnUrl'}, WebGUI::Form::hidden( $session, { name => 'returnUrl', - value => $session->url->page($session->env->get("QUERY_STRING")), + value => $session->url->page($session->request->env->{"QUERY_STRING"}), }), 'form.returnUrl' ); @@ -119,7 +119,7 @@ like($vars{'username.form'}, qr/size="16"/, 'boxSize set in username.form'); like($vars{'password.form'}, qr/size="16"/, 'boxSize set in password.form'); ##Change browser to be MSIE like and watch boxSize change -$env->{'HTTP_USER_AGENT'} = 'msie'; +$session->request->headers->user_agent('msie'); $output = WebGUI::Macro::L_loginBox::process($session,24,'Log In',$template->getId); %vars = simpleTextParser($output); diff --git a/t/Mail/Send.t b/t/Mail/Send.t index 31b3d0cc8..566563500 100644 --- a/t/Mail/Send.t +++ b/t/Mail/Send.t @@ -223,7 +223,7 @@ is($dbMail->getMimeEntity->head->get('Subject'), "=?UTF-8?Q?H=C3=84ufige=20Frage $session->setting->set('mailFooter', $origFooter); } -my $smtpServerOk; +my $smtpServerOk = 0; #---------------------------------------------------------------------------- # Test emailOverride diff --git a/t/Paths.t b/t/Paths.t index 323ebe95c..0c2220e70 100644 --- a/t/Paths.t +++ b/t/Paths.t @@ -15,7 +15,7 @@ my @pathMethods = qw( extras defaultUploads defaultCreateSQL - var + share ); can_ok 'WebGUI::Paths', @pathMethods; diff --git a/t/Session/CheckClient.t b/t/Session/CheckClient.t index 1ea0aaab6..b43e29eb6 100644 --- a/t/Session/CheckClient.t +++ b/t/Session/CheckClient.t @@ -185,9 +185,9 @@ sub testCount { plan tests => testCount() ; foreach my $testSet (@testArray) { - $session->request->env->{HTTP_USER_AGENT} = $testSet->{agent}; + $session->request->headers->user_agent($testSet->{agent}); $session->request->env->{REMOTE_ADDR} = $testSet->{address} || '69.42.78.32'; - my $output = $session->env->requestNotViewed; + my $output = $session->request->requestNotViewed; is($output, $testSet->{output}, $testSet->{comment}); } diff --git a/t/Session/Env.t b/t/Session/Env.t deleted file mode 100644 index 45ea04ce2..000000000 --- a/t/Session/Env.t +++ /dev/null @@ -1,28 +0,0 @@ -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -use FindBin; -use strict; -use lib "$FindBin::Bin/../lib"; - -use WebGUI::Test; -use WebGUI::Session; - -use Test::More tests => 2; # increment this value for each test you create - -my $session = WebGUI::Test->session; - - -cmp_ok($session->env->get("REMOTE_ADDR"), 'ne', "", "get() one valid entry"); - -my $env = $session->env; -$session->request->env->{REMOTE_ADDR} = '192.168.0.2'; -is ($env->getIp, '192.168.0.2', 'getIp'); - diff --git a/t/Session/ErrorHandler.t b/t/Session/ErrorHandler.t index 4ccf3011d..07d13821f 100644 --- a/t/Session/ErrorHandler.t +++ b/t/Session/ErrorHandler.t @@ -47,7 +47,7 @@ WebGUI::Test->interceptLogging( sub { is($log_data->{warn}, "Second warning", "warn: Log4perl called again"); $eh->security('Shields up, red alert'); my $security = sprintf '%s (%d) connecting from %s attempted to %s', - $session->user->username, $session->user->userId, $session->env->getIp, 'Shields up, red alert'; + $session->user->username, $session->user->userId, $session->request->address, 'Shields up, red alert'; is($log_data->{warn}, $security, 'security: calls warn with username, userId and IP address'); }); diff --git a/t/Session/Scratch.t b/t/Session/Scratch.t index 1a3066dc4..ac690e23d 100644 --- a/t/Session/Scratch.t +++ b/t/Session/Scratch.t @@ -1,132 +1,133 @@ -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -use FindBin; -use strict; -use lib "$FindBin::Bin/../lib"; - -use WebGUI::Test; -use WebGUI::Session; - -use Test::More tests => 62; # increment this value for each test you create -use Test::Deep; - -my $session = WebGUI::Test->session; - -my $scratch = $session->scratch; -my $maxCount = 10; - -$scratch->deleteAll(); - -for (my $count = 1; $count <= $maxCount; $count++){ - $scratch->set("Test$count",$count); -} - -for (my $count = 1; $count <= $maxCount; $count++){ - is($scratch->get("Test$count"), $count, "Passed set/get $count"); -} - -is($scratch->delete("nonExistantVariable"), undef, 'delete returns value if deleted, otherwise undef'); -is($scratch->delete("Test1"), 1, 'delete returns number deleted'); -is($scratch->delete(), undef, 'delete without name of variable to delete returns undef'); -is($scratch->get("Test1"), undef, "delete()"); - -$scratch->deleteAll; -is($scratch->get("Test2"), undef, "deleteAll()"); - -my $testScratchSession = $scratch->session(); - -is($testScratchSession, $session, "session()"); - -##Build some variables to test database persistency - -for (my $count = 1; $count <= $maxCount; $count++){ - $scratch->set("dBase$count",$count); - my ($setValue) = $session->db->quickArray("select value from userSessionScratch where sessionId=? and name=?",[$session->getId, "dBase$count"]); - is($setValue, $count, "database store for set on $count"); -} - -##Creating a new session with the previous session's Id should clone the scratch data -my $newSession = WebGUI::Session->open(WebGUI::Test->file, undef, $session->getId); - -is($newSession->getId, $session->getId, "Successful session duplication"); - -for (my $count = 1; $count <= $maxCount; $count++){ - is($newSession->scratch->get("dBase$count"), $count, "Passed set/get $count"); -} - -$scratch->set("dBase5", 15); - -my ($changedValue) = $session->db->quickArray("select value from userSessionScratch where sessionId=? and name=?",[$session->getId, "dBase5"]); -is($changedValue, 15, "changing stored scratch value"); -is($scratch->get("dBase5"), 15, "checking cached scratch value"); - -$newSession->scratch->deleteAll; -$newSession->close; - -is($scratch->set('retVal',2), 1, 'set returns number of rows affected'); -is($scratch->set(), undef, 'set returns undef unless it gets a name'); -is($scratch->set('','value'), undef, 'set returns undef unless it gets a name even if there is a value'); - -############################################ -# -# Multi-session deleting -# -############################################ - -my @sessionBank = map { WebGUI::Session->open(WebGUI::Test->file) } 0..3; - -WebGUI::Test->addToCleanup(@sessionBank); - -##Set variables to be deleted by name -foreach my $i (0..3) { - $sessionBank[$i]->scratch->set('deletableName', $i); -} -##Set variables to be deleted by name and value -$sessionBank[0]->scratch->set('deletableValue', 'a'); -$sessionBank[1]->scratch->set('deletableValue', 'a'); -$sessionBank[2]->scratch->set('deletableValue', 'b'); -$sessionBank[2]->scratch->set('falseValue', ''); -$sessionBank[3]->scratch->set('deletableValue', 'c'); -$sessionBank[3]->scratch->set('falseValue', '0'); - -is($scratch->deleteName(), undef, 'deleteName without name of variable to delete returns undef'); -is($sessionBank[2]->scratch->deleteName("deletableName"), 4, 'deleteName returns number of elements deleted'); -is($sessionBank[2]->scratch->get("deletableName"), undef, 'deleteName clears session cached in the object that calls it'); -is($sessionBank[1]->scratch->get('deletableName'), 1, "deleteName does not change session cached vriables"); -my ($entries) = $session->db->quickArray("select count(name) from userSessionScratch where name=?",['deletableName']); -is($entries, 0, "deleteName deletes entries in the database"); - -is($sessionBank[1]->scratch->deleteNameByValue('deletableValue', 'a'), 2, 'deleteNameByValue deleted two rows'); -($entries) = $session->db->quickArray("select count(name) from userSessionScratch where name=?",['deletableValue']); -is($entries, 2, "deleteNameByValue deleted entries in the database"); -is($sessionBank[1]->scratch->get('deletableValue'), undef, 'deleteNameByValue removes session cache in object that called it...'); -is($sessionBank[0]->scratch->get('deletableValue'), 'a', 'but not in any other object whose database entry was cleared'); -cmp_bag($session->db->buildArrayRef('select value from userSessionScratch where name=?',['deletableValue']), ['b', 'c'], 'deleteNameByValue values that were not deleted'); - -is($sessionBank[2]->scratch->deleteNameByValue('deletableValue', 'c'), 1, 'deleteNameByValue deleted one row'); - -is($sessionBank[0]->scratch->deleteNameByValue('',35), undef, 'deleteNameByValue requires a NAME'); -is($sessionBank[0]->scratch->deleteNameByValue('scratch'), undef, 'deleteNameByValue requires a value'); -is($sessionBank[0]->scratch->deleteNameByValue('',''), undef, 'deleteNameByValue require a NAME and a VALUE'); -is($sessionBank[3]->scratch->deleteNameByValue('falseValue','0'), 1, 'deleteNameByValue will delete values that are false (0)'); -is($sessionBank[2]->scratch->deleteNameByValue('falseValue',''), 1, "deleteNameByValue will delete values that are false ('')"); - -$scratch->setLanguageOverride('English'); -is($scratch->getLanguageOverride, 'English', 'session scratch language is not correctly set'); -$scratch->removeLanguageOverride; -is($scratch->getLanguageOverride, undef, 'The session scratch variable language is not removed'); -$scratch->setLanguageOverride('myimmaginarylanguagethatisnotinstalled'); -is($scratch->getLanguageOverride, undef, 'A non-existing language is set'); -$scratch->setLanguageOverride('English'); -$scratch->setLanguageOverride(); -is($scratch->getLanguageOverride, 'English', 'A empty string is falsely recognised as a language'); - -#vim:ft=perl +#------------------------------------------------------------------- +# WebGUI is Copyright 2001-2009 Plain Black Corporation. +#------------------------------------------------------------------- +# Please read the legal notices (docs/legal.txt) and the license +# (docs/license.txt) that came with this distribution before using +# this software. +#------------------------------------------------------------------- +# http://www.plainblack.com info@plainblack.com +#------------------------------------------------------------------- + +use FindBin; +use strict; +use lib "$FindBin::Bin/../lib"; + +use WebGUI::Test; +use WebGUI::Session; + +use Test::More tests => 62; # increment this value for each test you create +use Test::Deep; + +my $session = WebGUI::Test->session; + +my $scratch = $session->scratch; +my $maxCount = 10; + +$scratch->deleteAll(); + +for (my $count = 1; $count <= $maxCount; $count++){ + $scratch->set("Test$count",$count); +} + +for (my $count = 1; $count <= $maxCount; $count++){ + is($scratch->get("Test$count"), $count, "Passed set/get $count"); +} + +is($scratch->delete("nonExistantVariable"), undef, 'delete returns value if deleted, otherwise undef'); +is($scratch->delete("Test1"), 1, 'delete returns number deleted'); +is($scratch->delete(), undef, 'delete without name of variable to delete returns undef'); +is($scratch->get("Test1"), undef, "delete()"); + +$scratch->deleteAll; +is($scratch->get("Test2"), undef, "deleteAll()"); + +my $testScratchSession = $scratch->session(); + +is($testScratchSession, $session, "session()"); + +##Build some variables to test database persistency + +for (my $count = 1; $count <= $maxCount; $count++){ + $scratch->set("dBase$count",$count); + my ($setValue) = $session->db->quickArray("select value from userSessionScratch where sessionId=? and name=?",[$session->getId, "dBase$count"]); + is($setValue, $count, "database store for set on $count"); +} + +##Creating a new session with the previous session's Id should clone the scratch data +my $newSession = WebGUI::Session->open(WebGUI::Test->file, undef, $session->getId); +WebGUI::Test->addToCleanup($newSession); + +is($newSession->getId, $session->getId, "Successful session duplication"); + +for (my $count = 1; $count <= $maxCount; $count++){ + is($newSession->scratch->get("dBase$count"), $count, "Passed set/get $count"); +} + +$scratch->set("dBase5", 15); + +my ($changedValue) = $session->db->quickArray("select value from userSessionScratch where sessionId=? and name=?",[$session->getId, "dBase5"]); +is($changedValue, 15, "changing stored scratch value"); +is($scratch->get("dBase5"), 15, "checking cached scratch value"); + +$newSession->scratch->deleteAll; +$newSession->close; + +is($scratch->set('retVal',2), 1, 'set returns number of rows affected'); +is($scratch->set(), undef, 'set returns undef unless it gets a name'); +is($scratch->set('','value'), undef, 'set returns undef unless it gets a name even if there is a value'); + +############################################ +# +# Multi-session deleting +# +############################################ + +my @sessionBank = map { WebGUI::Session->open(WebGUI::Test->file) } 0..3; + +WebGUI::Test->addToCleanup(@sessionBank); + +##Set variables to be deleted by name +foreach my $i (0..3) { + $sessionBank[$i]->scratch->set('deletableName', $i); +} +##Set variables to be deleted by name and value +$sessionBank[0]->scratch->set('deletableValue', 'a'); +$sessionBank[1]->scratch->set('deletableValue', 'a'); +$sessionBank[2]->scratch->set('deletableValue', 'b'); +$sessionBank[2]->scratch->set('falseValue', ''); +$sessionBank[3]->scratch->set('deletableValue', 'c'); +$sessionBank[3]->scratch->set('falseValue', '0'); + +is($scratch->deleteName(), undef, 'deleteName without name of variable to delete returns undef'); +is($sessionBank[2]->scratch->deleteName("deletableName"), 4, 'deleteName returns number of elements deleted'); +is($sessionBank[2]->scratch->get("deletableName"), undef, 'deleteName clears session cached in the object that calls it'); +is($sessionBank[1]->scratch->get('deletableName'), 1, "deleteName does not change session cached vriables"); +my ($entries) = $session->db->quickArray("select count(name) from userSessionScratch where name=?",['deletableName']); +is($entries, 0, "deleteName deletes entries in the database"); + +is($sessionBank[1]->scratch->deleteNameByValue('deletableValue', 'a'), 2, 'deleteNameByValue deleted two rows'); +($entries) = $session->db->quickArray("select count(name) from userSessionScratch where name=?",['deletableValue']); +is($entries, 2, "deleteNameByValue deleted entries in the database"); +is($sessionBank[1]->scratch->get('deletableValue'), undef, 'deleteNameByValue removes session cache in object that called it...'); +is($sessionBank[0]->scratch->get('deletableValue'), 'a', 'but not in any other object whose database entry was cleared'); +cmp_bag($session->db->buildArrayRef('select value from userSessionScratch where name=?',['deletableValue']), ['b', 'c'], 'deleteNameByValue values that were not deleted'); + +is($sessionBank[2]->scratch->deleteNameByValue('deletableValue', 'c'), 1, 'deleteNameByValue deleted one row'); + +is($sessionBank[0]->scratch->deleteNameByValue('',35), undef, 'deleteNameByValue requires a NAME'); +is($sessionBank[0]->scratch->deleteNameByValue('scratch'), undef, 'deleteNameByValue requires a value'); +is($sessionBank[0]->scratch->deleteNameByValue('',''), undef, 'deleteNameByValue require a NAME and a VALUE'); +is($sessionBank[3]->scratch->deleteNameByValue('falseValue','0'), 1, 'deleteNameByValue will delete values that are false (0)'); +is($sessionBank[2]->scratch->deleteNameByValue('falseValue',''), 1, "deleteNameByValue will delete values that are false ('')"); + +$scratch->setLanguageOverride('English'); +is($scratch->getLanguageOverride, 'English', 'session scratch language is not correctly set'); +$scratch->removeLanguageOverride; +is($scratch->getLanguageOverride, undef, 'The session scratch variable language is not removed'); +$scratch->setLanguageOverride('myimmaginarylanguagethatisnotinstalled'); +is($scratch->getLanguageOverride, undef, 'A non-existing language is set'); +$scratch->setLanguageOverride('English'); +$scratch->setLanguageOverride(); +is($scratch->getLanguageOverride, 'English', 'A empty string is falsely recognised as a language'); + +#vim:ft=perl diff --git a/t/Session/Url.t b/t/Session/Url.t index f8b95f00d..6f3a978aa 100644 --- a/t/Session/Url.t +++ b/t/Session/Url.t @@ -50,8 +50,7 @@ my @getRefererUrlTests = ( ); use Test::More; -use Test::MockObject::Extends; -plan tests => 84 + scalar(@getRefererUrlTests); +plan tests => 82 + scalar(@getRefererUrlTests); my $session = WebGUI::Test->session; my $request = $session->request; @@ -258,12 +257,8 @@ $session->asset($sessionAsset); # ####################################### -$env->{'HTTP_REFERER'} = 'test'; - -is($session->env->get('HTTP_REFERER'), 'test', 'testing overridden ENV'); - foreach my $test (@getRefererUrlTests) { - $env->{HTTP_REFERER} = $test->{input}; + $session->request->referer($test->{input}); is($session->url->getRefererUrl, $test->{output}, $test->{comment}); } diff --git a/t/Shop/Address.t b/t/Shop/Address.t index c0fc7babc..081f358c5 100644 --- a/t/Shop/Address.t +++ b/t/Shop/Address.t @@ -31,7 +31,7 @@ my $session = WebGUI::Test->session; #---------------------------------------------------------------------------- # Tests -plan tests => 28; +plan tests => 20; #---------------------------------------------------------------------------- # put your tests here @@ -42,13 +42,13 @@ my $address; ####################################################################### # -# create +# new # ####################################################################### -eval { $address = WebGUI::Shop::Address->create(); }; +eval { $address = WebGUI::Shop::Address->new(); }; $e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidObject', 'create takes exception to not giving it an address book'); +isa_ok($e, 'WebGUI::Error::InvalidObject', 'new takes exception to not giving it an address book'); cmp_deeply( $e, methods( @@ -57,12 +57,12 @@ cmp_deeply( got => '', param => undef, ), - 'create takes exception to not giving it address book', + '... parameter check', ); -eval { $address = WebGUI::Shop::Address->create($session); }; +eval { $address = WebGUI::Shop::Address->new($session); }; $e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidObject', 'create takes exception to not giving it a session variable'); +isa_ok($e, 'WebGUI::Error::InvalidObject', 'new takes exception to giving it a session variable'); cmp_deeply( $e, methods( @@ -71,29 +71,17 @@ cmp_deeply( got => 'WebGUI::Session', param => $session, ), - 'create takes exception to giving it a session variable', + '... parameter check', ); $session->user({userId => 3}); -my $book = WebGUI::Shop::AddressBook->create($session); -my $book2 = WebGUI::Shop::AddressBook->create($session); +my $book = WebGUI::Shop::AddressBook->new($session); +my $book2 = WebGUI::Shop::AddressBook->new($session); WebGUI::Test->addToCleanup($book, $book2); -eval { $address = WebGUI::Shop::Address->create($book); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidParam', 'create takes exception to not giving it address data'); -cmp_deeply( - $e, - methods( - error => 'Need a hash reference.', - param => undef, - ), - 'create takes exception to giving it address data', -); - -$address = WebGUI::Shop::Address->create($book, {}); -isa_ok($address, 'WebGUI::Shop::Address', 'create returns an Address object with an empty hashref'); +$address = WebGUI::Shop::Address->new($book, {}); +isa_ok($address, 'WebGUI::Shop::Address', 'new returns an Address object with an empty hashref'); ####################################################################### # @@ -126,28 +114,29 @@ is($address->getId, $address->get('addressId'), 'getId is an alias for get addre cmp_deeply( $address->get, { - label => undef, - firstName => undef, - lastName => undef, - address1 => undef, - address2 => undef, - address3 => undef, - city => undef, - state => undef, - country => undef, - code => undef, - phoneNumber => undef, - email => undef, - organization => undef, - addressId => ignore(), #checked elsewhere + label => '', + firstName => '', + lastName => '', + address1 => '', + address2 => '', + address3 => '', + city => '', + state => '', + country => '', + code => '', + phoneNumber => '', + email => '', + organization => '', + addressId => ignore(), #checked elsewhere addressBookId => $book->getId, + addressBook => $book, }, 'get the whole thing and check a new, blank object' ); my $addressGuts = $address->get(); $addressGuts->{'label'} = 'hacked'; -is($address->get('label'), undef, 'get returns a safe copy of the hash'); +is($address->get('label'), '', 'get returns a safe copy of the hash'); ####################################################################### # @@ -172,46 +161,6 @@ $address->update({ addressBookId => $book->getId }); # ####################################################################### -eval { $address = WebGUI::Shop::Address->new(); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidObject', 'new takes exception to not giving it an address book'); -cmp_deeply( - $e, - methods( - error => 'Need an address book.', - expected => 'WebGUI::Shop::AddressBook', - got => '', - param => ignore, - ), - 'new takes exception to not giving it address book', -); - -eval { $address = WebGUI::Shop::Address->new($session); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidObject', 'new takes exception to not giving it a session variable'); -cmp_deeply( - $e, - methods( - error => 'Need an address book.', - expected => 'WebGUI::Shop::AddressBook', - got => 'WebGUI::Session', - param => ignore, - ), - 'new takes exception to giving it a session variable', -); - -eval { $address = WebGUI::Shop::Address->new($book); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidParam', 'new takes exception to not giving it an address to instanciate'); -cmp_deeply( - $e, - methods( - error => 'Need an addressId.', - param => undef, - ), - 'new takes exception to giving it an address to instanciate', -); - eval { $address = WebGUI::Shop::Address->new($book, 'neverAnId'); }; $e = Exception::Class->caught(); isa_ok($e, 'WebGUI::Error::ObjectNotFound', 'new takes exception to not giving it a bad address instanciate'); diff --git a/t/Shop/AddressBook.t b/t/Shop/AddressBook.t index 3938f747c..891fa522e 100644 --- a/t/Shop/AddressBook.t +++ b/t/Shop/AddressBook.t @@ -32,7 +32,7 @@ my $session = WebGUI::Test->session; #---------------------------------------------------------------------------- # Tests -plan tests => 26; +plan tests => 23; #---------------------------------------------------------------------------- # put your tests here @@ -60,17 +60,7 @@ cmp_deeply( 'new takes exception to not giving it a session object', ); -eval { $book = WebGUI::Shop::AddressBook->new($session); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidParam', 'new takes exception to not giving it a addressBookId'); -cmp_deeply( - $e, - methods( - error => 'Need an addressBookId.', - ), - 'new takes exception to not giving it a addressBook Id', -); - +$session->user({userId => 3}); eval { $book = WebGUI::Shop::AddressBook->new($session, 'neverAGUID'); }; $e = Exception::Class->caught(); isa_ok($e, 'WebGUI::Error::ObjectNotFound', 'new takes exception to not giving it an existing addressBookId'); @@ -82,31 +72,12 @@ cmp_deeply( ), 'new takes exception to not giving it a addressBook Id', ); - - -####################################################################### -# -# create -# -####################################################################### - -eval { $book = WebGUI::Shop::AddressBook->create(); }; -$e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidParam', 'create takes exception to not giving it a session object'); -cmp_deeply( - $e, - methods( - error => 'Need a session.', - expected => 'WebGUI::Session', - got => '', - ), - 'create takes exception to not giving it a session object', -); - $session->user({userId => 1}); -eval { $book = WebGUI::Shop::AddressBook->create($session); }; + + +eval { $book = WebGUI::Shop::AddressBook->new($session); }; $e = Exception::Class->caught(); -isa_ok($e, 'WebGUI::Error::InvalidParam', 'create takes exception to making an address book for Visitor'); +isa_ok($e, 'WebGUI::Error::InvalidParam', 'new takes exception to making an address book for Visitor'); cmp_deeply( $e, methods( @@ -116,22 +87,23 @@ cmp_deeply( ); $session->user({userId => 3}); -$book = WebGUI::Shop::AddressBook->create($session); -isa_ok($book, 'WebGUI::Shop::AddressBook', 'create returns the right kind of object'); +$book = WebGUI::Shop::AddressBook->new($session); +isa_ok($book, 'WebGUI::Shop::AddressBook', 'new returns the right kind of object'); isa_ok($book->session, 'WebGUI::Session', 'session method returns a session object'); is($session->getId, $book->session->getId, 'session method returns OUR session object'); -ok($session->id->valid($book->getId), 'create makes a valid GUID style addressBookId'); +ok($session->id->valid($book->getId), 'new makes a valid GUID style addressBookId'); -is($book->get('userId'), 3, 'create uses $session->user to get the userid for this book'); +is($book->get('userId'), 3, 'new uses $session->user to get the userid for this book'); +is($book->userId, 3, '... testing direct accessor'); my $bookCount = $session->db->quickScalar('select count(*) from addressBook'); is($bookCount, 1, 'only 1 address book was created'); -my $alreadyHaveBook = WebGUI::Shop::AddressBook->create($session); -isnt($book->getId, $alreadyHaveBook->getId, 'creating an addressbook as visitor, even when you already have one, always returns a new one'); +my $alreadyHaveBook = WebGUI::Shop::AddressBook->new($session); +isnt($book->getId, $alreadyHaveBook->getId, 'creating an addressbook, even when you already have one, always returns a new one'); ####################################################################### # @@ -177,15 +149,16 @@ $book->update({ lastShipId => $address1->getId, lastPayId => $address2->getId}); cmp_deeply( $book->get(), { - userId => ignore(), - addressBookId => ignore(), + userId => ignore(), + addressBookId => ignore(), defaultAddressId => ignore(), }, - 'update updates the object properties cache' + 'update does not add new properties to the object' ); my $bookClone = WebGUI::Shop::AddressBook->new($session, $book->getId); +delete $book->{_addressCache}; cmp_deeply( $bookClone, $book, @@ -223,13 +196,14 @@ my $otherSession = WebGUI::Test->newSession; my $mergeUser = WebGUI::User->create($otherSession); WebGUI::Test->addToCleanup($mergeUser); $otherSession->user({user => $mergeUser}); -my $adminBook = WebGUI::Shop::AddressBook->create($otherSession); +my $adminBook = WebGUI::Shop::AddressBook->new($otherSession); WebGUI::Test->addToCleanup($adminBook); my $goodAddress = $adminBook->addAddress({label => 'first'}); my $session2 = WebGUI::Test->newSession; $session2->user({user => $mergeUser}); my $bookAdmin = WebGUI::Shop::AddressBook->newByUserId($session2); +WebGUI::Test->addToCleanup($bookAdmin); cmp_bag( [ map { $_->getId } @{ $bookAdmin->getAddresses } ], diff --git a/t/Shop/Cart.t b/t/Shop/Cart.t index 76fd04a75..11aa2e347 100644 --- a/t/Shop/Cart.t +++ b/t/Shop/Cart.t @@ -33,7 +33,7 @@ my $i18n = WebGUI::International->new($session, "Shop"); #---------------------------------------------------------------------------- # Tests -plan tests => 30; # Increment this number for each test you create +plan tests => 29; # Increment this number for each test you create #---------------------------------------------------------------------------- # put your tests here @@ -81,11 +81,7 @@ $item->update({shippingAddressId => "XXXX"}); is($item->get("shippingAddressId"), "XXXX", "Can set shippingAddressId in the cart item properties."); $item->update({shippingAddressId => undef}); -my $now = time(); -$cart->update({creationDate => $now}); -is($cart->get('creationDate'), $now, 'update: set creationDate'); - -like($cart->getId, qr/[A-Za-z0-9\_\-]{22}/, "Id looks like a guid."); +ok($session->id->valid($cart->getId), "Id looks like a guid."); is(ref($cart->get), "HASH", "Cart properties are a hash reference."); is($cart->get("sessionId"), $session->getId, "Can retrieve a value from the cart properties."); @@ -154,8 +150,8 @@ is( $cart->readyForCheckout, 0, 'Cannot checkout an empty cart' ); is($session->db->quickScalar("select count(*) from cartItem where cartId=?",[ $cart->getId ]), 0, "Items are removed from cart."); -my $session2 = WebGUI::Session->open(WebGUI::Test->file); -addToCleanup($session2); +my $session2 = WebGUI::Test->newSession; +WebGUI::Test->addToCleanup($session2); $session2->user({userId => 3}); my $cart2 = WebGUI::Shop::Cart->newBySession($session2); WebGUI::Test->addToCleanup($cart2); diff --git a/t/Shop/Pay.t b/t/Shop/Pay.t index 9091860ff..420ea995d 100644 --- a/t/Shop/Pay.t +++ b/t/Shop/Pay.t @@ -30,9 +30,6 @@ use WebGUI::TestException; # Init my $session = WebGUI::Test->session; -#---------------------------------------------------------------------------- -# Tests - #---------------------------------------------------------------------------- # put your tests here @@ -220,6 +217,7 @@ cmp_bag( ####################################################################### done_testing(); +<<<<<<< HEAD #---------------------------------------------------------------------------- # Cleanup @@ -227,3 +225,5 @@ END { defined $newDriver and $newDriver->delete; defined $newDriver and $anotherDriver->delete; } +======= +>>>>>>> upstream/WebGUI8 diff --git a/t/Shop/Ship.t b/t/Shop/Ship.t index 383d791fe..a96068343 100644 --- a/t/Shop/Ship.t +++ b/t/Shop/Ship.t @@ -205,9 +205,4 @@ $cart->delete; done_testing(); -#---------------------------------------------------------------------------- -# Cleanup -END { - $driver->delete; - $driver2->delete; -} +#vim:ft=perl diff --git a/t/Shop/TaxDriver/Generic.t b/t/Shop/TaxDriver/Generic.t index 3260045be..6b9c03965 100644 --- a/t/Shop/TaxDriver/Generic.t +++ b/t/Shop/TaxDriver/Generic.t @@ -668,10 +668,4 @@ sub getAddExceptions { }, ]; } - -#---------------------------------------------------------------------------- -# Cleanup -END { - $session->db->write('delete from tax_generic_rates'); -} #vim:ft=perl diff --git a/t/Shop/Vendor.t b/t/Shop/Vendor.t index cccc56c0d..708e1b78c 100644 --- a/t/Shop/Vendor.t +++ b/t/Shop/Vendor.t @@ -31,14 +31,14 @@ my $session = WebGUI::Test->session; #---------------------------------------------------------------------------- # Tests -plan tests => 49; +plan tests => 55; #---------------------------------------------------------------------------- # put your tests here my $loaded = use_ok('WebGUI::Shop::Vendor'); -my ($vendor, $guard, $numberOfVendors); +my ($vendor); my ($fence, $fenceCopy); my $fenceUser = WebGUI::User->new($session, 'new'); $fenceUser->username('fence'); @@ -46,8 +46,6 @@ my $guardUser = WebGUI::User->new($session, 'new'); $guardUser->username('guard'); WebGUI::Test->addToCleanup($fenceUser, $guardUser); -$numberOfVendors = scalar @{ WebGUI::Shop::Vendor->getVendors($session) }; - ####################################################################### # # new @@ -69,6 +67,19 @@ cmp_deeply( 'new: requires a session variable', ); +eval { $vendor = WebGUI::Shop::Vendor->new({ userId => 3, }); }; +$e = Exception::Class->caught(); +isa_ok($e, 'WebGUI::Error::InvalidObject', 'new via property hash takes an exception to not giving it a session variable'); +cmp_deeply( + $e, + methods( + error => 'Need a session.', + got => '', + expected => 'WebGUI::Session', + ), + '... requires a session variable', +); + eval { $vendor = WebGUI::Shop::Vendor->new($session); }; $e = Exception::Class->caught(); isa_ok($e, 'WebGUI::Error::InvalidParam', 'new takes an exception to not giving it a vendor id to instanciate'); @@ -92,6 +103,13 @@ cmp_deeply( 'new: requires a valid vendorId', ); +my $test_vendor = eval { WebGUI::Shop::Vendor->new({ session => $session, }); }; +$e = Exception::Class->caught(); +ok(!$e, 'new via property hash with session'); +isa_ok($test_vendor, 'WebGUI::Shop::Vendor', '... returns correct type of object'); +WebGUI::Test->addToCleanup($test_vendor); +$test_vendor->delete; + eval { $vendor = WebGUI::Shop::Vendor->new($session, 'defaultvendor000000000'); }; $e = Exception::Class->caught(); ok(!$e, 'No exception thrown'); @@ -125,15 +143,18 @@ cmp_deeply( my $now = WebGUI::DateTime->new($session, time); eval { $fence = WebGUI::Shop::Vendor->create($session, { userId => $fenceUser->userId, }); }; -WebGUI::Test->addToCleanup($fence); $e = Exception::Class->caught(); -ok(!$e, 'No exception thrown by create'); +ok(!$e, 'No exception thrown by create') || + diag $@; isa_ok($vendor, 'WebGUI::Shop::Vendor', 'create returns correct type of object'); +WebGUI::Test->addToCleanup($fence); +is $fence->userId, $fenceUser->userId, 'object made with create has properties initialized correctly'; +$fence->write; ok($fence->get('dateCreated'), 'dateCreated is not null'); my $dateCreated = WebGUI::DateTime->new($session, $fence->get('dateCreated')); my $deltaDC = $dateCreated - $now; -cmp_ok( $deltaDC->seconds, '<=', 2, 'dateCreated is set properly'); +cmp_ok( $deltaDC->in_units('seconds'), '<=', 2, 'dateCreated is set properly'); ####################################################################### # @@ -144,12 +165,15 @@ cmp_ok( $deltaDC->seconds, '<=', 2, 'dateCreated is set properly'); ok($session->id->valid($fence->get('vendorId')), 'get: vendorId is a valid guid'); is($fence->getId, $fence->get('vendorId'), 'get: getId is an alias for get vendorId'); is($fence->get('userId'), $fenceUser->userId, 'get: userId'); -is($fence->get('name'), undef, 'get: by default, no name is set'); +is($fence->get('name'), '', 'get: by default, no name is set'); $fence->update({name => 'Bogs Diamond'}); is($fence->get('name'), 'Bogs Diamond', 'get: get name'); is($fence->get('userId'), $fenceUser->userId, 'get: updating name did not affect userId'); +my $fence_fresh = WebGUI::Shop::Vendor->new($session, $fence->vendorId); +is($fence->name, 'Bogs Diamond', 'update wrote to the db'); + my $newProps = { name => 'Warden Norton', url => 'http://www.shawshank.com', @@ -170,7 +194,6 @@ cmp_deeply( paymentInformation => ignore(), vendorId => ignore(), preferredPaymentType => ignore(), - paymentAddressId => ignore(), dateCreated => ignore(), url => 'http://www.shawshank.com', userId => $fenceUser->userId, @@ -246,10 +269,11 @@ my $defaultVendor = WebGUI::Shop::Vendor->newByUserId($session, 3); # ####################################################################### -$guard = WebGUI::Shop::Vendor->create($session, { userId => $guardUser->userId, name => q|Warden Norton|}); +my $guard = WebGUI::Shop::Vendor->create($session, { userId => $guardUser->userId, name => q|Warden Norton|}); +$guard->write; WebGUI::Test->addToCleanup($guard); my $vendorsList = WebGUI::Shop::Vendor->getVendors($session); -cmp_deeply( +cmp_bag( $vendorsList, [ $guard, $fence, $defaultVendor, ], 'getVendors returns all 3 vendors as an array ref' diff --git a/t/Upgrade.t b/t/Upgrade.t new file mode 100644 index 000000000..c184e1386 --- /dev/null +++ b/t/Upgrade.t @@ -0,0 +1,183 @@ +use strict; +use warnings; +no warnings 'redefine'; + +use FindBin; +use strict; +use lib "$FindBin::Bin/lib"; + +use WebGUI::Test import => [qw(collateral addToCleanup)]; +use Test::More; + +use Test::MockObject; +use Test::MockObject::Extends; +use File::Temp; +use File::Path qw(make_path); + +use WebGUI::Paths; +use WebGUI::Upgrade; +use WebGUI::Session::Id; +use WebGUI::VersionTag; +use Try::Tiny; +use Capture::Tiny qw(capture); + +local *WebGUI::Paths::siteConfigs; +local *WebGUI::Paths::upgrades; + +our $configFile = WebGUI::Test->config->pathToFile; +{ + no warnings 'redefine'; + *WebGUI::Paths::siteConfigs = sub { $configFile }; +} + +my $upgrade = Test::MockObject::Extends->new( + WebGUI::Upgrade->new( + createBackups => 0, + useMaintenanceMode => 0, + ), +); +$upgrade->set_always('getCurrentVersion', '8.0.0'); +$upgrade->set_always('getCodeVersion', '8.4.3'); +$upgrade->set_true('markVersionUpgrade'); + +{ + no warnings 'redefine'; + *WebGUI::Paths::upgrades = sub { collateral('Upgrade', 'non-existant') } ; +} +ok ! try { $upgrade->calcUpgradePath('8.0.0', '8.4.3'); 1 }, "calcUpgradePath dies when upgrades path doesn't exist"; + +{ + no warnings 'redefine'; + *WebGUI::Paths::upgrades = sub { collateral('Upgrade', 'impossible') } ; +} +ok ! try { $upgrade->calcUpgradePath('8.0.0', '8.4.3'); 1 }, 'calcUpgradePath dies when unable to find a path'; + +{ + no warnings 'redefine'; + *WebGUI::Paths::upgrades = sub { collateral('Upgrade', 'backtrack') } ; +} +is_deeply + [ $upgrade->calcUpgradePath('8.0.0', '8.4.3') ], + [qw( 8.0.0-8.1.0 8.1.0-8.2.0 8.2.0-8.3.0 8.3.0-8.4.3 )], + 'calcUpgradePath finds correct path with backtracking'; + +{ + no warnings 'redefine'; + *WebGUI::Paths::upgrades = sub { collateral('Upgrade', 'valid') } ; +} +$upgrade->set_true('runUpgradeFile'); + +capture { + my $res = $upgrade->upgradeSites; + ok $res, 'upgradeSites runs'; +}; + +$upgrade->called_pos_ok(1, 'getCurrentVersion'); +$upgrade->called_pos_ok(2, 'getCodeVersion'); +SKIP: { + $upgrade->called_pos_ok(4, 'runUpgradeFile') || skip 'upgrade not run', 1; + my $upgradeFile = $upgrade->call_args_pos(4, 4); + ok $upgradeFile =~ /\b00_simple\.pl$/, 'correct upgrade file run'; +} + +$upgrade->clear; +$upgrade->unmock('runUpgradeFile'); + +$upgrade->mock(testUpgrade => sub { + my $self = shift; + my $file = shift; + $self->runUpgradeFile($configFile, '8.3.0', collateral('Upgrade', $file), @_); +}); + +{ + my $stdout = capture { eval { + $upgrade->testUpgrade('output.pl'); + } }; + ok $stdout =~ 'Simple Output', 'report command functions correctly'; + ok $stdout =~ 'Done', 'done command functions correctly'; +} + +{ + $upgrade->quiet(1); + my $stdout = capture { eval { $upgrade->testUpgrade('output.pl') } }; + ok $stdout !~ 'Simple Output', 'quiet flag silences report command'; + ok $stdout !~ 'Done', 'quiet flag silences done command'; +} + +ok !try { $upgrade->testUpgrade('die.pl'); 1 }, 'Error on failing upgrade'; +ok !try { $upgrade->testUpgrade('strict-failure.pl'); 1 }, 'strict enabled in upgrades'; + +my $session = WebGUI::Test->session; + +my $dbh = $upgrade->dbhForConfig(WebGUI::Test->config); +our $totalAssets = $dbh->selectrow_array('SELECT COUNT(*) FROM asset'); + +$upgrade->testUpgrade('dbh.pl'); + +$upgrade->testUpgrade('config.pl'); + +{ + my $sId = $upgrade->testUpgrade('session.pl'); + + ok +WebGUI::Session::Id->valid($sId), 'valid session id generated'; + my $hasSession = $dbh->selectrow_array('SELECT COUNT(*) FROM userSession WHERE sessionId = ?', {}, $sId); + ok !$hasSession, 'session properly closed'; +} + +{ + my $vt = $upgrade->testUpgrade('versiontag-implicit.pl'); + ok $vt->get('isCommitted'), 'implicit version tag committed'; + is $vt->get('name'), 'Upgrade to 8.3.0 - versiontag-implicit', 'implicit version tag named correctly'; +} + +$upgrade->testUpgrade('versiontag.pl'); +$upgrade->testUpgrade('collateral.pl'); +$upgrade->testUpgrade('package.pl'); + +{ + my $temp = File::Temp->newdir; + local @INC = @INC; + my @modules; + for (1..2) { + my $lib_dir = File::Spec->catdir($temp, 'lib' . $_); + unshift @INC, $lib_dir; + my $mod_dir = File::Spec->catdir($lib_dir, 'WebGUI', 'Upgrade', 'Test'); + my $module = File::Spec->catfile($mod_dir, 'Module.pm'); + push @modules, $module; + make_path($mod_dir); + open my $fh, '>', $module; + print {$fh} <<'END_PM'; +package WebGUI::Upgrade::Test::Module; + +1; +END_PM + close $fh; + } + + $upgrade->testUpgrade('rmlib.pl'); + + ok !(grep { -e } @modules), 'all libraries removed correctly'; +} + +{ + my $package = $upgrade->testUpgrade('test-template.wgpkg'); + isa_ok $package, 'WebGUI::Asset::Template'; + my $vtId = $package->get('tagId'); + my $vt = WebGUI::VersionTag->new($session, $vtId); + addToCleanup($vt); + is $vt->get('name'), 'Upgrade to 8.3.0 - test-template', 'package import names version tag correctly'; +} + +{ + my $stdout = capture { eval { + $upgrade->testUpgrade('select.sql'); + } }; + my @lines = split /[\r\n]+/, $stdout; + my $dateApplied = $lines[1]; + + my $dbdateApplied = $dbh->selectrow_array('SELECT dateApplied FROM webguiVersion ORDER BY dateApplied DESC LIMIT 1'); + is $dateApplied, $dbdateApplied, 'SQL script run against database properly'; +} + +done_testing; + diff --git a/t/VersionTag.t b/t/VersionTag.t index 9ab42127b..d473a6409 100644 --- a/t/VersionTag.t +++ b/t/VersionTag.t @@ -203,7 +203,7 @@ my $asset6 = WebGUI::Asset->getRoot($session)->addChild({ className => 'WebGUI:: $tag6->commitAsUser(3, { commitNow => "yes" }); $tag6 = WebGUI::VersionTag->new($session, $tag6->getId); #Get the tag again - properties have changed is($tag6->get("committedBy"),3,'tag committed by admin again'); -$asset6 = WebGUI::Asset->newByDynamicClass($session,$asset6->getId); #Get the asset again - properties have changed +$asset6 = WebGUI::Asset->newById($session,$asset6->getId); #Get the asset again - properties have changed is($asset6->get("status"),"approved","asset status approved"); $tag6->clearWorking; $tag6->rollback; @@ -215,7 +215,8 @@ $tag6->rollback; setSiteVersionTagMode($session, q{singlePerUser}); setUserVersionTagMode($user, q{inherited}); -ok(!defined getWorking(1), 'versionTagMode singlePerUser: no working tag initially present'); +ok(!defined getWorking(1), 'versionTagMode singlePerUser: no working tag initially present') + or diag(getWorking(1)->getId); $tag = WebGUI::VersionTag->create($session, {}); isa_ok($tag, 'WebGUI::VersionTag', 'versionTagMode singlePerUser: empty tag'); @@ -288,6 +289,7 @@ ok($adminSiteWideTag->get(q{isSiteWide}), 'versionTagMode siteWide + admin inher ok($adminSiteWideTag->getId() eq $siteWideTagId, 'versionTagMode siteWide + admin inherited: empty has same ID as site wide'); +$adminUserTag->rollback(); $admin_session->var()->end(); $admin_session->close(); @@ -313,7 +315,6 @@ isnt( $userTag->rollback(); $siteWideTag->rollback(); -$adminUserTag->rollback(); ## Additional VersionTagMode to make sure that auto commit happens only when user is tag creator and tag is not site wide. ## See bug #10689 (Version Tag Modes) @@ -327,8 +328,7 @@ $adminUserTag->rollback(); is($tag->getAssetCount, 1, qq{$test_prefix [singlePerUser] tag with 1 asset}); # create admin session - my $admin_session = WebGUI::Session->open(WebGUI::Test->file); - addToCleanup($session); + my $admin_session = WebGUI::Test->newSession; $admin_session->user({'userId' => 3}); setUserVersionTagMode($admin_session->user(), q{autoCommit}); @@ -379,7 +379,8 @@ $adminUserTag->rollback(); is($tag->getAssetCount, 1, qq{$test_prefix [siteWide] tag with 1 asset}); # create admin session - $admin_session = WebGUI::Session->open(WebGUI::Test->file); + $admin_session = WebGUI::Test->newSession; + WebGUI::Test->addToCleanup($admin_session); addToCleanup($admin_session); $admin_session->user({'userId' => 3}); diff --git a/t/Whitespace.t b/t/Whitespace.t index 6191bc76e..c7f4b53a6 100644 --- a/t/Whitespace.t +++ b/t/Whitespace.t @@ -65,7 +65,7 @@ sub checkContent { my $content = shift; my @content = @{$content}; - my $podAllowed = 0; + my $podAllowed = 1; my $lineNumber = 1; foreach my $line (@content) { chomp $line; diff --git a/t/lib/WebGUI/Test.pm b/t/lib/WebGUI/Test.pm index b2027f676..03a82a5ab 100644 --- a/t/lib/WebGUI/Test.pm +++ b/t/lib/WebGUI/Test.pm @@ -26,6 +26,7 @@ use strict; use warnings; use base qw(Test::Builder::Module); +use Log::Log4perl; use Test::MockObject; use Test::MockObject::Extends; use Log::Log4perl; # load early to ensure proper order of END blocks @@ -109,6 +110,9 @@ sub _initSession { Workflows => 'Workflow', 'Workflow Instances' => 'WorkflowInstance', Carts => 'cart', + AdSpaces => 'adSpace', + Ads => 'advertisement', + Inbox => 'inbox', Transactions => 'transaction', 'Transaction Items' => 'transactionItem', 'Address Books' => 'addressBook', @@ -213,6 +217,7 @@ sub newEnv { ? HTTP::Request::Common::POST( $url, [ %$form ] ) : HTTP::Request::Common::GET( $url ) ; + $request->headers->user_agent('WebGUI'); } return $request->to_psgi; } @@ -267,7 +272,7 @@ sub config { return $config if $config; require WebGUI::Config; - $config = WebGUI::Config->new($CLASS->file, 1); + $config = WebGUI::Config->new($CLASS->file); return $config; } @@ -699,6 +704,8 @@ Example call: my @cleanups; while (@_) { my $class = shift; + next + if !defined $class; my $construct; if ( ref $class ) { my $object = $class; diff --git a/t/supporting_collateral/Upgrade/backtrack/8.0.0-8.1.0/.exists b/t/supporting_collateral/Upgrade/backtrack/8.0.0-8.1.0/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/backtrack/8.1.0-8.2.0/.exists b/t/supporting_collateral/Upgrade/backtrack/8.1.0-8.2.0/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/backtrack/8.1.0-8.3.0/.exists b/t/supporting_collateral/Upgrade/backtrack/8.1.0-8.3.0/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/backtrack/8.2.0-8.2.1/.exists b/t/supporting_collateral/Upgrade/backtrack/8.2.0-8.2.1/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/backtrack/8.2.0-8.3.0/.exists b/t/supporting_collateral/Upgrade/backtrack/8.2.0-8.3.0/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/backtrack/8.3.0-8.4.3/.exists b/t/supporting_collateral/Upgrade/backtrack/8.3.0-8.4.3/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/collateral.pl b/t/supporting_collateral/Upgrade/collateral.pl new file mode 100644 index 000000000..64fe4cbc8 --- /dev/null +++ b/t/supporting_collateral/Upgrade/collateral.pl @@ -0,0 +1,8 @@ +use WebGUI::Upgrade::Script; +my $c = collateral; + +::isa_ok $c, 'Path::Class::Dir'; + +::ok -e $c->file('collateral.txt'), 'correct collateral path used'; + + diff --git a/t/supporting_collateral/Upgrade/collateral/collateral.txt b/t/supporting_collateral/Upgrade/collateral/collateral.txt new file mode 100644 index 000000000..2f26b312b --- /dev/null +++ b/t/supporting_collateral/Upgrade/collateral/collateral.txt @@ -0,0 +1 @@ +collateral file diff --git a/t/supporting_collateral/Upgrade/config.pl b/t/supporting_collateral/Upgrade/config.pl new file mode 100644 index 000000000..0629f3905 --- /dev/null +++ b/t/supporting_collateral/Upgrade/config.pl @@ -0,0 +1,3 @@ +use WebGUI::Upgrade::Script; +::is config->pathToFile, $::configFile, 'config function works correctly'; + diff --git a/t/supporting_collateral/Upgrade/dbh.pl b/t/supporting_collateral/Upgrade/dbh.pl new file mode 100644 index 000000000..845c83d28 --- /dev/null +++ b/t/supporting_collateral/Upgrade/dbh.pl @@ -0,0 +1,4 @@ +use WebGUI::Upgrade::Script; +my $totalAssets = dbh->selectrow_array('SELECT COUNT(*) FROM asset'); +::is $totalAssets, $::totalAssets, 'dbh function working correctly'; + diff --git a/t/supporting_collateral/Upgrade/die.pl b/t/supporting_collateral/Upgrade/die.pl new file mode 100644 index 000000000..b80fa51c3 --- /dev/null +++ b/t/supporting_collateral/Upgrade/die.pl @@ -0,0 +1,3 @@ +use WebGUI::Upgrade::Script; +die "Upgrade failure\n"; + diff --git a/t/supporting_collateral/Upgrade/impossible/.exists b/t/supporting_collateral/Upgrade/impossible/.exists new file mode 100644 index 000000000..e69de29bb diff --git a/t/supporting_collateral/Upgrade/output.pl b/t/supporting_collateral/Upgrade/output.pl new file mode 100644 index 000000000..88e15a27c --- /dev/null +++ b/t/supporting_collateral/Upgrade/output.pl @@ -0,0 +1,5 @@ +use WebGUI::Upgrade::Script; +start_step 'Simple Output'; + +done; + diff --git a/t/supporting_collateral/Upgrade/package.pl b/t/supporting_collateral/Upgrade/package.pl new file mode 100644 index 000000000..fd9b00918 --- /dev/null +++ b/t/supporting_collateral/Upgrade/package.pl @@ -0,0 +1,12 @@ +use WebGUI::Upgrade::Script; +::addToCleanup('WebGUI::VersionTag', version_tag->getId); + +import_package('test-template.wgpkg'); + +my $assets = version_tag->getAssets; + +::is scalar @$assets, 1, 'imported one asset with package'; + +::isa_ok $assets->[0], 'WebGUI::Asset::Template'; + + diff --git a/t/supporting_collateral/Upgrade/package/test-template.wgpkg b/t/supporting_collateral/Upgrade/package/test-template.wgpkg new file mode 100644 index 000000000..4e2f8a442 Binary files /dev/null and b/t/supporting_collateral/Upgrade/package/test-template.wgpkg differ diff --git a/t/supporting_collateral/Upgrade/rmlib.pl b/t/supporting_collateral/Upgrade/rmlib.pl new file mode 100644 index 000000000..e01fa9bdb --- /dev/null +++ b/t/supporting_collateral/Upgrade/rmlib.pl @@ -0,0 +1,3 @@ +use WebGUI::Upgrade::Script; +rm_lib 'WebGUI::Upgrade::Test::Module'; + diff --git a/t/supporting_collateral/Upgrade/select.sql b/t/supporting_collateral/Upgrade/select.sql new file mode 100644 index 000000000..0cbaddaed --- /dev/null +++ b/t/supporting_collateral/Upgrade/select.sql @@ -0,0 +1 @@ +SELECT dateApplied FROM webguiVersion ORDER BY dateApplied DESC LIMIT 1 diff --git a/t/supporting_collateral/Upgrade/session.pl b/t/supporting_collateral/Upgrade/session.pl new file mode 100644 index 000000000..fc9bf6484 --- /dev/null +++ b/t/supporting_collateral/Upgrade/session.pl @@ -0,0 +1,8 @@ +use WebGUI::Upgrade::Script; +my $s = session; +::isa_ok $s, 'WebGUI::Session'; +::is $s, session, 'session properly cached'; +::is $s->user->getId, 3, 'admin user set for session'; + +$s->getId; + diff --git a/t/supporting_collateral/Upgrade/strict-failure.pl b/t/supporting_collateral/Upgrade/strict-failure.pl new file mode 100644 index 000000000..7081bb295 --- /dev/null +++ b/t/supporting_collateral/Upgrade/strict-failure.pl @@ -0,0 +1,3 @@ +use WebGUI::Upgrade::Script; +$variable = "value"; + diff --git a/t/supporting_collateral/Upgrade/test-template.wgpkg b/t/supporting_collateral/Upgrade/test-template.wgpkg new file mode 100644 index 000000000..95350bc5c Binary files /dev/null and b/t/supporting_collateral/Upgrade/test-template.wgpkg differ diff --git a/t/supporting_collateral/Upgrade/valid/8.0.0-8.4.3/00_simple.pl b/t/supporting_collateral/Upgrade/valid/8.0.0-8.4.3/00_simple.pl new file mode 100644 index 000000000..8a20e5538 --- /dev/null +++ b/t/supporting_collateral/Upgrade/valid/8.0.0-8.4.3/00_simple.pl @@ -0,0 +1,4 @@ +use WebGUI::Upgrade::Script; +report "Simple Upgrade Step"; +done; + diff --git a/t/supporting_collateral/Upgrade/versiontag-implicit.pl b/t/supporting_collateral/Upgrade/versiontag-implicit.pl new file mode 100644 index 000000000..4d0717933 --- /dev/null +++ b/t/supporting_collateral/Upgrade/versiontag-implicit.pl @@ -0,0 +1,13 @@ +use WebGUI::Upgrade::Script; +use WebGUI::Asset; +use WebGUI::Asset::Snippet; +WebGUI::Asset->getRoot(session)->addChild({ + className => 'WebGUI::Asset::Snippet', + title => 'Test snippet', +}); +my $vt = WebGUI::VersionTag->getWorking(session, 'nocreate'); +if ($vt) { + ::addToCleanup('WebGUI::VersionTag', $vt->getId); +} +$vt; + diff --git a/t/supporting_collateral/Upgrade/versiontag.pl b/t/supporting_collateral/Upgrade/versiontag.pl new file mode 100644 index 000000000..8515213cd --- /dev/null +++ b/t/supporting_collateral/Upgrade/versiontag.pl @@ -0,0 +1,16 @@ +use WebGUI::Upgrade::Script; +my $vt = version_tag; +::addToCleanup('WebGUI::VersionTag', $vt->getId); + +::isa_ok $vt, 'WebGUI::VersionTag'; +::is $vt->get('name'), 'Upgrade to 8.3.0 - versiontag', 'auto-naming with short name works'; + +::is $vt, version_tag, 'second call gives same version tag'; +::ok ! $vt->get('isCommitted'), '... and doesn\'t commit version tag'; + +my $vt2 = version_tag 'Adding This Stuff'; +::addToCleanup('WebGUI::VersionTag', $vt2->getId); +::ok $vt->get('isCommitted'), 'Request for new version tag commits previous tag'; +::is $vt2->get('name'), 'Upgrade to 8.3.0 - Adding This Stuff', 'explicit name used correctly'; + + diff --git a/var/upgrades/_upgrade.skeleton b/var/upgrades/_upgrade.skeleton deleted file mode 100644 index 7fcc51999..000000000 --- a/var/upgrades/_upgrade.skeleton +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -use strict; -use Getopt::Long; -use WebGUI::Paths -inc; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; - - -my $toVersion = "0.0.0"; # make this match what version you're going to -my $quiet; # this line required - - -my $session = start(); # this line required - -# upgrade functions go here - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -# Describe what our function does -#sub exampleFunction { -# my $session = shift; -# print "\tWe're doing some stuff here that you should know about... " unless $quiet; -# # and here's our code -# print "DONE!\n" unless $quiet; -#} - - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - print "\tUpgrading package $file\n" unless $quiet; - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { - my $node = WebGUI::Asset->getImportNode($session); - $node->importPackage( $storage, { - overwriteLatest => 1, - clearPackageFlag => 1, - setDefaultTemplate => 1, - } ); - }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl diff --git a/var/upgrades/upgrade_7.9.4-8.0.0.pl b/var/upgrades/upgrade_7.9.4-8.0.0.pl deleted file mode 100644 index 06f1936b9..000000000 --- a/var/upgrades/upgrade_7.9.4-8.0.0.pl +++ /dev/null @@ -1,172 +0,0 @@ -#!/usr/bin/env perl - -#------------------------------------------------------------------- -# WebGUI is Copyright 2001-2009 Plain Black Corporation. -#------------------------------------------------------------------- -# Please read the legal notices (docs/legal.txt) and the license -# (docs/license.txt) that came with this distribution before using -# this software. -#------------------------------------------------------------------- -# http://www.plainblack.com info@plainblack.com -#------------------------------------------------------------------- - -use strict; -use File::Path qw/rmtree/; -use Getopt::Long; -use WebGUI::Paths -inc; -use WebGUI::Session; -use WebGUI::Storage; -use WebGUI::Asset; - - -my $toVersion = "8.0.0"; # make this match what version you're going to -my $quiet; # this line required - - -my $session = start(); # this line required - -moveMaintenance($session); -migrateToNewCache($session); -moveFileLocations($session); -addMaintenancePageToConfig($session); - -finish($session); # this line required - - -#---------------------------------------------------------------------------- -sub migrateToNewCache { - my $session = shift; - print "\tMigrating to new cache " unless $quiet; - rmtree "../../lib/WebGUI/Cache"; - unlink "../../lib/WebGUI/Workflow/Activity/CleanDatabaseCache.pm"; - unlink "../../lib/WebGUI/Workflow/Activity/CleanFileCache.pm"; - my $config = $session->config; - $config->set("cache", { - "driver" => "FastMmap", - "expires_variance" => "0.10", - "root_dir" => "/tmp/WebGUICache", - }); - $config->set("hotSessionFlushToDb", 600); - $config->delete("disableCache"); - $config->delete("cacheType"); - $config->delete("fileCacheRoot"); - $config->deleteFromArray("workflowActivities/None", "WebGUI::Workflow::Activity::CleanDatabaseCache"); - $config->deleteFromArray("workflowActivities/None", "WebGUI::Workflow::Activity::CleanFileCache"); - my $db = $session->db; - $db->write("drop table cache"); - $db->write("delete from WorkflowActivity where className in ('WebGUI::Workflow::Activity::CleanDatabaseCache','WebGUI::Workflow::Activity::CleanFileCache')"); - $db->write("delete from WorkflowActivityData where activityId in ('pbwfactivity0000000002','pbwfactivity0000000022')"); - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub moveMaintenance { - my $session = shift; - print "\tMoving maintenance file " unless $quiet; - unlink '../../docs/maintenance.html'; - print "DONE!\n" unless $quiet; -} - -#---------------------------------------------------------------------------- -sub addMaintenancePageToConfig { - my $session = shift; - print "\tAdd maintenance page entry to the config file " unless $quiet; - $session->config->set('maintenancePage', '/data/WebGUI/www/maintenance.html'); - print "DONE!\n" unless $quiet; -} - -sub moveFileLocations { - my $session = shift; - print "\tMoving preload files " unless $quiet; - unlink '../../sbin/preload.custom.example'; - rename '../../sbin/preload.custom', File::Spec->catfile(WebGUI::Paths->configBase, 'preload.custom'); - unlink '../../sbin/preload.exclude.example'; - rename '../../sbin/preload.exclude', File::Spec->catfile(WebGUI::Paths->configBase, 'preload.exclude'); - unlink '../../lib/default.ttf'; - print "Done.\n" unless $quiet; -} - - -# -------------- DO NOT EDIT BELOW THIS LINE -------------------------------- - -#---------------------------------------------------------------------------- -# Add a package to the import node -sub addPackage { - my $session = shift; - my $file = shift; - - # Make a storage location for the package - my $storage = WebGUI::Storage->createTemp( $session ); - $storage->addFileFromFilesystem( $file ); - - # Import the package into the import node - my $package = eval { WebGUI::Asset->getImportNode($session)->importPackage( $storage ); }; - - if ($package eq 'corrupt') { - die "Corrupt package found in $file. Stopping upgrade.\n"; - } - if ($@ || !defined $package) { - die "Error during package import on $file: $@\nStopping upgrade\n."; - } - - # Turn off the package flag, and set the default flag for templates added - my $assetIds = $package->getLineage( ['self','descendants'] ); - for my $assetId ( @{ $assetIds } ) { - my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId ); - if ( !$asset ) { - print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n"; - next; - } - my $properties = { isPackage => 0 }; - if ($asset->isa('WebGUI::Asset::Template')) { - $properties->{isDefault} = 1; - } - $asset->update( $properties ); - } - - return; -} - -#------------------------------------------------- -sub start { - my $configFile; - $|=1; #disable output buffering - GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet - ); - my $session = WebGUI::Session->open($configFile); - $session->user({userId=>3}); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->set({name=>"Upgrade to ".$toVersion}); - return $session; -} - -#------------------------------------------------- -sub finish { - my $session = shift; - updateTemplates($session); - my $versionTag = WebGUI::VersionTag->getWorking($session); - $versionTag->commit; - $session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")"); - $session->close(); -} - -#------------------------------------------------- -sub updateTemplates { - my $session = shift; - return undef unless (-d "packages-".$toVersion); - print "\tUpdating packages.\n" unless ($quiet); - opendir(DIR,"packages-".$toVersion); - my @files = readdir(DIR); - closedir(DIR); - my $newFolder = undef; - foreach my $file (@files) { - next unless ($file =~ /\.wgpkg$/); - # Fix the filename to include a path - $file = "packages-" . $toVersion . "/" . $file; - addPackage( $session, $file ); - } -} - -#vim:ft=perl