プロフィール

ニックネーム
asako★手作りパン教室ママカフェ

自己紹介

マイプロフィール

定番

好き嫌い

その他

twitter



<html lang="ja">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8" />

<script type="text/javascript" charset="utf-8">
// this must be set before any other script is loaded for IE7 security
document.domain = 'twitter.com';
</script>

<script type="text/javascript">(function () {
window.WATCH = function (label, block) {
if (typeof block === 'undefined') {
block = label;
label = undefined;
}
if (typeof label === 'string') {
WATCH._didExecute[label] = true;
}

WATCH._attempt(this, block);
};
WATCH._didExecute = {};

WATCH._reportCount = 0;

WATCH._reportLimit = 25;

WATCH._reportInterval = 60 * 1000;
WATCH._active = false;
WATCH.activate = function (setting) {
if (typeof setting === 'undefined'){
setting = true;
}
WATCH._active = setting;
extend(WATCH, WATCH._active ? WATCH.actives : WATCH.inactives)
};

WATCH.actives = {};
WATCH.inactives = {};

var extend = function(destination, source){
for (var key in source){
destination[key] = source[key];
}
}

var noop = function(){};

WATCH._attempt = function(that, block) {
if (arguments.length < 2) {
block = that;
that = window;
}

if (WATCH._active) {
try {
block.apply(that);
} catch (error) {
WATCH._triggerError(error);
}
} else {
block.apply(that);
}
};

WATCH.inactives.end = noop;
WATCH.actives.end = function (label) {
if (typeof label === 'undefined') {
throw new Error('WATCH.end() requires a label');
}
if (WATCH._didExecute[label]) {
WATCH._didExecute[label] = false;
} else if (WATCH._active) {
WATCH._triggerError(new Error('WATCH.end("'+label+'") called without successful call to WATCH("'+label+'", fn(){...}) - a SyntaxError probably just happened'));
}
WATCH._didExecute[label] = false;
};

/**
* Given a function, return a version of that function that is wrapped by the WATCH function.
*/
WATCH.inactives.callback = function(that, callback){
// pass the callback through
return typeof callback === 'undefined' ? that : callback;
};
WATCH.actives.callback = function (that, callback) {
if (arguments.length === 1) {
callback = that;
that = this;
}

if (typeof callback === 'string') {
callback = (function (stringVersion) {
return function () {
WATCH._originalEval.call(this, stringVersion);
};
}(callback));
}

var watchedCallback = function () {
var that = this,
args = arguments,
result;

WATCH._attempt(function () {
result = callback.apply(that, args);
});
return result;
};

watchedCallback.isWatched = true;
return watchedCallback;
};

WATCH._"onError"allbacks = {};

WATCH.inactives.add"onError"= noop;
WATCH.actives.add"onError"= function (callback) {
var unique = WATCH._unique();
WATCH._"onError"allbacks[unique] = callback;
return unique;
};

WATCH.inactives.remove"onError"= noop;
WATCH.actives.remove"onError"= function (id) {
delete WATCH._"onError"allbacks[id];
};

WATCH._lastUnique = -1;
WATCH._unique = function () {
return ++WATCH._lastUnique;
};

WATCH.inactives.jQuery = noop;
WATCH.actives.jQuery = function () {
// Wrap jQuery's event binding code so all event handlers are wrapped
WATCH._originalJQueryEventAdd = WATCH._originalJQueryEventAdd || jQuery.event.add;
jQuery.event.add = function () {
var newArgs = Array.prototype.slice.call(arguments);

if (typeof newArgs[2] === 'function') {
newArgs[2] = WATCH.callback(newArgs[2]);
} else if (newArgs && typeof newArgs[2] === 'object' && newArgs[2].handler) {
newArgs[2].handler = WATCH.callback(newArgs[2].handler);
}
return WATCH._originalJQueryEventAdd.apply(this, newArgs);
};

WATCH._originalJQueryAjax = WATCH._originalJQueryAjax || jQuery.ajax;
jQuery.ajax = function (options) {
jQuery.each(['complete', 'error', 'success'], function (which, key) {
if (!options[key]) {
return;
}
options[key] = WATCH.callback(options[key]);
});

return WATCH._originalJQueryAjax.apply(this, arguments);
};
};
WATCH.inactives.undoJQuery = noop;
WATCH.actives.undoJQuery = function() {
jQuery.event.add = WATCH._originalJQueryEventAdd;
jQuery.ajax = WATCH._originalJQueryAjax;
};

WATCH._previousErrors = {};

var escapeDoubleQuotes = function (string) {
return string.toString().replace('"', '\\"');
};

var stringifyLite = function (object) {
var result = '{', hasProperty = false;
for (var key in object) {
if(typeof object[key] === 'undefined' || object[key] === null){
continue;
}
result += (hasProperty ? ',"' : '"') + escapeDoubleQuotes(key) + '":"' + escapeDoubleQuotes(object[key]);
hasProperty = true;
}
return result + '}';
};

WATCH._scribeError = function(report) {
if(WATCH._previousErrors[report.error] && (new Date()) - WATCH._previousErrors[report.error] < WATCH._reportInterval) {
// We've recently logged this; don't log it again
return false;
}

if(WATCH.reportLimit <= WATCH.reportCount){
return;
}

WATCH.reportCount++;

if ( ! document.location.hostname.match(/(^(www|api)\.)?twitter\.com$/) ) {
return;
}

WATCH._previousErrors[report.error] = new Date();

report.event_name = "phoenix_error";
report.page = window.location.href;

var scribeUrl = (window.location.protocol.match(/s\:$/) ? 'https' : 'http') + '://scribe.twitter.com';
scribeUrl += '?category=webclient&log=' + encodeURIComponent(stringifyLite(report)) + '&ts=' + (new Date()).getTime();

(new Image()).src = scribeUrl;
};

WATCH._triggerError = function(error) {
var reraise = true;

var report = {
error: error
};

for (var key in WATCH._"onError"allbacks) {
try {
if (WATCH._"onError"allbacks[key](report) === false) {
reraise = false;
}
} catch (callbackError) {
report.callbackFailure = true;
}
}
WATCH._scribeError(report);
if(reraise){
throw error;
}
};

/**
* Wrap built-in functions with versions that WATCH for errors as appropriate.
*/
WATCH.inactives.natives = noop;
WATCH.actives.natives = function () {
window.setInterval = WATCH._watchedSetInterval;
window.setTimeout = WATCH._watchedSetTimeout;
window['eval'] = WATCH._watchedEval;
};

WATCH.inactives.undoNatives = noop;
WATCH.actives.undoNatives = function () {
window.setInterval = WATCH._originalSetInterval;
window.setTimeout = WATCH._originalSetTimeout;
window['eval'] = WATCH._originalEval;
};

WATCH._originalSetInterval = window.setInterval;
WATCH._originalSetTimeout = window.setTimeout;
WATCH._originalEval = window['eval'];

// Wrap setInterval and setTimeout, which run code asyncronously and therefore allow it
// to escape any existing try/catch blocks.

// Rebind window.setInterval and .setTimeout
WATCH._watchedSetInterval = function (callback, timeout) {
return WATCH._originalSetInterval.call(this, WATCH.callback(callback), timeout);
};

WATCH._watchedSetTimeout = function (callback, timeout) {
return WATCH._originalSetTimeout.call(this, WATCH.callback(callback), timeout);
};

// Wrap eval in order to catch SyntaxErrors when loading code through LAB.js
WATCH.activate();
WATCH._watchedEval = WATCH.callback(window['eval']);
WATCH.activate(false);
}());
</script>
<script type="text/javascript">
WATCH.add"onError"function(errorReport) {
if (document.body.className.indexOf("loading-body") !== -1) {
errorReport.dead = true;
}
});
</script>

<script>
function bust () {
document.write = "";
window.top.location = window.self.location;
setTimeout(function() {
document.body.innerHTML = '';
}, 0);
window.self."onload"= function(evt) {
document.body.innerHTML = '';
};
}
if (window.top !== window.self) { // are you trying to put self in an iframe?
try {
if (window.top.location.host) { // this is illegal to access unless you share a non-spoofable document domain
// fun times
} else {
bust(); // chrome executes this
}
} catch (ex) {
bust(); // everyone executes this
}
}
</script>


<script type="text/javascript" charset="utf-8">WATCH('first globals', function(){
if (!window.twttr) {
window.twttr = window.twttr || {};
}

twttr.payload = {};
twttr.payload["conditionalTemplates"] = {};
twttr.payload["profiling"] = false;
twttr.loggedIn = true;
twttr.currentUserScreenName = 'asakopan';
twttr.pageLocale = 'ja';
twttr.languages = [{"css_classes":"western it","code":"it","name_en":"Italian","name":"Italiano"},{"css_classes":"western es","code":"es","name_en":"Spanish","name":"Espa\u00f1ol"},{"css_classes":null,"code":"en","name_en":"English","name":"English"},{"css_classes":"asian ko","code":"ko","name_en":"Korean","name":"\ud55c\uad6d\uc5b4"},{"css_classes":"western fr","code":"fr","name_en":"French","name":"fran\u00e7ais"},{"css_classes":"western de","code":"de","name_en":"German","name":"Deutsch"},{"css

アメンバー

プレゼント

→ もっと見る
アメーバに会員登録して、プロフィールをつくろう!