Dojoを使ったクロスブラウザベクターグラフィック

Posted by Technohippy Mon, 25 Dec 2006 09:10:00 GMT

http://www.thinkvitamin.com/features/design/create-cross-browser-vector-graphics 勝手訳

パワフルかつシンプルな方法でクロスブラウザな統合ドローイングAPIを実現するdojo.gfxの紹介。Dojoツールキットの共同製作者であるDylan Schiemannがその方法を説明してくれる。

長い間ウェブ開発者たちは「ブラウザ上で自由に描画するにはどうやればいいんだ?」という問いを発し続けてきた。 この単純な問いは、だけど簡単に答えられるものじゃない。 imageタグはすばらしいし、CSSも驚異的だし、Flashはいい仕事してる。 けどどれもまだ足りない。 10年近くずっと求め続けているのは、自由に描画したり、ウェブサイトの中のブラウザネイティブな形を修正して直角じゃなくしたりする方法だ。 さらに、それを画像編集ツールやサーバーから画像の再読み込みをしたりせずに実現したい。 要は任意の形やスタイルを操作したり、描画したり、イベントを割り当てたりして、リッチで洗練されたウェブUIを作りたいんだ。

XMLHttpRequestやそのほかAJAXやCometテクノロジーが広く使用されるようになってウェブアプリケーションの地平は大きく広がった。 思うに、非同期で、遅延の少ないデータ転送(AJAXとComet)をベクターグラフィックスと組み合わせることで、ウェブアプリケーション開発の世界に新しいチャンスがもたらされるんじゃないだろうか。 これまで発展してきたいろんな種類のイメージテクニックとCSSハックを使ったブラウザベースの描画ソリューションにこんな期待をしているのは明らかに僕以外にもたくさんいるはずだ。

W3CがSVG普及に向けて努力してきた歴史にも関わらず、今のところブラウザベンダーにはほとんどサポートされていない。 Apple, WhatWG, Mozilla, Operaは別々に、もっとシンプルだけどベクタードローの生成APIはそれほど多くはないCanvas機能を扱ってきた。

何年間もフラストレーションが溜まってたけど、ついに十分なサポートを手に入れ、シンプルで統一されたクロスブラウザのドローイングAPIを作ることができた: dojo.gfxはDojoツールキットで一番最近に追加された部分で、それらの目的を非常に強力でありながらシンプルなやり方で実現できる。今のところブラウザサポートにはFireFox 1.5+、Internet Explorer 6+、Opera 9を含む。Safariファンはサポートされてなくて悲しいかもしれないけど、最新のWebKitのナイトリーで実装中で、2007年に公開される次のSafariのメジャーバージョンでは使えるようになると思う。

もし以降の話を省略して実例とソースコードが見たければ、この記事の最後にリソースの一覧がある。そうじゃなければ、ゆっくり座ってコードを楽しんで欲しい!

dojo.gfxは何をしてくれるの?

簡単に言えば、dojo.gfxを使うと次のJavaScript APIを使って簡単に違和感なくブラウザ内で描画できる。 まずは青い四角形と緑の円を書くことから始めてみよう。

Drawing of simple blue rectangle and green circle

var node = document.createElement("div");
document.body.appendChild(node);
var surfaceWidth = 120;
var surfaceHeight = 220;
var surface = dojo.gfx.createSurface(node,surfaceWidth, surfaceHeight);
var rect = { x: 100, y: 0, width: 100, height: 100 };
var circle = { cx: 150, cy: 160, r: 50 };
var group = surface.createGroup();
var blueRect = group.createRect(rect)
    .setFill([0, 0, 255, 0.5])
    .applyTransform(dojo.gfx.matrix.identity);
var greenCircle = group.createCircle(circle)
    .setFill([0, 255, 0, 1.0])
    .setStroke({color: "black", width: 4, cap: "butt", join: 4})
    .applyTransform(dojo.gfx.matrix.identity);

この単純な例で分かるように、最初にやるのは描画するノードを追加していくためのgfxサーフィスをつくることだ。 そうすればメソッドチェーンを使って図形をサーフィスに追加したり、スタイルや変形を設定したりできる。 それらは定義されたとおりの順番に適用されて、ノードに対して簡単かつ柔軟にスタイルや塗りつぶしや変形を設定できる。 ベクターグラフィックに慣れている人はこれらがSVGと同じ一般的なコンセプトに基づいているとすぐに気付くだろう。 また、プロパティを定義するのにJavaScriptのリテラルを使って構文を単純に保てるよう気を使ってることにも気付いて欲しい。

いま何時?

もっと複雑で魅力的な例として、DojoコントリビューターのEugen LazutkinとTom Trenkaの作ったDojoクロックウィジェットを取り上げてみたい:

Example of Dojo clock widget

クロックウィジェットはHTMLネームスペース外でのDojoウィジェットシステムの柔軟性を見せてくれる。 以下のコード片でリアルな影を持つ長針と短針がどんなに簡単か分かるだろう。

this.shadows.hour.shadow = this._initPoly(this.surface, hP)
    .setFill([0, 0, 0, 0.1]);
this.hands.hour = this._initPoly(this.surface, hP)
    .setStroke({color: this.handStroke, width:1 })
    .setFill({
        type:"linear",
        x1:0, y1:0, x2:0, y2:-27,
        colors:[{offset:0, color:"#fff"}, {offset:0.33, color:this.handColor}]
    });
this.shadows.minute.shadow = this._initPoly(this.surface, mP)
    .setFill([0, 0, 0, 0.1]);
this.hands.minute = this._initPoly(this.surface, mP)
    .setStroke({color: this.handStroke, width:1 })
    .setFill({
        type:"linear",
        x1:0, y1:0, x2:0, y2:-38,
        colors:[{offset:0, color:"#fff"}, {offset:0.33, color:this.handColor}]
    });

サークル乱舞

複雑なdojo.gfxレイアウトを使うDojoイベントモデルの強力な使用例として、DojoコントリビューターのGavin Doughtieが作ったドラッグ可能なサークルのデモがこれだ:

Example of draggable circles demo

dojo.event.connect呼び出しが二回使って、マウスイベントを処理し、どの図形が選択されたかを判別するものと、mousemoveイベントをハンドルしてサークルをドラッグするものと、マウスボタンが離されたらmousemoveイベントをキャンセルする簡単な関数が呼び出される。 実際、これが唯一dojo.gfxがCanvasを大きく上回る点だ。SVG/VMLを使って描画されたアイテムはドキュメント上では通常のDOMノードなので簡単にイベントハンドラに接続できる。

dojo.event.connect(this.domNode, 'onmousedown', this, "handleMouseDown");
dojo.event.connect(this.domNode, 'onmouseup', this, "handleMouseUp");
getShape: function(evt){
    var id = evt.target.getAttribute('shapeid');
    var s = null;
    if (id) {
        s = this.gShapes[id];
    }
    // dojo.debug('target: ' + evt.target + ' id: ' + id + ' shape: ' + s);
    return s;
},
handleMouseDown: function(evt){
    dojo.debug("got an event");
    var shape = this.getShape(evt);
    dojo.debug(shape)
    if (shape) {
        this.gCurrentShape = shape;
        dojo.event.connect(this.domNode, 'onmousemove', this, "handleMouseMove");
        dojo.event.browser.stopEvent(evt);
    }
},
handleMouseMove: function(evt){
    dojo.debug("mouse move");
    dojo.debug(this.gCurrentShape);
    if (this.gCurrentShape) {
        var pos = dojo.html.getAbsolutePosition(this.domNode);
        var x = evt.pageX - pos.x;
        var y = evt.pageY - pos.y;
        dojo.debug(x + "/" + y);
        this.gCurrentShape.setShape({cx: x, cy: y});
        dojo.event.browser.stopEvent(evt);
    }
},
handleMouseUp: function(evt){
    this.gCurrentShape = null;
    dojo.event.disconnect(this.domNode, 'onmousemove', this, "handleMouseMove");
}

どんな機能がサポートされているか?

”’Strokes”’

続く

Comments

  1. int. said 70 days later:
    ak072880230 http://milfxxxpass.com//#0 - milf cruiser milf porn [URL=http://milfxxxpass.com//#2] milf cruiser [/URL] [http://milfxxxpass.com//#3 milf] [link]http://milfxxxpass.com//#4 [/link]
  2. ultimate said 95 days later:
    ultimate surrender ultimate Surrender fucking machines men in pain [url=http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender]ultimate surrender[/url] [url=http://tnij.org/ultimatesurrender]ultimate Surrender[/url] [url=http://tnij.org/fuckingmachines]fucking machines[/url] Hi [url=http://tnij.org/meninpain]men in pain[/url] [url="http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender"]ultimate surrender[/url] [url="http://tnij.org/ultimatesurrender"]ultimate Surrender[/url] [url="http://tnij.org/fuckingmachines"]fucking machines[/url] [url="http://tnij.org/meninpain"]men in pain[/url] ok
  3. ultimate said 96 days later:
    ultimate surrender ultimate Surrender fucking machines men in pain [url=http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender]ultimate surrender[/url] [url=http://tnij.org/ultimatesurrender]ultimate Surrender[/url] [url=http://tnij.org/fuckingmachines]fucking machines[/url] Hi [url=http://tnij.org/meninpain]men in pain[/url] [url="http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender"]ultimate surrender[/url] [url="http://tnij.org/ultimatesurrender"]ultimate Surrender[/url] [url="http://tnij.org/fuckingmachines"]fucking machines[/url] [url="http://tnij.org/meninpain"]men in pain[/url] ok
  4. ultimate said 96 days later:
    ultimate surrender ultimate Surrender fucking machines men in pain [url=http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender]ultimate surrender[/url] [url=http://tnij.org/ultimatesurrender]ultimate Surrender[/url] [url=http://tnij.org/fuckingmachines]fucking machines[/url] Hi [url=http://tnij.org/meninpain]men in pain[/url] [url="http://clubs-orgs.colstate.edu/nscs/_kbas/0000213a.htm?ultimatesurrender"]ultimate surrender[/url] [url="http://tnij.org/ultimatesurrender"]ultimate Surrender[/url] [url="http://tnij.org/fuckingmachines"]fucking machines[/url] [url="http://tnij.org/meninpain"]men in pain[/url] ok
  5. Submission said 97 days later:
    Hi ultimate surrender fucking machines men in pain submission sex [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9629]ultimate surrender[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9630]fucking machines[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9636]men in pain[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9643]submission sex[/url] ok.
  6. surrender said 97 days later:
    Best ultimate surrender fucking machines men in pain submission sex [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/814.html]ultimate surrender[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/815.html]fucking machines[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/816.html]men in pain[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/817.html]submission sex[/url] good.
  7. Viagra said 97 days later:
    Thanx! Viagra [url=http://discussions.csbsju.edu/influence/messages/1/viagra-131.html ]Viagra[/url] http://discussions.csbsju.edu/influence/messages/1/viagra-131.html
  8. surrender said 97 days later:
    Best ultimate surrender fucking machines men in pain submission sex [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/814.html]ultimate surrender[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/815.html]fucking machines[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/816.html]men in pain[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/817.html]submission sex[/url] good.
  9. Submission said 97 days later:
    Hi ultimate surrender fucking machines men in pain submission sex [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9629]ultimate surrender[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9630]fucking machines[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9636]men in pain[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9643]submission sex[/url] ok.
  10. surrender said 98 days later:
    Best ultimate surrender fucking machines men in pain submission sex [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/814.html]ultimate surrender[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/815.html]fucking machines[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/816.html]men in pain[/url] [url=http://distance.tstc.edu/Users/ITSE2317/wwwboard/messages/817.html]submission sex[/url] good.
  11. Submission said 98 days later:
    Hi ultimate surrender fucking machines men in pain submission sex [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9629]ultimate surrender[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9630]fucking machines[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9636]men in pain[/url] [url=http://heron.snell.clarkson.edu/~horn/classes/comm444/bboard/message.cgi?0:9643]submission sex[/url] ok.
  12. Tematic said 101 days later:
    Some [url=http://swiki.fcla.edu:8000/SRN/uploads/20/fuckingmachines.html]fucking machines[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/meninpain.html]men in pain[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/sexandsubmission.html]sex and submission[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/ultimatesurrender.html]ultimate surrender[/url] fucking machines men in pain sex and submission ultimate surrender [url="http://swiki.fcla.edu:8000/SRN/uploads/20/fuckingmachines.html"]fucking machines[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/meninpain.html"]men in pain[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/sexandsubmission.html"]sex and submission[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/ultimatesurrender.html"]ultimate surrender[/url] best.
  13. Tematic said 101 days later:
    Some [url=http://swiki.fcla.edu:8000/SRN/uploads/20/fuckingmachines.html]fucking machines[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/meninpain.html]men in pain[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/sexandsubmission.html]sex and submission[/url] [url=http://swiki.fcla.edu:8000/SRN/uploads/20/ultimatesurrender.html]ultimate surrender[/url] fucking machines men in pain sex and submission ultimate surrender [url="http://swiki.fcla.edu:8000/SRN/uploads/20/fuckingmachines.html"]fucking machines[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/meninpain.html"]men in pain[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/sexandsubmission.html"]sex and submission[/url] [url="http://swiki.fcla.edu:8000/SRN/uploads/20/ultimatesurrender.html"]ultimate surrender[/url] best.
  14. viagra alternative said 101 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). viagra online [url=http://www8.vjc.edu/AlanPenczek/discuss/msgReader$210 ]viagra online[/url] http://www8.vjc.edu/AlanPenczek/discuss/msgReader$210
  15. which is best cialis viagra or levitra said 101 days later:
    Cialis is a new treatment for male erectile dysfunction (ED). Cialis is an almond-shaped yellow tablet and is swallowed. cialis soft tabs [url=http://www8.vjc.edu/AlanPenczek/discuss/msgReader$226 ]cialis soft tabs[/url] http://www8.vjc.edu/AlanPenczek/discuss/msgReader$226
  16. robingoood said 101 days later:
    Get [url=http://www.rso.cmich.edu/prevet/messageboard/00004848.htm]ultimate surrender[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484a.htm]fucking machines[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484e.htm]men in pain[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/00004850.htm]sex and submission[/url] ultimate surrender fucking machines men in pain sex and submission here.
  17. visionbe said 101 days later:
    All [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000562.htm?sexandsubmission]sex and submission[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000563.htm?fuckingmachines]fucking machines[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000564.htm?ultimatesurrender]ultimate surrender[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000561.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain get it.
  18. seryboy said 101 days later:
    Best [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003a.htm?sexandsubmission]sex and submission[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003c.htm?fuckingmachines]fucking machines[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003d.htm?ultimatesurrender]ultimate surrender[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003f.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain site.
  19. generic cialis said 102 days later:
    Cialis is a new treatment for male erectile dysfunction (ED). Cialis is an almond-shaped yellow tablet and is swallowed. online cialis [url=http://www.behavior-analyst-online.org/forum/messages/458/cialis-560.html ]online cialis[/url] http://www.behavior-analyst-online.org/forum/messages/458/cialis-560.html
  20. viagra alternative said 102 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). viagra side effect headaches [url=http://www.behavior-analyst-online.org/forum/messages/458/viagra-552.html ]viagra side effect headaches[/url] http://www.behavior-analyst-online.org/forum/messages/458/viagra-552.html
  21. robingoood said 102 days later:
    Get [url=http://www.rso.cmich.edu/prevet/messageboard/00004848.htm]ultimate surrender[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484a.htm]fucking machines[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484e.htm]men in pain[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/00004850.htm]sex and submission[/url] ultimate surrender fucking machines men in pain sex and submission here.
  22. visionbe said 102 days later:
    All [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000562.htm?sexandsubmission]sex and submission[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000563.htm?fuckingmachines]fucking machines[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000564.htm?ultimatesurrender]ultimate surrender[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000561.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain get it.
  23. seryboy said 102 days later:
    Best [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003a.htm?sexandsubmission]sex and submission[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003c.htm?fuckingmachines]fucking machines[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003d.htm?ultimatesurrender]ultimate surrender[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003f.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain site.
  24. state farm auto insurance website said 102 days later:
    Information about all lines of auto, car, health insurance. It is easy and fast to get insurance rate comparisons, and buy your auto insurance policy instantly. auto company farm insurance mutual state [url=https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--53 ]auto company farm insurance mutual state[/url] https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--53
  25. state farm auto insurance said 102 days later:
    Information about all lines of auto, car, health insurance. Find medical health insurance quotes for affordable health insurance in all states. state farm auto insurance website [url=https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--53 ]state farm auto insurance website[/url] https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--53
  26. pet insurance uk said 102 days later:
    Information about all lines of auto, car, health insurance. It is easy and fast to get insurance rate comparisons, and buy your auto insurance policy instantly. cheap pet insurance [url=https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--50 ]cheap pet insurance[/url] https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--50
  27. pet insurance plan said 102 days later:
    Information about all lines of auto, car, health insurance. It is easy and fast to get insurance rate comparisons, and buy your auto insurance policy instantly. pet insurance [url=https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--50 ]pet insurance[/url] https://itc.utk.edu/cgi-bin/netforum/nutr/a/3--50
  28. robingoood said 102 days later:
    Get [url=http://www.rso.cmich.edu/prevet/messageboard/00004848.htm]ultimate surrender[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484a.htm]fucking machines[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/0000484e.htm]men in pain[/url] [url=http://www.rso.cmich.edu/prevet/messageboard/00004850.htm]sex and submission[/url] ultimate surrender fucking machines men in pain sex and submission here.
  29. visionbe said 102 days later:
    All [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000562.htm?sexandsubmission]sex and submission[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000563.htm?fuckingmachines]fucking machines[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000564.htm?ultimatesurrender]ultimate surrender[/url] [url=http://www.hcs.k12.nc.us/CLCS/_CLCS/00000561.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain get it.
  30. seryboy said 102 days later:
    Best [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003a.htm?sexandsubmission]sex and submission[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003c.htm?fuckingmachines]fucking machines[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003d.htm?ultimatesurrender]ultimate surrender[/url] [url=http://faculty.whatcom.ctc.edu/JMasura/_a150dis/0000003f.htm?meninpain]men in pain[/url] sex and submission fucking machines ultimate surrender men in pain site.
  31. female viagra said 102 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). free viagra [url=http://discussions.csbsju.edu/general/messages/25/viagra-85.html ]free viagra[/url] http://discussions.csbsju.edu/general/messages/25/viagra-85.html
  32. Viagra said 107 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). Viagra [url=http://thepregnancystore.com/discus/messages/6/viagra-79.html ]Viagra[/url] http://thepregnancystore.com/discus/messages/6/viagra-79.html female viagra [url=http://00ec139.netsolhost.com/discus/messages/234/viagra-13096.html ]female viagra[/url] http://00ec139.netsolhost.com/discus/messages/234/viagra-13096.html
  33. buy viagra online said 107 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). Viagra [url=http://thepregnancystore.com/discus/messages/6/viagra-79.html ]Viagra[/url] http://thepregnancystore.com/discus/messages/6/viagra-79.html buy viagra [url=http://00ec139.netsolhost.com/discus/messages/234/viagra-13096.html ]buy viagra[/url] http://00ec139.netsolhost.com/discus/messages/234/viagra-13096.html
  34. hoodme said 107 days later:
    Here [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e1.htm?hoodia]hoodia[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000df.htm?accutane]accutane[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e4.htm?ViagraSOFT]Viagra SOFT[/url] hoodia accutane Viagra SOFT ok.
  35. pharmcial said 107 days later:
    Get [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e0.htm?propecia]propecia[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e8.htm?viagracialislevitra]viagra cialis levitra[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e3.htm?CialisSOFT]Cialis SOFT[/url] propecia viagra cialis levitra Cialis SOFT this.
  36. sampharm said 107 days later:
    Hi [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e2.htm?soma]soma[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e6.htm?cialislevitra]cialis levitra[/url] [url=http://faculty.etsu.edu/SHEEK/_reqdis/000000e5.htm?cheapviagra]cheap viagra[/url] soma cialis levitra cheap viagra good.
  37. abrabum said 121 days later:
    this [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f1d.htm]Zithromax[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f1c.htm]Viagra SOFT[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f1b.htm]Cialis SOFT[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f1a.htm]cheap viagra[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f19.htm]Ionamin[/url] Zithromax Viagra SOFT Cialis SOFT cheap viagra Ionamin [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f1d.htm"]Zithromax[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f1c.htm"]Viagra SOFT[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f1b.htm"]Cialis SOFT[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f1a.htm"]cheap viagra[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f19.htm"]Ionamin[/url] good
  38. bumshvabra said 121 days later:
    See [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f0e.htm]Propecia[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f0d.htm]Prozac[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f0c.htm]Ultram[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f0b.htm]Adipex[/url] [url=http://dtc.pima.edu/~jjarchow/_disc1/00001f0a.htm]Soma[/url] Propecia Prozac Ultram Adipex Soma [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f0e.htm"]Propecia[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f0d.htm"]Prozac[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f0c.htm"]Ultram[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f0b.htm"]Adipex[/url] [url="http://dtc.pima.edu/~jjarchow/_disc1/00001f0a.htm"]Soma[/url] all
  39. the mosquito ringtone said 121 days later:
    The best free music and RingTone download site in the world including ringtones for verizon, sprint and cingular. mosquito buzz ringtone [url=http://ott.educ.msu.edu/x-pacific/english/forum/forum_posts.asp?TID=2465 ]mosquito buzz ringtone[/url] http://ott.educ.msu.edu/x-pacific/english/forum/forum_posts.asp?TID=2465
  40. buy viagra online said 121 days later:
    Viagra is a prescription drug used to treat erection difficulties, such as erectile dysfunction (ED). buy viagra [url=http://hal.cs.berkeley.edu/cgi-bin/bugzilla/attachment.cgi?id=3 ]buy viagra[/url] http://hal.cs.berkeley.edu/cgi-bin/bugzilla/attachment.cgi?id=3
  41. Viagra said 138 days later:
    Viagra [url=http://www.ccaurora.edu/comm/_disc1/000006ea.htm ]Viagra[/url] Cialis [url=http://www.ccaurora.edu/comm/_disc1/000006eb.htm ]Cialis[/url]

Trackbacks

Use the following link to trackback from your own site:
http://blog.technohippy.net/articles/trackback/23

  1. From Xanax.
    Xanax.
    Xanax.
  2. From Tramadol.
    Tramadol.
    Tramadol.
  3. From Tramadol.
    Tramadol.
    Tramadol.
  4. From Cialis.
    Cialis.
    Cialis.
  5. From Cialis.
    Cialis.
    Cialis.
  6. From Cialis.
    Cialis.
    Cialis.
  7. From Protonix.
    Protonix.
    Protonix.
  8. From Xanax.
    Xanax.
    Xanax.
  9. From Carisoprodol.
    Carisoprodol.
    Carisoprodol.
  10. From Phentermine.
    Phentermine.
    Phentermine.
  11. From Phentermine.
    Phentermine.
    Phentermine.
  12. From Ambien.
    Ambien.
    Ambien.
  13. From Cialis.
    Cialis.
    Cialis.
  14. From Cialis.
    Cialis.
    Cialis.
  15. From Buy phentermine.
    Buy phentermine.
    Buy phentermine.
  16. From Viagra.
    Viagra.
    Viagra.
  17. From Cialis.
    Cialis.
    Cialis.
  18. From Adipex.
    Adipex.
    Adipex.
  19. From Adipex.
    Adipex.
    Adipex.
  20. From Tramadol.
    Tramadol.
    Tramadol.
  21. From Zoloft.
    Zoloft.
    Zoloft.
  22. From Zoloft.
    Zoloft.
    Zoloft.
  23. From Zoloft.
    Zoloft.
    Zoloft.
  24. From Alprazolam.
    Alprazolam.
    Alprazolam.
  25. From Cheap phentermine.
    Cheap phentermine.
    Cheap phentermine.
  26. From Phentermine.
    Phentermine.
    Phentermine.
  27. From Phentermine.
    Phentermine.
    Phentermine.
  28. From Xanax.
    Xanax.
    Xanax.
  29. From Xanax.
    Xanax.
    Xanax.
  30. From Phentermine.
    Phentermine.
    Phentermine.
  31. From Xanax.
    Xanax.
    Xanax.
  32. From Adipex.
    Adipex.
    Adipex.
  33. From Xanax.
    Xanax.
    Xanax.
  34. From Xanax.
    Xanax.
    Xanax.
  35. From Soma.
    Soma.
    Soma.
  36. From Ambien.
    Ambien.
    Ambien.
  37. From Soma.
    Soma.
    Soma.
  38. From Carisoprodol.
    Carisoprodol.
    Carisoprodol.
  39. From Ambien.
    Ambien.
    Ambien.
  40. From Xenical.
    Xenical.
    Xenical.
  41. From Hydrocodone.
    Hydrocodone.
    Hydrocodone.
  42. From Vicodin.
    Vicodin.
    Vicodin.
  43. From Ambien.
    Ambien.
    Ambien.
  44. From Diazepam.
    Diazepam.
    Diazepam.
  45. From Tramadol.
    Tramadol.
    Tramadol.
  46. From Wellbutrin.
    Wellbutrin.
    Wellbutrin.
  47. From Hydrocodone.
    Hydrocodone.
    Hydrocodone.
  48. From Tramadol.
    Tramadol.
    Tramadol.
  49. From Diazepam.
    Diazepam.
    Diazepam.
  50. From Tramadol.
    Tramadol.
    Tramadol.
  51. From Carisoprodol.
    Carisoprodol.
    Carisoprodol.
  52. From Levitra.
    Levitra.
    Levitra.
  53. From Diazepam.
    Diazepam.
    Diazepam.
  54. From Alprazolam.
    Alprazolam.
    Alprazolam.
  55. From Buy xanax online.
    Buy xanax online.
    Buy xanax online.
  56. From Xanax.
    Xanax.
    Xanax.
  57. From Xanax.
    Xanax.
    Xanax.
  58. From Adipex.
    Adipex.
    Adipex.
  59. From Adipex.
    Adipex.
    Adipex.
  60. From Adipex.
    Adipex.
    Adipex.
  61. From Phentermine.
    Phentermine.
    Phentermine.
  62. From Alprazolam.
    Alprazolam.
    Alprazolam.
  63. From Vicodin.
    Vicodin.
    Vicodin.
  64. From Ambien.
    Ambien.
    Ambien.
  65. From Xanax.
    Xanax.
    Xanax.
  66. From Protonix.
    Protonix.
    Protonix.
  67. From Carisoprodol.
    Carisoprodol.
    Carisoprodol.
  68. From Xanax.
    Xanax.
    Xanax.
  69. From Valium.
    Valium.
    Valium.
  70. From Valium.
    Valium.
    Valium.
  71. From Valium.
    Valium.
    Valium.
  72. From Order xanax paying cod.
    Order xanax paying cod.
    Order xanax paying cod.
  73. From Buy xanax online.
    Buy xanax online.
    Buy xanax online.
  74. From Long term side effects from xanax.
    Long term side effects from xanax.
    Long term side effects from xanax.
  75. From Phentermine yellow.
    Phentermine yellow.
    Phentermine yellow.
  76. From Buy xanax without prescription in usa.
    Buy xanax without prescription in usa.
    Buy xanax without prescription in usa.
  77. From Ambien.
    Ambien.
    Ambien.
  78. From Purchashing xanax with mastercard.
    Purchashing xanax with mastercard.
    Purchashing xanax with mastercard.
  79. From Grapefruit juice and xanax.
    Xanax grapefruit juice.
    Xanax grapefruit juice.
  80. From Xanax weight gain.
    Xanax weight gain.
    Xanax weight gain.
  81. From Xanax and heart problems.
    Xanax and heart problems.
    Xanax and heart problems.
  82. From Guaranteed overnight phentermine.
    Guaranteed overnight phentermine.
    Guaranteed overnight phentermine.
  83. From Pictures of xanax.
    Pictures of xanax.
    Pictures of xanax.
  84. From Xanax grapefruit juice.
    Xanax grapefruit juice.
    Grapefruit juice and xanax. Xanax grapefruit juice.
  85. From Cheep phentermine.
    Cheep phentermine.
    Cheep phentermine.
  86. From Gold xanax bar.
    Gold xanax bar.
    Gold xanax bar.
  87. From Overdosing on xanax.
    Overdosing on xanax.
    Overdosing on xanax.
  88. From Phentermine.
    Phentermine.
    Phentermine.
  89. From Xanax detox diet phentermine pill.
    Xanax detox diet phentermine pill.
    Xanax detox diet phentermine pill.
  90. From Xanax pics.
    Xanax pics.
    Xanax pics.
  91. From Luxury hotel rome xanax description.
    Luxury hotel rome xanax description.
    Luxury hotel rome xanax description.
  92. From Adipexdrug addiction order phentermine online.
    Adipexdrug addiction order phentermine online.
    Adipexdrug addiction order phentermine online.
  93. From Cheap xanax online buy cheap xanax buy cheap xanax.
    Cheap xanax online buy cheap xanax buy cheap xanax.
    Cheap xanax online. Cheap xanax online buy cheap xanax buy cheap xanax.
  94. From Xanax death + alcohol.
    Xanax death + alcohol.
    Xanax death + alcohol.
  95. From Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
  96. From Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
  97. From Carrie carmichael phentermine.
    Carrie carmichael phentermine.
    Carrie carmichael phentermine.
  98. From Xanax abuse.
    Xanax abuse.
    Xanax abuse.
  99. From Diet pill xanax.
    Diet pill xanax.
    Diet pill xanax.
  100. From Buy phentermine.
    Buy phentermine.
    Buy phentermine.
  101. From Overnight xanax or alprazolam delivery.
    Overnight xanax or alprazolam delivery.
    Overnight xanax or alprazolam delivery.
  102. From Cialis.
    Cialis.
    Cialis.
  103. From Xanax grapefruit juice.
    Xanax grapefruit juice.
    Xanax grapefruit. Xanax grapefruit juice.
  104. From Quit xanax side effects.
    Quit xanax side effects.
    Quit xanax side effects.
  105. From Xanax withdrawl symptoms.
    Withdrawl symptoms form xanax.
    Withdrawl symptoms form xanax. Xanax withdrawl symptoms.
  106. From Order xanax no prescription.
    Order xanax with prescription.
    Order xanax with prescription.
  107. From Buy xanax online without a prescription.
    Buy xanax online without a prescription.
    Buy xanax online without a prescription.
  108. From Phentermine.
    Phentermine.
    Phentermine.
  109. From Xanax side effects.
    Xanax side effects.
    Xanax side effects.
  110. From Xanax detox bloghoster.
    Xanax detox bloghoster.
    Xanax detox bloghoster.
  111. From Xanax dosage.
    Xanax dosage.
    Xanax dosage.
  112. From Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
  113. From Buy xanax prescription consultation overnight delivery.
    Buy xanax prescription consultation overnight delivery.
    Buy xanax prescription consultation overnight delivery.
  114. From Cheap xanax overnight delivery.
    Cheap xanax overnight delivery.
    Cheap xanax overnight delivery.
  115. From Order xanax online.
    Order xanax online.
    Order xanax online.
  116. From Smoking xanax.
    Smoking xanax.
    Smoking xanax.
  117. From Online pharmacy xanax green tree.
    Online pharmacy xanax green tree.
    Online pharmacy xanax green tree.
  118. From Phentermine hoodia diet pill.
    Phentermine hoodia diet pill.
    Phentermine hoodia diet pill.
  119. From Anxiety disorder xanax xr to wean off effexor xr.
    Anxiety disorder xanax xr to wean off effexor xr.
    Anxiety disorder xanax xr to wean off effexor xr.
  120. From Xanax overnight.
    Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
  121. From Phentermine overnight delivery saturday.
    Phentermine overnight delivery saturday.
    Phentermine overnight delivery saturday.
  122. From Xanax and grpefruit juice.
    Xanax and grpefruit juice.
    Xanax and grpefruit juice.
  123. From Xanax bars.
    Xanax bars.
    Xanax bars.
  124. From Valium.
    Valium.
    Valium.
  125. From Buy xanax online.
    Buy xanax online.
    Buy xanax online.
  126. From Cheap phentermine online.
    Cheap phentermine online.
    Cheap phentermine online.
  127. From Long term side effects from xanax.
    Long term side effects from xanax.
    Long term side effects from xanax.
  128. From Buy xanax online.
    Buy xanax online.
    Buy xanax online.
  129. From Order phentermine prescription.
    Order phentermine prescription.
    Order phentermine prescription.
  130. From Xanax cash on delivery overnight.
    Xanax cash on delivery overnight.
    Xanax cash on delivery overnight.
  131. From Cheap xanax online buy cheap xanax buy cheap xanax.
    Cheap xanax online buy cheap xanax buy cheap xanax.
    Cheap xanax online buy cheap xanax buy cheap xanax.
  132. From Buy no phentermine prescription.
    Buy no phentermine prescription.
    Buy no phentermine prescription.
  133. From Xanax and grapefruit.
    Xanax grapefruit juice.
    Xanax grapefruit juice.
  134. From Xanax or aprazolam overnight delivery.
    Xanax or aprazolam overnight delivery.
    Xanax or aprazolam overnight delivery.
  135. From Celexa interactions with xanax.
    Celexa interactions with xanax.
    Celexa interactions with xanax.
  136. From Anxiety disorders benzodiazepines xanax.
    Anxiety disorders benzodiazepines xanax.
    Anxiety disorders benzodiazepines xanax.
  137. From Amount of xanax to cause death.
    Amount of xanax to cause death.
    Xanax death. Amount of xanax to cause death.
  138. From Cialis.
    Cialis.
    Cialis.
  139. From Xanax to help you sleep.
    Xanax to help you sleep.
    Xanax to help you sleep.
  140. From Xanax.
    Xanax.
    Xanax.
  141. From Xanax 2c guaranteed overnight delivery.
    Xanax 2c guaranteed overnight delivery.
    Xanax 2c guaranteed overnight delivery.
  142. From Alternatives to phentermine.
    Alternatives to phentermine.
    Alternatives to phentermine.
  143. From Order generic xanax online with no prescription.
    Order generic xanax online with no prescription.
    Order generic xanax online with no prescription.
  144. From Discount phentermine.
    Discount phentermine.
    Discount phentermine.
  145. From Diet pill xanax.
    Diet pill xanax.
    Diet pill xanax.
  146. From Xanax overnight delivery guaranteed.
    Xanax overnight delivery guaranteed.
    Xanax overnight delivery guaranteed.
  147. From Xanax to help you sleep.
    Xanax to help you sleep.
    Xanax to help you sleep.
  148. From Gold xanax bar.
    Gold xanax bar.
    Gold xanax bar.
  149. From Buy xanax without prescription in usa.
    Buy xanax without prescription in usa.
    Buy xanax without prescription in usa.
  150. From Xanax.
    Xanax.
    Xanax.
  151. From Buy cialis.
    Buy cialis.
    Buy cialis.
  152. From Buy xanax online.
    Buy xanax online.
    Buy xanax online.
  153. From Hydrocodone prescription doctor.
    Hydrocodone prescription doctor.
    Hydrocodone prescription doctor.
  154. From Diazepam no prescription.
    Diazepam no prescription.
    Diazepam prescription. Diazepam no prescription.
  155. From Cheap domain xanax atspace org.
    Cheap domain xanax atspace org.
    Cheap domain xanax atspace org.
  156. From Phentermine aciphex aciphex phentermine actos risperdal.
    Phentermine aciphex aciphex phentermine actos risperdal.
    Phentermine aciphex aciphex phentermine actos risperdal.
  157. From Phentermine florida.
    Phentermine florida.
    Phentermine florida.
  158. From Seap debt counseling xanax online.
    Seap debt counseling xanax online.
    Seap debt counseling xanax online.
  159. From Phentermine sales gt buy phentermine online.
    Phentermine sales gt buy phentermine online.
    Phentermine online sales. Phentermine sales gt buy phentermine online.
  160. From Death from xanax.
    Amount of xanax to cause death.
    Amount of xanax to cause death.
  161. From 3mg xanax no prescription overnight delivery.
    3mg xanax no prescription overnight delivery.
    3mg xanax no prescription overnight delivery.
  162. From Top xanax pharmacy affiliate programs.
    Top xanax pharmacy affiliate programs.
    Top xanax pharmacy affiliate programs.
  163. From Tramadol.
    Tramadol.
    Tramadol.
  164. From Generic xanax 2 mg no prescription.
    Generic xanax 2 mg no prescription.
    Xanax no prescription. Generic xanax 2 mg no prescription.
  165. From Xanax side effects.
    Xanax side effects.
    Xanax side effects.
  166. From Phentermine zoloft.
    Phentermine zoloft.
    Phentermine zoloft.
  167. From Generic viagra.
    Generic viagra.
    Generic viagra.
  168. From Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery.
    Xanax norx needed one day fedex overnight delivery. Xanax next day.
  169. From Phentermine hoodia diet pill.
    Phentermine hoodia diet pill.
    Phentermine hoodia diet pill.
  170. From Ambien doctor.
    Ambien doctor.
    Ambien doctor.
  171. From Valium no prescription.
    Valium no prescription.
    Valium no prescription.
  172. From Fioricet.
    Fioricet.
    Fioricet.
  173. From Xanax.
    Xanax.
    Xanax.
  174. From Cialis.
    Cialis.
    Cialis.
  175. From Buy cialis.
    Buy cialis.
    Buy cialis.
  176. From Tramadol.
    Tramadol.
    Tramadol.
  177. From Generic viagra.
    Generic viagra.
    Generic viagra.

(leave url/email »)