01 May 2013 - After the site upgrade, all passwords were reset and you will need to ask the site for a login reset on your first connection.

Ctrl + C, Ctrl + V etc.

How to make copy, paste, cut ... functions in GtkTextView and GtkEntry widgets.
I think it should by somethink like.

<?php
class new_apl extends GtkWindow
{
  function
__construct()   
  {
   
$this->connect('key-press-event', array($this,'onKeyPress'));
    ....
  }
# /func
 
 
 
function onKeyPress($widget, $event)
  { 
    if(
$event->state & Gdk::CONTROL_MASK && $event->keyval == Gdk::KEY_c){
      
/*
        * there should be code that get selected text and put it into windows' buffer, but i dont know haw
       * same code these pasting and cuting
       **/
   
}
  }
# / func
} # /class
?>

may be php doesn't have access to windows' buffer ? then i could write simple program (in C for example) working this buffer.