- 履歴一覧
- ソース を表示
- 気になる は削除されています。
- 1 (2010-11-30 (火) 15:00:25)
- 2 (2011-03-30 (水) 09:57:16)
- 3 (2011-03-31 (木) 09:20:52)
- 4 (2011-04-13 (水) 10:22:34)
- 5 (2011-04-13 (水) 14:22:37)
- 6 (2011-04-14 (木) 02:35:19)
- 7 (2011-04-21 (木) 00:39:06)
- 8 (2011-05-05 (木) 10:21:51)
- 9 (2011-05-10 (火) 01:02:02)
- 10 (2011-05-11 (水) 01:26:16)
- 11 (2011-06-27 (月) 10:54:26)
- 12 (2011-08-02 (火) 09:08:08)
- 13 (2011-09-12 (月) 02:57:05)
- 14 (2011-09-12 (月) 07:15:08)
- 15 (2011-09-13 (火) 08:27:27)
- 16 (2011-09-14 (水) 08:10:52)
テスト仕様書について†
- http://jibun.atmarkit.co.jp/lskill01/rensai/writing12/01.html
- http://blog.goo.ne.jp/xmldtp/e/55c927f93005300003ac841e6b83572d
有価証券報告書†
本†
プロジェクト管理†
- http://blog.livedoor.jp/ld_directors/archives/51452225.html
- http://designaholic.cc/2011/03/web-6.html
報告書の書き方†
- http://capa312.blog13.fc2.com/blog-entry-114.html
- http://www.insource.co.jp/businessbunsho/houkoku_by_insource.html
- http://aritsuhiko.blog36.fc2.com/blog-entry-37.html
プログラミング†
- SHA1ハッシュ化@JavaScript
- MySQL - 一貫性非ロック読み取り
- MySQL - InnoDBとTRANSACTION ISOLATION LEVEL
- ThredLocal
- MyBatis
モデリング†
- http://patterns-wg.fuka.info.waseda.ac.jp/study/14th-yamano.pdf
- http://d.hatena.ne.jp/tgk/comment?date=20060613
Jboss†
プチ認証メモ†
$(function(){
$.fn.extend({
authorize: function(ticket, id, password) {
var form = this;
$(form).submit(function() {
$(form).children('input[type="hidden"]').remove();
$('<input>').attr('type', 'hidden').attr('name', $(id).attr('name')).attr('value', $(id).val()).appendTo(form);
$('<input>').attr('type', 'hidden').attr('name', $(password).attr('name')).attr('value', CybozuLabs.SHA1.calc($(ticket).val() + CybozuLabs.SHA1.calc($(password).val()))).appendTo(form);
return true;
});
}
});
});
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/sha1.js"></script>
<script type="text/javascript" src="js/authorize.js"></script>
<script type="text/javascript">
<!--
$(function(){
$('#form').authorize('#ticket', '#userID', '#password');
});
// -->
</script>
<title>認証サンプル</title>
</head>
<body>
<p>チケット<br>
<input id="ticket" type="text" name="ticket" value="201109121459"></p>
<p>ユーザID<br>
<input id="userID" type="text" name="userID" value=""></p>
<p>パスワード<br>
<input id="password" type="text" name="password" value=""></p>
<form id="form" method="post" action="#">
<p>送信<br>
<input type="submit" name="submit" value="Submit"></p>
</form>
</body>
</html>