Remote Connection timeout(seconds)
시간 늘려주면된다.
Remote Connection timeout(seconds)
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'gmail.com',
:user_name => 'account@gmail.com',
:password => 'password',
:authentication => :plain,
:enable_starttls_auto => true
}
…
# Gitlab application config file
# Email used for notification
# about new issues, comments
email:
from: account@gmail.com
…
class Timer {
var $classname = "Timer";
var $start = 0;
var $stop = 0;
var $elapsed = 0;
# Constructor
function Timer( $start = true ) {
if ( $start )
$this->start();
}
# Start counting time
function start() {
$this->start = $this->_gettime();
}
# Stop counting time
function stop() {
$this->stop = $this->_gettime();
$this->elapsed = $this->_compute();
}
# Get Elapsed Time
function elapsed() {
if ( !$elapsed )
$this->stop();
return $this->elapsed;
}
# Get Elapsed Time
function reset() {
$this->start = 0;
$this->stop = 0;
$this->elapsed = 0;
}
#### PRIVATE METHODS ####
# Get Current Time
function _gettime() {
$mtime = microtime();
$mtime = explode( " ", $mtime );
return $mtime[1] + $mtime[0];
}
# Compute elapsed time
function _compute() {
return $this->stop - $this->start;
}
}
$t=new Timer();
이런이런....머찌다...
비트 토렌트 윈도용 클라이언트다.
무려 한글도 지원!!
http://code.google.com/p/transmisson-remote-gui/
Redmine plugins: clipboard_image_paste 1.8 redmine_dashboard 2.2 redmine_hudson 2.1.2 redmine_image_clipboard_paste 1.0.0 redmine_issue_detailed_tabs_time 0.1.0 redmine_issue_extensions 0.2.0 redmine_issue_templates 0.0.7 redmine_lightbox 0.0.1 redmine_monitoring_controlling 0.1.1 redmine_my_roadmaps 0.1.13_redmine2.3 redmine_redcarpet_formatter 2.1 redmine_redcarpet_viewer 0.0.2 redmine_wiki_extensions 0.6.4 redmine_youtube_video 1.0.0
Redmine plugins: redmine_image_clipboard_paste 1.0.0 redmine_issue_completion 0.0.2 redmine_lightbox2 0.2.5 redmine_redcarpet_viewer 0.0.2 redmine_webhook 0.0.1
3.2.0에서 지원안하는것들을 뺐더니 몇가지 지원안하네