-- MySQL dump 10.11 -- -- Host: localhost Database: polytropos -- ------------------------------------------------------ -- Server version 5.0.32-Debian_7etch6-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `mt_template` -- DROP TABLE IF EXISTS `mt_template`; CREATE TABLE `mt_template` ( `template_id` int(11) NOT NULL auto_increment, `template_blog_id` int(11) NOT NULL, `template_build_dynamic` tinyint(4) default '0', `template_build_interval` int(11) default '0', `template_build_type` smallint(6) default '1', `template_created_by` int(11) default NULL, `template_created_on` datetime default NULL, `template_identifier` varchar(50) default NULL, `template_linked_file` varchar(255) default NULL, `template_linked_file_mtime` varchar(10) default NULL, `template_linked_file_size` int(11) default NULL, `template_modified_by` int(11) default NULL, `template_modified_on` datetime default NULL, `template_name` varchar(255) NOT NULL, `template_outfile` varchar(255) default NULL, `template_rebuild_me` tinyint(4) default '1', `template_text` mediumtext, `template_type` varchar(25) NOT NULL, PRIMARY KEY (`template_id`), KEY `mt_template_identifier` (`template_identifier`), KEY `mt_template_outfile` (`template_outfile`), KEY `mt_template_name` (`template_name`), KEY `mt_template_type` (`template_type`), KEY `mt_template_blog_id` (`template_blog_id`) ) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=latin1; -- -- Dumping data for table `mt_template` -- LOCK TABLES `mt_template` WRITE; /*!40000 ALTER TABLE `mt_template` DISABLE KEYS */; INSERT INTO `mt_template` VALUES (1,1,0,0,1,1,'2008-09-08 18:23:58','category_entry_listing','',NULL,NULL,1,'2008-10-25 20:59:07','Category Entry Listing',NULL,0,'<$mt:Include module=\"HTML Head\"$>\n\n \n

<$mt:ArchiveTitle$> Archives

\n\n \n

Recently in <$mt:ArchiveTitle$> Category

\n
\n\n\n\n<$mt:Var name=\"limit\" value=\"auto\"$>\n\n \n <$mt:Include module=\"Entry Summary\"$>\n\n\n\n
\n \">« <$mt:ArchiveTitle$> |\n \">Main Index |\n \">Archives\n | \"><$mt:ArchiveTitle$> »\n
\n<$mt:Include module=\"HTML Footer\"$>','archive'),(2,1,0,0,1,1,'2008-09-08 18:23:58','search',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Search',NULL,1,'\n\n \n\n \n\n','widget'),(3,1,0,0,1,1,'2008-09-08 18:23:58','entry','',NULL,NULL,1,'2008-10-26 20:10:30','Entry',NULL,0,'<$mt:Include module=\"HTML Head\"$>\n\n
\n
From
\n<$mt:Include module=\"Entry Summary\"$>\n
\n\n<$mt:Include module=\"Sidebar\"$>\n\n<$mt:Include module=\"HTML Footer\"$>\n','individual'),(4,1,0,0,1,1,'2008-09-08 18:23:58','page','',NULL,NULL,1,'2008-10-26 19:01:00','Page',NULL,0,'<$mt:Include module=\"HTML Head\"$>\n
\n
<$mt:PageTitle$>
\n \n

<$mt:PageBody$>

\n
\n
\n<$mt:Include module=\"Sidebar\"$>\n<$mt:Include module=\"HTML Footer\"$>','page'),(5,1,0,0,1,1,'2008-09-08 18:23:58','javascript',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','JavaScript','mt.js',1,'\n/* The following functions and variables are here to support legacy MT templates.\n If you have refreshed your JavaScript template but still use older MT comment\n templates, you may need to uncomment this block in order for those templates \n to work properly. To use, simply remove the \'mt:Ignore\' tags wrapping this\n block of code.\n*/\n function hideDocumentElement(id) { return mtHide(id) }\n function showDocumentElement(id) { return mtShow(id) }\n function individualArchivesOnLoad() { return mtEntryOnLoad() }\n function writeCommenterGreeting() { return mtShowGreeting() }\n function rememberMe(f) { return mtRememberMe(f) }\n function forgetMe(f) { return mtForgetMe(f) }\n var commenter_name;\n var commenter_id;\n var commenter_url;\n var commenter_blog_ids;\n var mtcmtmail;\n var mtcmtauth;\n var mtcmthome;\n var captcha_timer;\n\n\n// The cookie name to use for storing the blog-side comment session cookie.\nvar mtCookieName = \"<$mt:UserSessionCookieName$>\";\nvar mtCookieDomain = \"<$mt:UserSessionCookieDomain$>\";\nvar mtCookiePath = \"<$mt:UserSessionCookiePath$>\";\nvar mtCookieTimeout = <$mt:UserSessionCookieTimeout$>;\n\n\n/***\n * Simple routine for showing a DOM element (applying a CSS display\n * attribute of \'none\').\n */\n\nfunction mtHide(id) {\n var el = (typeof id == \"string\") ? document.getElementById(id) : id;\n if (el) el.style.display = \'none\';\n}\n\n\n/***\n * Simple routine for showing a DOM element (applying a CSS display\n * attribute of \'block\').\n */\n\nfunction mtShow(id) {\n var el = (typeof id == \"string\") ? document.getElementById(id) : id;\n if (el) el.style.display = \'block\';\n}\n\n\n/***\n * A utility function for assigning/adding handlers to window events.\n */\n\nfunction mtAttachEvent(eventName,func) {\n var onEventName = \'on\' + eventName;\n var old = window[onEventName];\n if( typeof old != \'function\' )\n window[onEventName] = func;\n else {\n window[onEventName] = function( evt ) {\n old( evt );\n return func( evt );\n };\n }\n}\n\n\n/***\n * Calls the event named, if there are handlers for it.\n */\n\nfunction mtFireEvent(eventName,param) {\n var fn = window[\'on\' + eventName];\n if (typeof fn == \'function\') return fn(param);\n return;\n}\n\n\n/***\n * Displays a relative date.\n * \'ts\' is a Date object, \'fds\' is a string of the date which\n * will be displayed if the given date is older than 1 week.\n */\n\nfunction mtRelativeDate(ts, fds) {\n var now = new Date();\n var ref = ts;\n var delta = Math.floor((now.getTime() - ref.getTime()) / 1000);\n\n var str;\n if (delta < 60) {\n str = \'moments ago\';\n } else if (delta <= 86400) {\n // less than 1 day\n var hours = Math.floor(delta / 3600);\n var min = Math.floor((delta % 3600) / 60);\n if (hours == 1)\n str = \'1 hour ago\';\n else if (hours > 1)\n str = \'2 hours ago\'.replace(/2/, hours);\n else if (min == 1)\n str = \'1 minute ago\';\n else\n str = \'2 minutes ago\'.replace(/2/, min);\n } else if (delta <= 604800) {\n // less than 1 week\n var days = Math.floor(delta / 86400);\n var hours = Math.floor((delta % 86400) / 3600);\n if (days == 1)\n str = \'1 day ago\';\n else if (days > 1)\n str = \'2 days ago\'.replace(/2/, days);\n else if (hours == 1)\n str = \'1 hour ago\';\n else\n str = \'2 hours ago\'.replace(/2/, hours);\n }\n return str ? str : fds;\n}\n\n\n/***\n * Used to display an edit link for the given entry.\n */\n\nfunction mtEditLink(entry_id, author_id) {\n var u = mtGetUser();\n if (! u) return;\n if (! entry_id) return;\n if (! author_id) return;\n if (u.id != author_id) return;\n var link = \'?__mode=view&_type=entry&id=\' + entry_id + \'\">Edit\';\n document.write(link);\n}\n\n\n/***\n * Called when an input field on the comment form receives focus.\n */\n\nfunction mtCommentFormOnFocus() {\n // if CAPTCHA is enabled, this causes the captcha image to be\n // displayed if it hasn\'t been already.\n mtShowCaptcha();\n}\n\n\n/***\n * Displays a captcha field for anonymous commenters.\n */\n\nvar mtCaptchaVisible = false;\nfunction mtShowCaptcha() {\n var u = mtGetUser();\n if ( u && u.is_authenticated ) return;\n if (mtCaptchaVisible) return;\n var div = document.getElementById(\'comments-open-captcha\');\n if (div) {\n div.innerHTML = \'<$mt:CaptchaFields$>\';\n mtCaptchaVisible = true;\n }\n}\n\n\n/* user object\n -- saved in user cookie --\n u.name (display name)\n u.url (link to home page)\n u.email (for anonymous only)\n u.userpic (url for commenter/author)\n u.profile (link to profile)\n u.is_trusted (boolean)\n u.is_author (user has posting rights)\n u.is_banned (banned status; neither post/comment perms)\n u.can_post (has permission to post)\n u.can_comment (has permission to comment)\n\n -- status fields --\n u.is_authenticated (boolean)\n u.is_anonymous (user is anonymous)\n*/\n\n\nvar is_preview;\nvar user;\n\n/***\n * Assigns a user object as the actively logged in user; also saves the\n * user information in a browser cookie.\n */\n\nfunction mtSetUser(u) {\n if (u) {\n // persist this\n user = u;\n mtSaveUser();\n // sync up user greeting\n mtFireEvent(\'usersignin\');\n }\n}\n\n\n/***\n * Simple function that escapes single quote characters for storing\n * in a cookie.\n */\n\nfunction mtEscapeJS(s) {\n s = s.replace(/\'/g, \"'\");\n return s;\n}\n\n\n/***\n * Simple function that unescapes single quote characters that were\n * stored in a cookie.\n */\n\nfunction mtUnescapeJS(s) {\n s = s.replace(/'/g, \"\'\");\n return s;\n}\n\n\n/***\n * Serializes a user object into a string, suitable for storing as a cookie.\n */\n\nfunction mtBakeUserCookie(u) {\n var str = \"\";\n if (u.name) str += \"name:\'\" + mtEscapeJS(u.name) + \"\';\";\n if (u.url) str += \"url:\'\" + mtEscapeJS(u.url) + \"\';\";\n if (u.email) str += \"email:\'\" + mtEscapeJS(u.email) + \"\';\";\n if (u.is_authenticated) str += \"is_authenticated:\'1\';\";\n if (u.profile) str += \"profile:\'\" + mtEscapeJS(u.profile) + \"\';\";\n if (u.userpic) str += \"userpic:\'\" + mtEscapeJS(u.userpic) + \"\';\";\n if (u.sid) str += \"sid:\'\" + mtEscapeJS(u.sid) + \"\';\";\n str += \"is_trusted:\'\" + (u.is_trusted ? \"1\" : \"0\") + \"\';\";\n str += \"is_author:\'\" + (u.is_author ? \"1\" : \"0\") + \"\';\";\n str += \"is_banned:\'\" + (u.is_banned ? \"1\" : \"0\") + \"\';\";\n str += \"can_post:\'\" + (u.can_post ? \"1\" : \"0\") + \"\';\";\n str += \"can_comment:\'\" + (u.can_comment ? \"1\" : \"0\") + \"\';\";\n str = str.replace(/;$/, \'\');\n return str;\n}\n\n\n/***\n * Unserializes a user cookie and returns a user object with the restored\n * state.\n */\n\nfunction mtUnbakeUserCookie(s) {\n if (!s) return;\n\n var u = {};\n var m;\n while (m = s.match(/^((name|url|email|is_authenticated|profile|userpic|sid|is_trusted|is_author|is_banned|can_post|can_comment):\'([^\']+?)\';?)/)) {\n s = s.substring(m[1].length);\n if (m[2].match(/^(is|can)_/)) // boolean fields\n u[m[2]] = m[3] == \'1\' ? true : false;\n else\n u[m[2]] = mtUnescapeJS(m[3]);\n }\n if (u.is_authenticated) {\n u.is_anonymous = false;\n } else {\n u.is_anonymous = true;\n u.can_post = false;\n u.is_author = false;\n u.is_banned = false;\n u.is_trusted = false;\n }\n return u;\n}\n\n\n/***\n * Retrieves an object of the currently logged in user\'s state.\n * If no user is logged in or cookied, this will return null.\n */\n\nfunction mtGetUser() {\n if (!user) {\n var cookie = mtGetCookie(mtCookieName);\n if (!cookie) return;\n user = mtUnbakeUserCookie(cookie);\n if (! user) {\n user = {};\n user.is_anonymous = true;\n user.can_post = false;\n user.is_author = false;\n user.is_banned = false;\n user.is_trusted = false;\n }\n }\n return user;\n}\n\n\n/***\n * Issues a request to the MT comment script to retrieve the currently\n * logged-in user (if any).\n */\n\nvar mtFetchedUser = false;\n\nfunction mtFetchUser(cb) {\n if (!cb) cb = \'mtSetUser\';\n if ( ( cb == \'mtSetUser\' ) && mtGetUser() ) {\n var url = document.URL;\n url = url.replace(/#.+$/, \'\');\n url += \'#comments-open\';\n location.href = url;\n } else {\n // we aren\'t using AJAX for this, since we may have to request\n // from a different domain. JSONP to the rescue.\n mtFetchedUser = true;\n var script = document.createElement(\'script\');\n var ts = new Date().getTime();\n script.src = \'<$mt:CGIPath$><$mt:CommentScript$>?__mode=session_js&blog_id=<$mt:BlogID$>&jsonp=\' + cb + \'&ts=\' + ts;\n (document.getElementsByTagName(\'head\'))[0].appendChild(script);\n }\n}\n\n\n\n/***\n * Called when the \'Remember me\' checkbox is changed. If the checkbox\n * is cleared, the cached user cookie is immediately cleared.\n */\n\nfunction mtRememberMeOnClick(b) {\n if (!b.checked)\n mtClearUser(b.form);\n return true;\n}\n\n\n/***\n * Called when comment form is sent.\n * Required parameter: Form DOM object of comment form.\n * If form has a \'bakecookie\' member, it will be used to signal\n * storing the anonymous commenter information to a cookie.\n * If form has a \'armor\' member, it will be used to store\n * a token that is checked by the comment script.\n */\n\n\nvar mtRequestSubmitted = false;\nfunction mtCommentOnSubmit(f) {\n if (!mtRequestSubmitted) {\n mtRequestSubmitted = true;\n\n if (f.armor)\n f.armor.value = \'<$mt:BlogSitePath encode_sha1=\"1\"$>\';\n if (f.bakecookie && f.bakecookie.checked)\n mtSaveUser(f);\n\n // disable submit buttons\n if (f.preview_button) f.preview_button.disabled = true;\n if (f.post) f.post.disabled = true;\n\n var u = mtGetUser();\n if ( !is_preview && ( u && u.is_authenticated ) ) {\n // validate session; then submit\n mtFetchedUser = false;\n mtFetchUser(\'mtCommentSessionVerify\');\n return false;\n }\n\n return true;\n }\n return false;\n}\n\nfunction mtCommentSessionVerify(app_user) {\n var u = mtGetUser();\n var f = document[\'comments_form\'];\n if ( u && app_user && app_user.sid && ( u.sid == app_user.sid ) ) {\n f.submit();\n } else {\n alert(\'Your session has expired. Please sign in again to comment.\');\n mtClearUser();\n mtFireEvent(\'usersignin\');\n\n mtShow(\'comments-form\');\n mtHide(\'comments-open-footer\');\n\n }\n}\n\nfunction mtUserOnLoad() {\n var u = mtGetUser();\n\n // if the user is authenticated, hide the \'anonymous\' fields\n // and any captcha input if already shown\n if ( document.getElementById(\'comments-form\')) {\n if ( u && u.is_authenticated ) {\n mtShow(\'comments-form\');\n mtHide(\'comments-open-data\');\n if (mtCaptchaVisible)\n mtHide(\'comments-open-captcha\');\n } else {\n\n mtHide(\'comments-form\');\n\n }\n if ( u && u.is_banned )\n mtHide(\'comments-form\');\n\n // if we\'re previewing a comment, make sure the captcha\n // field is visible\n if (is_preview)\n mtShowCaptcha();\n else\n mtShowGreeting();\n\n // populate anonymous comment fields if user is cookied as anonymous\n var cf = document[\'comments_form\'];\n if (cf) {\n if (u && u.is_anonymous) {\n if (u.email) cf.email.value = u.email;\n if (u.name) cf.author.value = u.name;\n if (u.url) cf.url.value = u.url;\n if (cf.bakecookie)\n cf.bakecookie.checked = u.name || u.email;\n } else {\n if (u && u.sid && cf.sid)\n cf.sid.value = u.sid;\n }\n if (cf.post.disabled)\n cf.post.disabled = false;\n if (cf.preview_button.disabled)\n cf.preview_button.disabled = false;\n mtRequestSubmitted = false;\n }\n }\n}\n\n\n\n/***\n * Called when an entry archive page is loaded.\n * This routine controls which elements of the comment form are shown\n * or hidden, depending on commenter type and blog configuration.\n */\n\n\nfunction mtEntryOnLoad() {\n mtHide(\'trackbacks-info\');\n mtHide(\'comments-open\');\n mtFireEvent(\'usersignin\');\n}\n\nfunction mtEntryOnUnload() {\n if (mtRequestSubmitted) {\n var cf = document[\'comments_form\'];\n if (cf) {\n if (cf.post && cf.post.disabled)\n cf.post.disabled = false;\n if (cf.preview_button && cf.preview_button.disabled)\n cf.preview_button.disabled = false;\n }\n mtRequestSubmitted = false;\n }\n return true;\n}\n\nmtAttachEvent(\'usersignin\', mtUserOnLoad);\n\n\n\n/***\n * Handles the action of the \"Sign in\" link. First clears any existing\n * user cookie, then directs to the MT comment script to sign the user in.\n */\n\nfunction mtSignIn() {\n var doc_url = document.URL;\n doc_url = doc_url.replace(/#.+/, \'\');\n var url = \'<$mt:SignInLink$>\';\n if (is_preview) {\n if ( document[\'comments_form\'] ) {\n var entry_id = document[\'comments_form\'].entry_id.value;\n url += \'&entry_id=\' + entry_id;\n } else {\n url += \'&return_url=<$mt:BlogURL encode_url=\"1\"$>\';\n }\n } else {\n url += \'&return_url=\' + encodeURIComponent(doc_url);\n }\n mtClearUser();\n location.href = url;\n}\n\nfunction mtSignInOnClick(sign_in_element) {\n var el;\n if (sign_in_element) {\n // display throbber\n el = document.getElementById(sign_in_element);\n if (!el) // legacy MT 4.x element id\n el = document.getElementById(\'comment-form-external-auth\');\n }\n if (el)\n el.innerHTML = \'Signing in...  \';\n\n mtClearUser(); // clear any \'anonymous\' user cookie to allow sign in\n mtFetchUser(\'mtSetUserOrLogin\');\n return false;\n}\n\nfunction mtSetUserOrLogin(u) {\n if (u && u.is_authenticated) {\n mtSetUser(u);\n } else {\n // user really isn\'t logged in; so let\'s do this!\n mtSignIn();\n }\n}\n\n\n/***\n * Handles sign out from the web site.\n * First clears any existing user cookie, then direts to the MT comment\n * script to sign the user out.\n */\n\nfunction mtSignOut(entry_id) {\n mtClearUser();\n var doc_url = document.URL;\n doc_url = doc_url.replace(/#.+/, \'\');\n var url = \'<$mt:SignOutLink$>\';\n if (is_preview) {\n if ( document[\'comments_form\'] ) {\n var entry_id = document[\'comments_form\'].entry_id.value;\n url += \'&entry_id=\' + entry_id;\n } else {\n url += \'&return_url=<$mt:BlogURL encode_url=\"1\"$>\';\n }\n } else {\n url += \'&return_url=\' + encodeURIComponent(doc_url);\n }\n location.href = url;\n}\n\n\n/***\n * Handles the action of the \"Sign out\" link.\n */\n\nfunction mtSignOutOnClick() {\n mtSignOut();\n return false;\n}\n\n\n/***\n * Handles the display of the greeting message, depending on what kind of\n * user is logged in and blog comment policy.\n */\n\n\nfunction mtShowGreeting() {\n\n var reg_reqd = truefalse;\n\n var cf = document[\'comments_form\'];\n if (!cf) return;\n\n var el = document.getElementById(\'comment-greeting\');\n if (!el) // legacy MT 4.x element id\n el = document.getElementById(\'comment-form-external-auth\');\n if (!el) return;\n\n var eid = cf.entry_id;\n var entry_id;\n if (eid) entry_id = eid.value;\n\n var phrase;\n var u = mtGetUser();\n\n if ( u && u.is_authenticated ) {\n if ( u.is_banned ) {\n phrase = \'You do not have permission to comment on this blog. (\\sign out\\<\\/a\\>)\';\n } else {\n var user_link;\n if ( u.is_author ) {\n user_link = \'<$mt:CommentScript$>?__mode=edit_profile&return_url=\' + encodeURIComponent( location.href );\n user_link += \'\">\' + u.name + \'\';\n } else {\n // registered user, but not a user with posting rights\n if (u.url)\n user_link = \'\' + u.name + \'\';\n else\n user_link = u.name;\n }\n // TBD: supplement phrase with userpic if one is available.\n phrase = \'Thanks for signing in, __NAME__. (\\sign out\\<\\/a\\>)\';\n phrase = phrase.replace(/__NAME__/, user_link);\n }\n } else {\n if (reg_reqd) {\n phrase = \'\\Sign in\\<\\/a\\> to comment.\';\n } else {\n phrase = \'\\Sign in\\<\\/a\\> to comment, or comment anonymously.\';\n }\n }\n el.innerHTML = phrase;\n\n mtShowCaptcha();\n\n}\n\n\n\n/***\n * Handles the action of the \'Reply\' links.\n */\n\nfunction mtReplyCommentOnClick(parent_id, author) {\n mtShow(\'comment-form-reply\');\n\n var checkbox = document.getElementById(\'comment-reply\');\n var label = document.getElementById(\'comment-reply-label\');\n var text = document.getElementById(\'comment-text\');\n\n // Populate label with new values\n var reply_text = \'Replying to \\comment from __AUTHOR__\\<\\/a\\>\';\n reply_text = reply_text.replace(/__PARENT__/, parent_id);\n reply_text = reply_text.replace(/__AUTHOR__/, author);\n label.innerHTML = reply_text;\n\n checkbox.value = parent_id; \n checkbox.checked = true;\n try {\n // text field may be hidden\n text.focus();\n } catch(e) {\n }\n\n mtSetCommentParentID();\n}\n\n\n/***\n * Sets the parent comment ID when replying to a comment.\n */\n\nfunction mtSetCommentParentID() {\n var checkbox = document.getElementById(\'comment-reply\');\n var parent_id_field = document.getElementById(\'comment-parent-id\');\n if (!checkbox || !parent_id_field) return;\n\n var pid = 0;\n if (checkbox.checked == true)\n pid = checkbox.value;\n parent_id_field.value = pid;\n}\n\n\n/***\n * Persists a copy of the current user cookie into the browser cookie stash.\n */\n\nfunction mtSaveUser(f) {\n // We can\'t reliably store the user cookie during a preview.\n if (is_preview) return;\n\n var u = mtGetUser();\n\n if (f && (!u || u.is_anonymous)) {\n if ( !u ) {\n u = {};\n u.is_authenticated = false;\n u.can_comment = true;\n u.is_author = false;\n u.is_banned = false;\n u.is_anonymous = true;\n u.is_trusted = false;\n }\n if (f.author != undefined) u.name = f.author.value;\n if (f.email != undefined) u.email = f.email.value;\n if (f.url != undefined) u.url = f.url.value;\n }\n\n if (!u) return;\n\n var cache_period = mtCookieTimeout * 1000;\n\n // cache anonymous user info for a long period if the\n // user has requested to be remembered\n if (u.is_anonymous && f && f.bakecookie && f.bakecookie.checked)\n cache_period = 365 * 24 * 60 * 60 * 1000;\n\n var now = new Date();\n mtFixDate(now);\n now.setTime(now.getTime() + cache_period);\n\n var cmtcookie = mtBakeUserCookie(u);\n mtSetCookie(mtCookieName, cmtcookie, now, mtCookiePath, mtCookieDomain,\n location.protocol == \'https:\');\n}\n\n\n/***\n * Clears the blog-side user cookie.\n */\n\nfunction mtClearUser() {\n user = null;\n mtDeleteCookie(mtCookieName, mtCookiePath, mtCookieDomain,\n location.protocol == \'https:\');\n}\n\n\n/***\n * Sets a browser cookie.\n */\n\nfunction mtSetCookie(name, value, expires, path, domain, secure) {\n if (domain && domain.match(/^\\.?localhost$/))\n domain = null;\n var curCookie = name + \"=\" + escape(value) +\n (expires ? \"; expires=\" + expires.toGMTString() : \"\") +\n (path ? \"; path=\" + path : \"\") +\n (domain ? \"; domain=\" + domain : \"\") +\n (secure ? \"; secure\" : \"\");\n document.cookie = curCookie;\n}\n\n\n/***\n * Retrieves a browser cookie.\n */\n\nfunction mtGetCookie(name) {\n var prefix = name + \'=\';\n var c = document.cookie;\n var cookieStartIndex = c.indexOf(prefix);\n if (cookieStartIndex == -1)\n return \'\';\n var cookieEndIndex = c.indexOf(\";\", cookieStartIndex + prefix.length);\n if (cookieEndIndex == -1)\n cookieEndIndex = c.length;\n return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));\n}\n\n\n/***\n * Deletes a browser cookie.\n */\n\nfunction mtDeleteCookie(name, path, domain, secure) {\n if (mtGetCookie(name)) {\n if (domain && domain.match(/^\\.?localhost$/))\n domain = null;\n document.cookie = name + \"=\" +\n (path ? \"; path=\" + path : \"\") +\n (domain ? \"; domain=\" + domain : \"\") +\n (secure ? \"; secure\" : \"\") +\n \"; expires=Thu, 01-Jan-70 00:00:01 GMT\";\n }\n}\n\nfunction mtFixDate(date) {\n var skew = (new Date(0)).getTime();\n if (skew > 0)\n date.setTime(date.getTime() - skew);\n}\n\n\n/***\n * Returns a XMLHttpRequest object (for Ajax operations).\n */\n\nfunction mtGetXmlHttp() {\n if ( !window.XMLHttpRequest ) {\n window.XMLHttpRequest = function() {\n var types = [\n \"Microsoft.XMLHTTP\",\n \"MSXML2.XMLHTTP.5.0\",\n \"MSXML2.XMLHTTP.4.0\",\n \"MSXML2.XMLHTTP.3.0\",\n \"MSXML2.XMLHTTP\"\n ];\n\n for ( var i = 0; i < types.length; i++ ) {\n try {\n return new ActiveXObject( types[ i ] );\n } catch( e ) {}\n }\n\n return undefined;\n };\n }\n if ( window.XMLHttpRequest )\n return new XMLHttpRequest();\n}\n\n// BEGIN: fast browser onload init\n// Modifications by David Davis, DWD\n// Dean Edwards/Matthias Miller/John Resig\n// http://dean.edwards.name/weblog/2006/06/again/?full#comment5338\n\nfunction mtInit() {\n // quit if this function has already been called\n if (arguments.callee.done) return;\n\n // flag this function so we don\'t do the same thing twice\n arguments.callee.done = true;\n\n // kill the timer\n // DWD - check against window\n if ( window._timer ) clearInterval(window._timer);\n\n // DWD - fire the window onload now, and replace it\n if ( window.onload && ( window.onload !== window.mtInit ) ) {\n window.onload();\n window.onload = function() {};\n }\n}\n\n/* for Mozilla/Opera9 */\nif (document.addEventListener) {\n document.addEventListener(\"DOMContentLoaded\", mtInit, false);\n}\n\n/* for Internet Explorer */\n/*@cc_on @*/\n/*@if (@_win32)\ndocument.write(\"\n \n\n\n\n\n','custom'),(7,1,0,0,1,1,'2008-09-08 18:23:58','recent_comments',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Recent Comments',NULL,1,'\n \n \n
\n

Recent Comments

\n
\n \n
\n
\n \n \n\n','widget'),(8,1,0,0,1,1,'2008-09-08 18:23:58','date_based_category_archives',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Date-Based Category Archives',NULL,1,'\n \n \n
\n

Category Yearly Archives

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

Category Monthly Archives

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

Category Weekly Archives

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

Category Daily Archives

\n \n
\n \n
\n
\n\n','widget'),(9,1,0,0,1,1,'2008-09-08 18:23:58','comment_preview',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Comment Preview',NULL,1,'\n\n\n \n <$mt:Include module=\"HTML Head\"$>\n <$mt:BlogName encode_html=\"1\"$>: Previewing your Comment\n\n\" class=\"mt-comment-preview <$mt:Var name=\"page_layout\"$>\" onload=\"mtEntryOnLoad()\" onunload=\"mtEntryOnUnload()\">\n
\n
\n\n\n <$mt:Include module=\"Banner Header\"$>\n\n\n
\n
\n\n\n
\n
\n\n\n

<$mt:Var name=\"page_title\"$>

\n\n\n\n
\">\n
\n
\n
\n \n <$mt:CommentAuthorIdentity$>\n \n <$mt:CommentAuthorLink$> replied to <$mt:CommentLink$>\">comment from <$mt:CommentAuthor$>\n \n <$mt:CommentAuthorLink$>\n \n | \">\"><$mt:CommentDate$>\n \n
\n
\n
\n <$mt:CommentBody$>\n
\n
\n
\n\n\n\n
\n

Leave a comment

\n
\n
\n
<$mt:CommentScript$>\" name=\"comments_form\" id=\"comments-form\" onsubmit=\"return mtCommentOnSubmit(this)\">\n \n \n \n \" />\n \" />\n\n \" id=\"comment-parent-id\">\n\n
\n
\n \n \" onfocus=\"mtShowCaptcha()\" />\n
\n
\n \n \" onfocus=\"mtShowCaptcha()\" />\n
\n
\n \n \" onfocus=\"mtShowCaptcha()\" />\n
\n
\n\n
\n \" checked=\"checked\" onclick=\"mtSetCommentParentID()\" />\n \n
\n
\n
\n \n \n
\n
\n
\n \n \n \'\" />\n
\n
\n
\n
\n
\n
\n\n\n <$mt:Include module=\"Sidebar\"$>\n\n\n
\n
\n\n\n <$mt:Include module=\"Banner Footer\"$>\n\n\n
\n
\n\n\n','comment_preview'),(10,1,0,0,1,1,'2008-09-08 18:23:58','tag_cloud',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Tag Cloud',NULL,1,'\n
\n

Tag Cloud

\n \n
\n
','widget'),(11,1,0,0,1,1,'2008-09-08 18:23:58','openid',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','OpenID Accepted',NULL,1,'\n
\n
\n OpenID accepted here\n Learn more about OpenID\n
\n
\n
\n','widget'),(12,1,0,0,1,1,'2008-09-08 18:23:58','pages_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Page Listing',NULL,1,'\n
\n

Pages

\n
\n \n
\n
\n
\n','widget'),(13,1,0,0,1,1,'2008-09-08 18:23:58','archive_index','',NULL,NULL,1,'2008-10-26 19:10:42','Archive Index','archives.html',1,'<$mt:Include module=\"HTML Head\"$>\n
\n
Archives
\n\n \n \n \n \n \n \n \n
\n\n<$mt:Include module=\"Sidebar\"$> \n\n<$mt:Include module=\"HTML Footer\"$>','index'),(14,1,0,0,1,1,'2008-09-08 18:23:58','recent_entries',NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Recent Entries',NULL,1,'\n \n \n
\n

Recent Entries

\n
\n \n
\n
\n \n
\n
\n','widget'),(15,1,0,0,1,1,'2008-09-08 18:23:58','styles','',NULL,NULL,1,'2008-10-25 21:35:27','Stylesheet','styles.css',1,'/* This is the StyleCatcher theme addition. Do not remove this block. */\n@import url(/structure.css);\n/* end StyleCatcher imports */\n','index'),(16,1,0,0,1,1,'2008-09-08 18:23:59','calendar',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Calendar',NULL,1,'\n
\n

<$mt:Date format=\"%B %Y\"$>

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
SunMonTueWedThuFriSat
\n \n \n \"><$mt:CalendarDay$>\n \n \n \n <$mt:CalendarDay$>\n \n  \n
\n
\n
\n
\n','widget'),(17,1,0,0,1,1,'2008-09-08 18:23:59','technorati_search',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Technorati Search',NULL,1,'
\n

Technorati

\n
\n
\n
\n
\n Technorati search\n \n
\n \" />\n \n \n \n
\n
\n

\" id=\"ts_lh\">» Blogs that link here

\n
\n
\n
\n','widget'),(20,1,0,0,1,1,'2008-09-08 18:23:59','category_archive_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Category Archives',NULL,1,'\n
\n

Categories

\n
\n \n \n \n \n \n
\n
\n
\n','widget'),(21,1,0,0,1,1,'2008-09-08 18:23:59','popup_image',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Popup Image',NULL,1,'\n\n<$mt:ImageURL$>\n\n \" width=\"<$mt:ImageWidth$>\" height=\"<$mt:ImageHeight$>\" alt=\"<$mt:ImageURL$>\" style=\"margin: 0;padding: 0;border: 0;\" />\n\n\n','popup_image'),(22,1,0,0,1,1,'2008-09-08 18:23:59','recent_assets',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Recent Assets',NULL,1,'\n \n \n\n \n \n\n','widget'),(23,1,0,0,1,1,'2008-09-08 18:23:59','dynamic_error','',NULL,NULL,1,'2008-10-25 21:06:28','Dynamic Error',NULL,0,'\n\n\n <$mt:Include module=\"HTML Head\"$>\n <$mt:BlogName encode_html=\"1\"$>: Page Not Found\n\n\" class=\"mt-dynamic-error <$mt:Var name=\"page_layout\"$>\">\n
\n
\n\n\n\n\n
\n
\n\n\n
\n
\n

Page Not Found

\n
\n <$mt:ErrorMessage$>\n
\n
\n
\n\n\n <$mt:Include module=\"Sidebar\"$>\n\n\n
\n
\n\n\n\n
\n
\n\n\n','dynamic_error'),(24,1,0,0,1,1,'2008-09-08 18:23:59','monthly_archive_dropdown',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Monthly Archives Dropdown',NULL,1,'\n \n \n
\n

archives.html\">Archives

\n
\n \n
\n
\n\n \n
\n
\n','widget'),(25,1,0,0,1,1,'2008-09-08 18:23:59','search_results','',NULL,NULL,1,'2008-10-25 21:05:24','Search Results',NULL,0,'\n\n\n \n <$mt:Include module=\"HTML Head\"$>\n <$mt:BlogName encode_html=\"1\"$>: Search Results\n Below Javascript adds ajax search capability\n \n\n\" class=\"mt-search-results <$mt:Var name=\"page_layout\"$>\">\n
\n
\n\n\n\n\n
\n
\n\n\n
\n
\n\n\n \n\n \n
\n <$mt:CurrentPage$>\n

\n \n Results matching “<$mt:SearchString$>”\n \n \n Results tagged “<$mt:SearchString$>”\n \n

\n
\n \n <$mt:Include module=\"Entry Summary\" hide_counts=\"1\"$>\n \n
\n\n \n \n
\n \n
\n
\n\n<$mt:Var name=\"search_results\"$>\n\n\n\n\n

\n \n Results matching “<$mt:SearchString$>”\n \n \n Results tagged “<$mt:SearchString$>”\n \n

\n

No results found for “<$mt:SearchString$>”.

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

Instructions

\n

By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes:

\n
\n

\"movable type\"

\n
\n

The search engine also supports AND, OR, and NOT keywords to specify boolean expressions:

\n
\n

personal OR publishing

\n

publishing NOT personal

\n
\n
\n\n\n\n\n\n\n\n
\n
\n\n <$mt:Include module=\"Sidebar\"$>\n\n\n
\n
\n\n\n\n\n
\n
\n\n\n','search_results'),(26,1,0,0,1,1,'2008-09-08 18:23:59','current_category_monthly_archive_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Current Category Monthly Archives',NULL,1,'\n \n \n
\n

<$mt:CategoryLabel$>: Monthly Archives

\n
\n \n
\n
\n \n
\n
\n','widget'),(28,1,0,0,1,1,'2008-09-08 18:23:59','main_index_widgets_group',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Home Page Widgets Group',NULL,1,'\n This is a custom set of widgets that are conditioned to only appear on the homepage (or \"main_index\"). More info: http://www.movabletype.org/documentation/designer/widget-sets.html\n\n\n <$mt:Include widget=\"Recent Comments\"$>\n <$mt:Include widget=\"Recent Entries\"$>\n <$mt:Include widget=\"Recent Assets\"$>\n <$mt:Include widget=\"Tag Cloud\"$>\n\n','widget'),(29,1,0,0,1,1,'2008-09-08 18:23:59','about_this_page',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','About This Page',NULL,1,'
\n

\n\n About this Entry\n\n \n About this Archive\n \n\n\n About Archives\n\n

\n
\n\n

This page contains links to all the archived content.

\n
\n\n

This page contains a single entry by <$mt:EntryAuthorLink$> published on <$mt:EntryDate format=\"%x %X\"$>.

\n \n

\"><$mt:EntryTitle remove_html=\"1\"$> was the previous entry in this blog.

\n
\n \n

\"><$mt:EntryTitle remove_html=\"1\"$> is the next entry in this blog.

\n
\n
\n\n \n

This page is an archive of entries in the <$mt:CategoryLabel$> category from <$mt:ArchiveDate format=\"%B %Y\"$>.

\n \n

\"><$mt:ArchiveTitle$> is the previous archive.

\n
\n \n

\"><$mt:ArchiveTitle$> is the next archive.

\n
\n \n

This page is an archive of recent entries in the <$mt:CategoryLabel$> category.

\n \n

\"><$mt:CategoryLabel$> is the previous category.

\n
\n \n

\"><$mt:CategoryLabel$> is the next category.

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

This page is an archive of recent entries written by <$mt:AuthorDisplayName$> in <$mt:ArchiveDate format=\"%B %Y\"$>.

\n \n

\"><$mt:ArchiveTitle$> is the previous archive.

\n
\n \n

\"><$mt:ArchiveTitle$> is the next archive.

\n
\n \n

This page is an archive of recent entries written by <$mt:AuthorDisplayName$>.

\n
\n
\n\n

This page is an archive of entries from <$mt:ArchiveDate format=\"%B %Y\"$> listed from newest to oldest.

\n \n

\"><$mt:ArchiveTitle$> is the previous archive.

\n
\n \n

\"><$mt:ArchiveTitle$> is the next archive.

\n
\n
\n\n

Find recent content on the \">main index.

\n\n

Find recent content on the \">main index or look in the \">archives to find all content.

\n
\n
\n
\n','widget'),(30,1,0,0,1,1,'2008-09-08 18:23:59','syndication',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Syndication',NULL,1,'
\n
\n \n
\n
\n','widget'),(31,1,0,0,1,1,'2008-09-08 18:23:59','monthly_archive_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Monthly Archives',NULL,1,'\n \n \n
\n

<$mt:ArchiveTypeLabel$> \">Archives

\n \n
\n \n
\n
\n','widget'),(32,1,0,0,1,1,'2008-09-08 18:23:59','trackbacks',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Trackbacks',NULL,1,'\n\n
\n

<$mt:EntryTrackbackCount singular=\"1 TrackBack\" plural=\"# TrackBacks\" none=\"No TrackBacks\"$>

\n\n \n \n
\n

TrackBack URL: <$mt:EntryTrackbackLink$>

\n
\n
\n\n\n \n \n \n
\n \n
\">\n
\n
\n
\n \"><$mt:PingTitle$> from <$mt:PingBlogName$> on \"><$mt:PingDate$>\n
\n
\n
\n

\n <$mt:PingExcerpt$> \">Read More\n

\n
\n
\n
\n \n
\n \n
\n
\n
\n','custom'),(33,1,0,0,1,1,'2008-09-08 18:23:59','powered_by',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Powered By',NULL,1,'
\n
\n images/mt4-bug-pbmt-white.png\" alt=\"Powered by Movable Type <$mt:Version$>\" width=\"120\" height=\"75\" />\n
\n
\n','widget'),(60,1,0,0,1,1,'2008-10-25 19:57:40',NULL,'',NULL,NULL,2,'2008-10-26 00:48:05','HTML Footer',NULL,0,' \n\n\n','custom'),(35,1,0,0,1,1,'2008-09-08 18:23:59','comment_response','',NULL,NULL,1,'2008-10-25 21:05:56','Comment Response',NULL,0,'\n\n\n\n\n\n \n <$mt:Var name=\"page_title\" value=\"Confirmation...\"$>\n <$mt:Var name=\"message\" value=\"

Your comment has been submitted!

\"$>\n\n \n <$mt:Var name=\"page_title\" value=\"Thank you for commenting.\"$>\n <$mt:Var name=\"message\" value=\"

Your comment has been received and held for approval by the blog owner.

\"$>\n\n \n <$mt:Var name=\"page_title\" value=\"Comment Submission Error\"$>\n

Your comment submission failed for the following reasons: <$mt:ErrorMessage$>

\n
\n\n\n <$mt:Include module=\"HTML Head\"$>\n <$mt:BlogName encode_html=\"1\"$>: <$mt:Var name=\"page_title\"$>\n\n\" class=\"<$mt:Var name=\"body_class\"$> <$mt:Var name=\"page_layout\"$>\">\n
\n
\n\n\n\n\n
\n
\n\n\n
\n
\n

<$mt:Var name=\"page_title\"$>

\n <$mt:Var name=\"message\"$>\n

Return to the javascript:history.back()<$mt:EntryLink$>\">original entry.

\n
\n
\n\n\n <$mt:Include module=\"Sidebar\"$>\n\n\n
\n
\n\n\n\n
\n
\n\n\n','comment_response'),(36,1,0,0,1,1,'2008-09-08 18:23:59','monthly_entry_listing','',NULL,NULL,1,'2008-10-26 19:08:49','Monthly Entry Listing',NULL,0,'<$mt:Include module=\"HTML Head\"$>\n
\n
<$mt:ArchiveTitle$> Archives
\n \n <$mt:Var name=\"limit\" value=\"auto\"$>\n \n\n

\" rel=\"bookmark\"><$mt:EntryTitle$>

\n
\n

\n By <$mt:EntryAuthorDisplayName$> on <$mt:EntryDate format=\"%x %X\"$>\n \n <$mt:EntryDate format=\"%x %X\"$>\n \n \n | #comments\"><$mt:EntryCommentCount singular=\"1 Comment\" plural=\"# Comments\" none=\"No Comments\"$>\n

\n
\n
\n
\n
\n \n \n \">« <$mt:ArchiveTitle$> |\n \">Main Index |\n \">Archives\n | \"><$mt:ArchiveTitle$> »\n
\n\n<$mt:Include module=\"Sidebar\"$>\n\n<$mt:Include module=\"HTML Footer\"$>','archive'),(37,1,0,0,1,1,'2008-09-08 18:23:59','entry_summary','',NULL,NULL,2,'2008-10-26 01:57:15','Entry Summary',NULL,0,'

\" rel=\"bookmark\"><$mt:EntryTitle$>

\n\n\n

<$mt:EntryBody$>

\n
\n\n\n\n\n Continue reading #more\" rel=\"bookmark\"><$mt:EntryTitle$>.\n\n\n
\n

\n By <$mt:EntryAuthorDisplayName$> on <$mt:EntryDate format=\"%x %X\"$>\n \n <$mt:EntryDate format=\"%x %X\"$>\n \n \n | #comments\"><$mt:EntryCommentCount singular=\"1 Comment\" plural=\"# Comments\" none=\"No Comments\"$>\n

\n
\n
\n
\n\n','custom'),(38,1,0,0,1,1,'2008-09-08 18:23:59','main_index','',NULL,NULL,2,'2008-10-25 23:50:41','Main Index','index.html',1,'<$mt:Include module=\"HTML Head\"$>\n\n
\n
<$mt:date format=\"%B %e, %Y\"$>
\n\n\n<$mt:Include module=\"Entry Summary\"$>\n\n
\n\n<$mt:Include module=\"Sidebar\"$>\n\n<$mt:Include module=\"HTML Footer\"$>\n','index'),(39,1,0,0,1,1,'2008-09-08 18:23:59','signin',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Sign In',NULL,1,'\n
\n

Sign In

\n
\n
\n\n
\n','widget'),(40,1,0,0,1,1,'2008-09-08 18:23:59','archive_widgets_group',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Archive Widgets Group',NULL,1,'\n This is a custom set of widgets that are conditioned to serve different content based upon what type of archive it is included. More info: http://www.movabletype.org/documentation/designer/widget-sets.html\n\n\n \n <$mt:Include widget=\"Current Category Monthly Archives\"$>\n \n\n\n <$mt:Include widget=\"Category Archives\"$>\n\n\n <$mt:Include widget=\"Monthly Archives\"$>\n\n','widget'),(41,1,0,0,1,1,'2008-09-08 18:23:59','html_head','',NULL,NULL,1,'2008-10-26 19:39:46','HTML Head',NULL,0,'\n\n\n \" />\n \" type=\"text/css\" />\n <$mt:BlogName encode_html=\"1\"$>\n\n\n
\n
\n
\n

\n \n
\n
\n\n','custom'),(42,1,0,0,1,1,'2008-09-08 18:23:59','sidebar','',NULL,NULL,1,'2008-10-26 19:32:15','Sidebar',NULL,0,'
\n\n

About Polytropos

\n\n

Polytropos is an unanticipated consequence of half-baked thoughts and sober contemplations on politics, philosophy, art and culture.\n

\nBecca Thorpe is an aspiring intellectual who lives in Washington D.C. and hates political culture. She craves adrenaline and epistemological consistency. She also detests tiny dogs.

\n\n

Recent Posts

\n\n\n \" rel=\"bookmark\"><$mt:EntryTitle$>
\n
\n\n
','custom'),(43,1,0,0,1,1,'2008-09-08 18:23:59','author_archive_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Author Archives',NULL,1,'\n \n \n
\n

Authors

\n \n
\n \n
\n
\n','widget'),(44,1,0,0,1,1,'2008-09-08 18:23:59','creative_commons',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Creative Commons',NULL,1,'\n
\n
\n \">\"Creative\" />
\n This blog is licensed under a \">Creative Commons License.\n
\n
\n
\n','widget'),(45,1,0,0,1,1,'2008-09-08 18:23:59','current_author_monthly_archive_list',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Current Author Monthly Archives',NULL,1,'\n \n \n
\n

<$mt:AuthorDisplayName$>: Monthly Archives

\n \n
\n
\n','widget'),(46,1,0,0,1,1,'2008-09-08 18:23:59','date_based_author_archives',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Date-Based Author Archives',NULL,1,'\n \n \n
\n

Author Yearly Archives

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

Author Monthly Archives

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

Author Weekly Archives

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

Author Daily Archives

\n \n
\n \n
\n
\n\n','widget'),(47,1,0,0,1,1,'2008-09-08 18:23:59','3column_layout_primary_sidebar',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','3-column layout - Primary Sidebar',NULL,1,'','widgetset'),(48,1,0,0,1,1,'2008-09-08 18:23:59','2column_layout_sidebar',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','2-column layout - Sidebar',NULL,1,'','widgetset'),(49,1,0,0,1,1,'2008-09-08 18:23:59','3column_layout_secondary_sidebar',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','3-column layout - Secondary Sidebar',NULL,1,'','widgetset'),(50,0,0,0,1,NULL,'2008-09-08 18:23:59','commenter_notify',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Commenter Notify',NULL,1,'This email is to notify you that a new user has successfully registered on the blog \'<$mt:BlogName$>\'. Listed below you will find some useful information about this new user.\n\nNew User Information:\nUsername: <$mt:CommenterUsername$> \nFull Name: <$mt:CommenterName$>\nEmail: <$mt:CommenterEmail$>\n\nTo view or edit this user, please click on or cut and paste the following URL into a web browser:\n<$mt:Var name=\"profile_url\"$>\n\n<$mt:Include module=\"Mail Footer\"$>\n','email'),(51,0,0,0,1,NULL,'2008-09-08 18:23:59','new-ping',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','New Ping',NULL,1,'An unapproved TrackBack has been posted on your blog <$mt:BlogName$>, for entry #<$mt:EntryID$> (<$mt:EntryTitle$>). You need to approve this TrackBack before it will appear on your site.\">An unapproved TrackBack has been posted on your blog <$mt:BlogName$>, for category #<$mt:CategoryID$>, (<$mt:CategoryLabel$>). You need to approve this TrackBack before it will appear on your site.A new TrackBack has been posted on your blog <$mt:BlogName$>, on entry #<$mt:EntryID$> (<$mt:EntryTitle$>).A new TrackBack has been posted on your blog <$mt:BlogName$>, on category #<$mt:CategoryID$> (<$mt:CategoryLabel$>).\n\nExcerpt: \n<$mt:PingExcerpt wrap_text=\"72\"$>\n\nURL: <$mt:PingURL$>\nTitle: <$mt:PingTitle$>\nBlog: <$mt:PingBlogName$>\nIP address: <$mt:PingIP$>\n\nApprove TrackBack: \n <<$mt:Var name=\"approve_url\"$>>\n\nView TrackBack: \n <<$mt:EntryPermalink$>>\n\nReport TrackBack as spam: \n <<$mt:Var name=\"spam_url\"$>>\n\nEdit TrackBack: \n <<$mt:Var name=\"edit_url\"$>>\n\n<$mt:Include module=\"Mail Footer\"$>\n','email'),(52,0,0,0,1,NULL,'2008-09-08 18:23:59','comment_throttle',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Comment throttle',NULL,1,'If this was a mistake, you can unblock the IP address and allow the visitor to add it again by logging in to your Movable Type installation, going to Blog Config - IP Banning, and deleting the IP address <$mt:Var name=\"throttled_ip\"$> from the list of banned addresses.\nA visitor to your blog <$mt:BlogName$> has automatically been banned by adding more than the allowed number of comments in the last <$mt:Var name=\"throttle_seconds\"$> seconds.\n\nThis has been done to prevent a malicious script from overwhelming your weblog with comments. The banned IP address is\n\n<$mt:Var name=\"throttled_ip\"$>\n\n<$mt:Var name=\"message\"$>\n','email'),(53,0,0,0,1,NULL,'2008-09-08 18:23:59','commenter_confirm',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Commenter Confirm',NULL,1,'Thank you registering for an account to comment on <$mt:BlogName$>. \n\nFor your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to comment on <$mt:BlogName$>.\n\nTo confirm your account, please click on or cut and paste the following URL into a web browser:\n\n<$mt:Var name=\"confirm_url\"$>\n\nIf you did not make this request, or you don\'t want to register for an account to comment on <$mt:BlogName$>, then no further action is required.\n\nThank you very much for your understanding.\n\nSincerely,\n<$mt:AuthorDisplayName$>Movable Type\n\n<$mt:Include module=\"Mail Footer\"$>\n','email'),(54,0,0,0,1,NULL,'2008-09-08 18:23:59','recover-password',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Password Recovery',NULL,1,'You requested recovery of your Movable Type password. Your password has been changed in the system; here is the new password:\n\n <$mt:Var name=\"user_password\"$>\n\nYou should be able to log in to Movable Type using this new password from the URL below. Once you have logged in, you should change your password to something more memorable.\n\n <$mt:Var name=\"link_to_login\"$>\n\n<$mt:Include module=\"Mail Footer\"$>\n\n','email'),(55,0,0,0,1,NULL,'2008-09-08 18:23:59','new-comment',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','New Comment',NULL,1,'An unapproved comment has been posted on your blog <$mt:BlogName$>, for entry #<$mt:EntryID$> (<$mt:EntryTitle$>). You need to approve this comment before it will appear on your site.A new comment has been posted on your blog <$mt:BlogName$>, on entry #<$mt:EntryID$> (<$mt:EntryTitle$>).\n\n<$mt:CommentBody remove_html=\"1\" wrap_text=\"72\"$>\n\nCommenter name: <$mt:CommentAuthor$> \nCommenter email address: <$mt:CommentEmail$>\nCommenter URL: <$mt:CommentURL$>\nCommenter IP address: <$mt:CommentIP$>\n\nApprove comment:\n <<$mt:Var name=\"approve_url\"$>>\nView comment:\n <<$mt:Var name=\"view_url\"$>>\nEdit comment:\n <<$mt:Var name=\"edit_url\"$>>\nReport comment as spam:\n <<$mt:Var name=\"spam_url\"$>>\n\n<$mt:Include module=\"Mail Footer\"$>\n','email'),(56,0,0,0,1,NULL,'2008-09-08 18:23:59','verify-subscribe',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Subscribe Verify',NULL,1,'Thanks for subscribing to notifications about updates to <$mt:BlogName$>. Follow the link below to confirm your subscription:\n\n<$mt:Var name=\"script_path\"$>?__mode=confirm;email=<$mt:Var name=\"email\" escape=\"url\"$>;magic=<$mt:Var name=\"magic\" escape=\"url\"$>;blog_id=<$mt:BlogID$>;redirect=<$mt:Var name=\"redirect_url\" escape=\"url\"$>;entry_id=<$mt:EntryID$>\n\nIf the link is not clickable, just copy and paste it into your browser.\n\n<$mt:Include module=\"Mail Footer\"$>\n','email'),(57,0,0,0,1,NULL,'2008-09-08 18:23:59','footer-email',NULL,NULL,NULL,NULL,'2008-09-08 18:23:59','Mail Footer',NULL,1,'\n-- \nPowered by Movable Type <$mt:Version$>\n<$mt:Var name=\"portal_url\"$>\n','custom'),(58,0,0,0,1,NULL,'2008-09-08 18:24:00','notify-entry',NULL,NULL,NULL,NULL,'2008-09-08 18:24:00','Entry Notify',NULL,1,'A new <$mt:entryclasslabel$> entitled \'<$mt:EntryTitle$>\' has been published to <$mt:BlogName$>.\n\nView entry:View page: <<$mt:EntryStatus$><$mt:EntryPermalink$><$mt:Var name=\"entry_editurl\"$>>\n\n------------------------------------------------------------------------\n<$mt:EntryClassLabel lower_case=\"1\"$> Title: <$mt:EntryTitle$>\nPublish Date: <$mt:EntryDate mail=\"1\"$>\n\n\n<$mt:EntryExcerpt wrap_text=\"72\"$>\n\n------------------------------------------------------------------------\n\nMessage from Sender:\n<$mt:Var name=\"message\"$>\n\n------------------------------------------------------------------------\n\n<$mt:EntryBody remove_html=\"1\" wrap_text=\"72\"$>\n\n------------------------------------------------------------------------\n\nYou are receiving this email either because you have elected to receive notifications about new content on <$mt:BlogName$>, or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:\n\n<$mt:AuthorDisplayName$> <<$mt:AuthorEmail$>>\n','email'),(59,1,0,0,1,1,'2008-09-08 18:23:58',NULL,NULL,NULL,NULL,NULL,'2008-09-08 18:23:58','Stylesheet (Backup from 2008-09-08 13:25:35)','',0,'@import url(<$mt:StaticWebPath$>themes-base/blog.css);\n@import url(<$mt:StaticWebPath$>themes/minimalist-red/screen.css);\n','backup'); /*!40000 ALTER TABLE `mt_template` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2008-10-27 0:45:07