*** empty log message ***
authorroot <root>
Tue, 17 Jan 2006 17:01:54 +0000 (17:01 +0000)
committerroot <root>
Tue, 17 Jan 2006 17:01:54 +0000 (17:01 +0000)
Changes
MANIFEST
src/perl/selection-pastebin
src/urxvt.pm

diff --git a/Changes b/Changes
index 277129f34adc6798cdd3c5fdadfd3ca35a1b1a97..ad0121c03d9cba5d9cd5f59634dba345ff8b29d4 100644 (file)
--- a/Changes
+++ b/Changes
@@ -13,6 +13,8 @@ WISH: just for fun, do shade and tint with XRender.
 WISH: support tex fonts
 
 9.0
+TODO: remove ||1 in main.C
+TODO: on_seelction_popup hook or so.
         - new script: perl/selection-pastebin
         - improved security of setuid/setgid operation, which is now
           encouraged, by moving privileged operations into a separate
index 4281d31b1ced0263de3c1ca22c2f3e76d3c4a57e..5518d5bbec1be274bf71e8a43d06d538cfe37d34 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -164,8 +164,8 @@ src/perl/urxvt-popup
 src/perl/selection
 src/perl/option-popup
 src/perl/selection-popup
-src/perl/selection-pastebin
 src/perl/selection-autotransform
+src/perl/selection-pastebin
 src/perl/searchable-scrollback
 src/perl/mark-urls
 src/perl/example-refresh-hooks
index ac208acb292eb042e98b908bc617fc9ae5a31565..bfdeb8ae0efa08ef875236d7d7bf89db4e3f6e0b 100644 (file)
@@ -7,11 +7,11 @@ my $pastebin_url;
 sub on_start {
    my ($self) = @_;
    $pastebin_cmd =
-      $self->x_resource ("selection-pastebin-cmd")
+      $self->x_resource ("selection-pastebin.cmd")
       or "scp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
 
    $pastebin_url = 
-      $self->x_resource ("selection-pastebin-url")
+      $self->x_resource ("selection-pastebin.url")
       or "http://www.ta-sa.org/files/txt/";
 
    ()
index b565adf79585b43369323149debd5a58475ad771..ce1a7ed47508f2d1c07b22a520838914fa0375c2 100644 (file)
@@ -166,20 +166,30 @@ overlays or changes.
 
 =item selection-pastebin
 
-Uploads the selection as textfile to a remote site.
+This is a little rarely useful extension that Uploads the selection as
+textfile to a remote site (or does other things).
+
+It listens to the C<selection-pastebin:remote-pastebin> keyboard command,
+i.e.
 
    URxvt.keysym.C-M-e: perl:selection-pastebin:remote-pastebin
 
-To set the command to upload the file set this resource:
+Pressing this combination runs a command with C<%> replaced by the name of
+the textfile. This command can be set via a resource:
+
+   URxvt.selection-pastebin.cmd: rsync -apP % ruth:/var/www/www.ta-sa.org/files/txt/.
+
+And the default is likely not useful to anybody but the few people around
+here :)
 
-   URxvt.selection-pastebin-cmd: rsync -apP % ruth:/var/www/www.ta-sa.org/files/txt/.
+The name of the textfile is the hex encoded md5 sum of the selection, so
+the same content should lead to the same filename.
 
-The % is the placeholder for the textfile. The name of the textfile is the hex encoded 
-md5 sum of the selection.
-After an successful upload the selection will be replaced by the following url 
-(the % is the placeholder for the filename):
+After a successful upload the selection will be replaced by the text given
+in the C<selection-pastebin-url> resource (again, the % is the placeholder
+for the filename):
 
-   URxvt.selection-pastebin-url: http://www.ta-sa.org/files/txt/%
+   URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/%
 
 =back