The following document contains the results of PMD's CPD 6.13.0.
| File | Line |
|---|---|
| fr/paris/lutece/plugins/lutecetools/service/GitHubService.java | 338 |
| fr/paris/lutece/plugins/lutecetools/service/GitLabService.java | 176 |
}
/**
* fill site infos from xdoc site index
*
* @param component
* The component
*/
private void fillSiteInfos( Component component, StringBuilder sbLogs )
{
String strScmUrl = component.get( Component.SCM_URL );
if ( strScmUrl != null )
{
if ( strScmUrl.endsWith( ".git" ) )
{
strScmUrl = strScmUrl.substring( 0, strScmUrl.length( ) - 4 );
}
String strXdocSiteIndexUrl = strScmUrl + SITE_INDEX_PATH_PART1 + SITE_INDEX_PATH_PART2;
SiteInfoService.instance( ).getSiteInfos( component, strXdocSiteIndexUrl, "en", sbLogs );
strXdocSiteIndexUrl = strScmUrl + SITE_INDEX_PATH_PART1 + "fr/" + SITE_INDEX_PATH_PART2;
SiteInfoService.instance( ).getSiteInfos( component, strXdocSiteIndexUrl, "fr", sbLogs );
}
}
/**
* Get the number of commits since the last release
*
* @param repo The repository
*
* @return The number of commits
*/
private int getNumberOfCommitsSinceLastRelease( GHRepository repo ) | |