summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.apache/META-INF/SOURCE-MANIFEST.MF
Commit message (Expand)AuthorAgeFilesLines
* JGit v6.0.0.202111241155-rc1v6.0.0.202111241155-rc1Matthias Sohn2021-11-241-2/+2
* Prepare 6.0.0-SNAPSHOT buildsMatthias Sohn2021-11-171-2/+2
* JGit v6.0.0.202111161950-m3v6.0.0.202111161950-m3Matthias Sohn2021-11-171-2/+2
* Prepare 6.0.0-SNAPSHOT buildsMatthias Sohn2021-10-281-2/+2
* JGit v6.0.0.202110270955-m2v6.0.0.202110270955-m2Matthias Sohn2021-10-271-2/+2
* Prepare 6.0.0-SNAPSHOT buildsMatthias Sohn2021-10-061-2/+2
* JGit v6.0.0.202110060947-m1v6.0.0.202110060947-m1Matthias Sohn2021-10-061-2/+2
* Prepare 6.0.0-SNAPSHOT buildsMatthias Sohn2020-02-231-2/+2
* Prepare 5.7.0-SNAPSHOT buildsMatthias Sohn2019-12-051-2/+2
* Prepare 5.6.0-SNAPSHOT buildsMatthias Sohn2019-08-291-2/+2
* Prepare 5.5.0-SNAPSHOT buildsMatthias Sohn2019-06-131-2/+2
* Prepare 5.4.1-SNAPSHOT buildsMatthias Sohn2019-06-121-2/+2
* JGit v5.4.0.201906121030-rv5.4.0.201906121030-rMatthias Sohn2019-06-121-2/+2
* JGit v5.4.0.201906120450-rMatthias Sohn2019-06-121-2/+2
* Prepare 5.4.0-SNAPSHOT buildsMatthias Sohn2019-05-221-2/+2
* JGit v5.4.0.201905221418-m3v5.4.0.201905221418-m3Matthias Sohn2019-05-221-2/+2
* Prepare 5.4.0-SNAPSHOT buildsMatthias Sohn2019-05-151-2/+2
* JGit v5.4.0.201905081430-m2v5.4.0.201905081430-m2Matthias Sohn2019-05-081-2/+2
* Add missing source bundles and add them to a single source featureMatthias Sohn2019-04-021-0/+7
span class="w"> l(:button_unwatch) : l(:button_watch) url = watch_path( :object_type => objects.first.class.to_s.underscore, :object_id => (objects.size == 1 ? objects.first.id : objects.map(&:id).sort) ) method = watched ? 'delete' : 'post' link_to text, url, :remote => true, :method => method, :class => css end # Returns the css class used to identify watch links for a given +object+ def watcher_css(objects) objects = Array.wrap(objects) id = (objects.size == 1 ? objects.first.id : 'bulk') "#{objects.first.class.to_s.underscore}-#{id}-watcher" end # Returns a comma separated list of users watching the given object def watchers_list(object) remove_allowed = User.current.allowed_to?(:"delete_#{object.class.name.underscore}_watchers", object.project) content = ''.html_safe lis = object.watcher_users.sorted.collect do |user| s = ''.html_safe s << avatar(user, :size => "16").to_s s << link_to_principal(user, class: user.class.to_s.downcase) if object.respond_to?(:visible?) && user.is_a?(User) && !object.visible?(user) s << content_tag('span', l(:notice_invalid_watcher), class: 'icon-only icon-warning', title: l(:notice_invalid_watcher)) end if remove_allowed url = {:controller => 'watchers', :action => 'destroy', :object_type => object.class.to_s.underscore, :object_id => object.id, :user_id => user} s << ' ' s << link_to(l(:button_delete), url, :remote => true, :method => 'delete', :class => "delete icon-only icon-del", :title => l(:button_delete)) end content << content_tag('li', s, :class => "user-#{user.id}") end content.present? ? content_tag('ul', content, :class => 'watchers') : content end def watchers_checkboxes(object, users, checked=nil) users.map do |user| c = checked.nil? ? object.watcher_user_ids.include?(user.id) : checked tag = check_box_tag 'issue[watcher_user_ids][]', user.id, c, :id => nil content_tag 'label', "#{tag} #{h(user)}".html_safe, :id => "issue_watcher_user_ids_#{user.id}", :class => "floating" end.join.html_safe end end