Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
submission report
Commit Description:
submission report
function updateSiteList () {
currentCountry = document . getElementById ( "site_country_id" ). value ;
sites = siteList [ currentCountry ];
siteSelect = document . getElementById ( "login_site_id" );
old_len = siteSelect . length ;
// clear old box
for ( i = 0 ; i < old_len ; i ++ ) siteSelect . remove ( 0 );
if ( currentCountry == 0 ) {
for ( i = 0 ; i < allSiteList . length ; i ++ ) {
if ( allSiteList [ i ] != null ) {
try {
siteSelect . add ( new Option ( allSiteList [ i ], "" + i , false , false ), null );
} catch ( ex ) {
siteSelect . add ( new Option ( allSiteList [ i ], "" + i , false , false ));
}
}
}
} else {
for ( i = 0 ; i < sites . length ; i ++ ) {
if ( sites [ i ] != null ) {
try {
siteSelect . add ( new Option ( sites [ i ], "" + i , false , false ), null );
} catch ( ex ) {
siteSelect . add ( new Option ( sites [ i ], "" + i , false , false ));
}
}
}
}
}
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings