]> git.quilime.com - clmpr.git/commitdiff
updated about, footer
authorGabriel Dunne <gdunne@quilime.com>
Tue, 27 Dec 2011 16:44:48 +0000 (08:44 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Tue, 27 Dec 2011 16:44:48 +0000 (08:44 -0800)
about.html
clmp.js [deleted file]
footer.html

index a0f07242ef781507f03a29f5bea199755d7d72dd..4d84ca1308827a857cc99043c1085e15bba4db7b 100644 (file)
@@ -5,17 +5,12 @@
        <br /><br />
 </p>
 
-
-<p>
-use clmpr (<b>/klum-per/</b>) to save urls
-<p>
-
 <strong>to use: </strong> <br />
 <?php
     $js = file_get_contents('bookmarklet.js');
     $js = str_replace('{BASE_URL}', BASE_URL, $js);
 ?>
-drag this link [<a href="javascript:<?=$js?>">+</a>] to your bookmark bar and click to save the url
+drag this link [<a href="javascript:<?=$js?>">+</a>] to your bookmark bar and click to bookmark the url
 </ol>
 <br />
 <br />
@@ -35,7 +30,7 @@ semantic
 </p>
 
 <p>
-clmpr is open source. fork the project on <a href="http://github.com/quilime/clmpr">github</a>
+clmpr is <a href="http://github.com/quilime/clmpr">open source</a>
 <br />
 <br />
 </p>
diff --git a/clmp.js b/clmp.js
deleted file mode 100644 (file)
index 74266b5..0000000
--- a/clmp.js
+++ /dev/null
@@ -1,53 +0,0 @@
-// clmp.js
-(function()
-{
-    var l = 0; $(window).width() / 2;
-    var t = 0; $(window).height() / 2;
-
-    var c = $([
-        '<div style="font-family:monospace !important;font-size:11px !important;background:#fff;border:5px solid #000;color:#000;padding:30px;position:fixed;left:' +  l + 'px;top:' + t + 'px">'
-    ,   '<form id="clmpr">'
-    ,   'title: <input name="title" value="' + $('title').text() + '" /><br/>'
-    ,   'desc: &nbsp;<textarea name="desc"></textarea><br/>'
-    ,   'tags: &nbsp;<input name="tags" /><br/><br/>'
-    ,   '<input name="submit" type="button" value="save">'
-    ,   '</form>'
-    ,   '</div>'
-    ].join(''));
-
-    $('body').append(c);
-
-    
-    var params = {
-        'title': "test",
-        'referer': location.href,
-        'tags': "tags",
-        'desc': "desc"
-    };
-    var urlb = [];
-    urlb.push('http://clmpr/save.php');
-    urlb.push('?');
-    for (var n in params) {
-        urlb.push(encodeURIComponent(n));
-        urlb.push('=');
-        urlb.push(encodeURIComponent(params[n]));
-        urlb.push('&');
-    }
-    
-    // this may be caught by a popup blocker
-    if (true) {
-        window.open(urlb.join(''),
-                'saved ' + new Date().getTime(),
-                'status=no,resizable=no,scrollbars=no,personalbar=no,directories=no,location=no,toolbar=no,menubar=no,' +
-                'width=300,height=50,left=0,top=0');
-    }
-
-}
-)();
-
-/*
-
-javascript:var i,s,ss=['http://kathack.com/js/kh.js','http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'];for(i=0;i!=ss.length;i++){s=document.createElement('script');s.src=ss[i];document.body.appendChild(s);}void(0);
-javascript:void((function(){var%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://ffffound.com/bookmarklet.js');document.body.appendChild(e)})());
-
-*/
\ No newline at end of file
index 84c9b697300b28648115b7f13742239c27e6e10e..66c6e3688ed3ecce36507cb18d996ccda5aaf82e 100644 (file)
@@ -1,6 +1,6 @@
 <div id="footer">
 <p>
-<a href="http://<?php echo BASE_URL; ?><?php echo $_SERVER['REQUEST_URI'] ?>/.xml">rss</a> | <a class="about" href="/about">about</a> | <a href="https://github.com/quilime/clmpr">source code</a>
+<a href="http://<?php echo BASE_URL; ?><?php echo $_SERVER['REQUEST_URI'] ?>/.xml">rss</a> | <a href="/about">about</a>
 </p>
 </div>