##// END OF EJS Templates
Update CodeMirror CSS and Javascript files to version 3.15, under MIT-permissive license....
Update CodeMirror CSS and Javascript files to version 3.15, under MIT-permissive license. These files are exactly as they appear the upstream release 3.15 of Codemirror, which was released under an MIT-permissive license. To extract these files, I did the following: I downloaded the following file: http://codemirror.net/codemirror-3.15.zip with sha256sum of: $ sha256sum codemirror-3.15.zip 8cf3a512899852fd4e3833423ea98d34918cbf7ee0e4e0b13f8b5e7b083f21b9 codemirror-3.15.zip And extracted from it the Javascript and CSS files herein committed, which are licensed under the MIT-permissive license, placing them into their locations in: rhodecode/public/{css,js}/ Using the procedure above, the only difference found between these files in RhodeCode 2.2.5 release and herein were a few comments and whitespace. Note that the file .../public/js/mode/meta_ext.js does *not* appear to be part of CodeMirror and therefore is not included in this commit.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4120:bb9ef063 rhodecode-2.2.5-gpl
Show More
repo_group_edit_advanced.html
27 lines | 1.2 KiB | text/html | HtmlLexer
<div style="font-size: 24px; color: #666666; padding: 0px 0px 10px 0px">${_('Repository Group: %s') % c.repo_group.group_name}</div>
<dl class="dl-horizontal">
<%
elems = [
(_('Top level repositories'), c.repo_group.repositories.count(), ''),
(_('Total repositories'), c.repo_group.repositories_recursive_count, ''),
(_('Children groups'), c.repo_group.children.count(), ''),
(_('Created on'), h.fmt_date(c.repo_group.created_on), ''),
(_('Owner'), h.person(c.repo_group.user.username), ''),
]
%>
%for dt, dd, tt in elems:
<dt style="width:150px; text-align: left">${dt}:</dt>
<dd style="margin-left: 160px" title="${tt}">${dd}</dd>
%endfor
</dl>
${h.form(h.url('repos_group', group_name=c.repo_group.group_name),method='delete')}
<button class="btn btn-small btn-danger" type="submit"
onclick="return confirm('${ungettext('Confirm to delete this group: %s with %s repository',
'Confirm to delete this group: %s with %s repositories',
c.repo_group.repositories_recursive_count) % (c.repo_group.group_name, c.repo_group.repositories_recursive_count)}');">
<i class="icon-remove-sign"></i>
${_('Delete this repository group')}
</button>
${h.end_form()}