commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringlengths
1
30
license
stringclasses
13 values
repos
stringlengths
5
127k
subject_ms
stringlengths
9
1.83k
35d0e5d463f1660e44d13e58c12271cd538a5da8
app/views/layouts/admin.rhtml
app/views/layouts/admin.rhtml
<!DOCTYPE html PUBLIC "-//w3c//dtd XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Typo admin: <%= controller.controller_name %></title> <%= stylesheet_link_tag "admin.css" %> </head> <body> <div id="container"> <div id="header"> <h1><%= link_to "Typo admin (#{config['blog_name']})", "/admin/" %></h1> </div> <div id="info"> <%= current_user_notice %> </div> <div id="navigation"> <ul> <li><%= link_to_section "General", :controller=>"/admin/general"%></li> <li><%= link_to_section "Articles", :controller=>"/admin/content"%></li> <li><%= link_to_section "Users", :controller=>"/admin/users"%></li> </ul> </div> <div id="flash"> <%= render_flash %> </div> <div id="main"> <%= @content_for_layout %> </div> </div> </body> </html>
<!DOCTYPE html PUBLIC "-//w3c//dtd XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Typo admin: <%= controller.controller_name %></title> <%= stylesheet_link_tag "admin.css" %> </head> <body> <div id="container"> <div id="header"> <h1><%= link_to "Typo admin (#{config['blog_name']})", "/admin/" %></h1> </div> <div id="info"> <%= current_user_notice rescue nil %> </div> <div id="navigation"> <ul> <li><%= link_to_section "General", :controller=>"/admin/general" rescue nil %></li> <li><%= link_to_section "Articles", :controller=>"/admin/content" rescue nil %></li> <li><%= link_to_section "Users", :controller=>"/admin/users" rescue nil %></li> </ul> </div> <div id="flash"> <%= render_flash rescue nil %> </div> <div id="main"> <%= @content_for_layout %> </div> </div> </body> </html>
Add nil rescues around helper functions not available to account controller (need a better way for this though)
Add nil rescues around helper functions not available to account controller (need a better way for this though) git-svn-id: 70ab0960c3db1cbf656efd6df54a8f3de72dc710@179 820eb932-12ee-0310-9ca8-eeb645f39767
RHTML
mit
swombat/blog,swombat/blog,swombat/blog,swombat/blog,swombat/blog
Tambah tiada penyelamatan di sekitar fungsi pembantu yang tidak tersedia untuk pengawal akaun (memerlukan cara yang lebih baik untuk ini walaupun)
e9eb18b754a6ad243f0458488e1146b4d9f957c7
app/views/emarketing/index.rhtml
app/views/emarketing/index.rhtml
<script> SourcesCharts = { chart: null, date: "<%= @date.strftime('%F') %>", next: function() { $j.getJSON("<%= url_for :action => 'referrer_sources' %>", {date: SourcesCharts.date, direction: 'next'}, function(res) {SourcesCharts.load(res);}); }, prev: function() { $j.getJSON("<%= url_for :action => 'referrer_sources' %>", {date: SourcesCharts.date, direction: 'prev'}, function(res) {SourcesCharts.load(res);}); }, load: function(data) { SourcesCharts.date = data.date; SourcesCharts.chart.load(data); for(var i=0; i<data.total_values.length; i++) { $j('#chart_day' + (i+1)).text(data.days[i]); $j('#chart_date' + (i+1)).text(data.dates[i]); $j('#chart_value' + (i+1)).text(data.total_values[i] == '' ? '' : data.total_values[i]); } SourcesCharts.chart.draw(); } } </script> <div class='admin_content'> <%= subpage_display :emarketing, @subpages %> <br/> <br/> <div align="center"> <%= render :partial => 'referrer_sources' %> </div> </div>
<script> SourcesCharts = { chart: null, date: "<%= @date.strftime('%F') %>", next: function() { $j.getJSON("<%= url_for :action => 'referrer_sources' %>", {date: SourcesCharts.date, direction: 'next'}, function(res) {SourcesCharts.load(res);}); }, prev: function() { $j.getJSON("<%= url_for :action => 'referrer_sources' %>", {date: SourcesCharts.date, direction: 'prev'}, function(res) {SourcesCharts.load(res);}); }, load: function(data) { SourcesCharts.date = data.date; SourcesCharts.chart.load(data); for(var i=0; i<data.total_values.length; i++) { $j('#chart_day' + (i+1)).text(data.days[i]); $j('#chart_date' + (i+1)).text(data.dates[i]); $j('#chart_value' + (i+1)).html(data.total_values[i] == '' ? '&nbsp;' : data.total_values[i]); } SourcesCharts.chart.draw(); } } </script> <% action_panel :more => true do |p| -%> <% end -%> <% more_action_panel do |p| -%> <% @subpages.each do |page| -%> <%= p.link page[0], page[3] %> <% end -%> <% end -%> <hr/> <div class='admin_content'> <div align="center"> <%= render :partial => 'referrer_sources' %> </div> </div>
Add more actions button for the rest of the stats
Add more actions button for the rest of the stats
RHTML
mit
cykod/Webiva,treybean/Webiva-lis,cykod/Webiva,cykod/Webiva,treybean/Webiva-lis,treybean/Webiva-lis,treybean/Webiva-lis,cykod/Webiva,cykod/Webiva,treybean/Webiva-lis
Tambah lebih banyak butang tindakan untuk statistik yang lain
7b0bb137bd2c5e6e3b1c1286e9514ea9844320eb
frontends/default/views/_list_calculations.rhtml
frontends/default/views/_list_calculations.rhtml
<% display_class = ( @records.kind_of?(Array) ? @records.first : @records ) -%> <tr id="<%= active_scaffold_calculations_id %>" class="active-scaffold-calculations"> <% active_scaffold_config.list.columns.each do |column| -%> <td> <% if column.calculation? -%> <% calculation = column_calculation(column) override_formatter = "render_#{column.name}_#{column.calculate}" calculation = self.method(override_formatter).call(calculation) if respond_to? override_formatter _erbout.concat calculation.to_s -%> <% else -%> &nbsp; <% end -%> </td> <% end -%> <% unless active_scaffold_config.action_links.empty? -%> <td class="actions">&nbsp;</td> <% end -%> </tr>
<% display_class = ( @records.kind_of?(Array) ? @records.first : @records ) -%> <tr id="<%= active_scaffold_calculations_id %>" class="active-scaffold-calculations"> <% active_scaffold_config.list.columns.each do |column| -%> <td> <% if column.calculation? -%> <% calculation = column_calculation(column) override_formatter = "render_#{column.name}_#{column.calculate}" calculation = self.method(override_formatter).call(calculation) if respond_to? override_formatter -%> <%= calculation.to_s %> <% else -%> &nbsp; <% end -%> </td> <% end -%> <% unless active_scaffold_config.action_links.empty? -%> <td class="actions">&nbsp;</td> <% end -%> </tr>
Fix list calculations, _erbout has been removed
Fix list calculations, _erbout has been removed
RHTML
mit
BookingBug/active_scaffold,BookingBug/active_scaffold,vhochstein/active_scaffold,mallikarjunayaddala/active_scaffold,AlbertoBarrago/active_scaffold,budree/active_scaffold,activescaffold/active_scaffold,activescaffold/active_scaffold_demo,silverpond/active_scaffold,activescaffold/active_scaffold,ajacksified/active_scaffold,silverpond/active_scaffold,activescaffold/active_scaffold_demo,mallikarjunayaddala/active_scaffold,activescaffold/active_scaffold,asoltys/active_scaffold,asoltys/active_scaffold,mallikarjunayaddala/active_scaffold,vhochstein/active_scaffold,budree/active_scaffold,budree/active_scaffold,AlbertoBarrago/active_scaffold,woahdae/active_scaffold,BookingBug/active_scaffold,vhochstein/active_scaffold,woahdae/active_scaffold,silverpond/active_scaffold,AlbertoBarrago/active_scaffold,ajacksified/active_scaffold
Betulkan pengiraan senarai, _erbout telah dialih keluar
76574c78e2625e9311c511df70ed5423c7cde038
app/views/help/_alpha_notice.rhtml
app/views/help/_alpha_notice.rhtml
<div id="alpha_notice"> <p>Hello! This site really isn't nearly finished yet, but it <strong>works</strong> and so we wanted to start sharing it with you. Things still to do:</p> <ol> <li> Finish designing the site - the current appearance is in flux. </li> <li> RSS feeds and email alerts based on search terms. </li> <li> Add things you <a href="/help/contact">tell us</a> you want. </li> </ol> <p>As always, if you want mySociety to do more stuff like this, please <a href="http://www.mysociety.org/volunteertasks">volunteer</a>, <a href="https://secure.mysociety.org/donate/">donate</a>, or <a href="mailto:karl@mysociety.org">commission us!</a></p> </div>
<div id="alpha_notice"> <p>Hello! This site really isn't nearly finished yet, but it <strong>works</strong> and so we wanted to start sharing it with you. Things still to do:</p> <ol> <li> Finish designing the site - this appearance is just placeholder. </li> <li> Add things you <a href="/help/contact">tell us</a> you want. </li> </ol> <p>As always, if you want mySociety to do more stuff like this, please <a href="http://www.mysociety.org/volunteertasks">volunteer</a>, <a href="https://secure.mysociety.org/donate/">donate</a>, or <a href="mailto:karl@mysociety.org">commission us!</a></p> </div>
Update help notice now alerts finished.
Update help notice now alerts finished.
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Kemas kini notis bantuan sekarang makluman selesai.
b681326861199ebbffa3d1c71ba059ca38ca95bf
client/ruby/flare/app/views/document/_document_delicious.rhtml
client/ruby/flare/app/views/document/_document_delicious.rhtml
<tr valign="top"> <td> <%=image_tag "http://images.amazon.com/images/P/#{doc['asin_text']}.01.MZZZZZZZ" %> </td> <td> <table class="entry"> <tr> <td class="title" colspan="2"><%=link_to doc['title_text'], "http://www.amazon.com/exec/obidos/ASIN/#{doc['asin_text']}"%></td> </tr> <% doc.each do |k,v|; highlighting = response.highlighted(doc['id'], k) %> <tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : (v.respond_to?('join') ? v.join(',') : v.to_s)%></td></tr> <% end %> </table> </td> </tr>
<tr valign="top"> <td> <%=image_tag "http://images.amazon.com/images/P/#{doc['asin_display']}.01.MZZZZZZZ" %> </td> <td> <table class="entry"> <tr> <td class="title" colspan="2"><%=link_to doc['title_text'], "http://www.amazon.com/exec/obidos/ASIN/#{doc['asin_display']}"%></td> </tr> <% doc.each do |k,v|; highlighting = response.highlighted(doc['id'], k) %> <tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : (v.respond_to?('join') ? v.join(',') : v.to_s)%></td></tr> <% end %> </table> </td> </tr>
Adjust delicious library view for change in asin field name
Adjust delicious library view for change in asin field name git-svn-id: 3b1ff1236863b4d63a22e4dae568675c2e247730@540681 13f79535-47bb-0310-9956-ffa450edef68
RHTML
apache-2.0
apache/solr,apache/solr,apache/solr,apache/solr,apache/solr
Laraskan paparan perpustakaan yang lazat untuk perubahan dalam nama medan asin
f54b55156568c2d435957ad78d3e3eedd595ad2c
app/views/user/bad_token.rhtml
app/views/user/bad_token.rhtml
<p id="bad_token"> Please check the URL (i.e. the long code of letters and numbers) is copied correctly from your email. </p> <p id="bad_token"> If you can't click on it in the email, you'll have to select and copy it from the email. Then paste it into your browser, into the place you would type the address of any other webpage. </p> <p id="bad_token"> If you got the email more than a year ago, then this login link won't work any more. Please try doing what you were doing from the beginning. </p>
<h1> Please check the URL (i.e. the long code of letters and numbers) is copied correctly from your email. </h1> <p> If you can't click on it in the email, you'll have to select and copy it from the email. Then paste it into your browser, into the place you would type the address of any other webpage. </p> <p> If you got the email more than six months ago, then this login link won't work any more. Please try doing what you were doing from the beginning. </p>
Update quite old out of date bad token text
Update quite old out of date bad token text
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Kemas kini teks token buruk yang agak lapuk
eb6114617c219baeeca957d9022f438e981c308e
app/views/geocoder/search.rhtml
app/views/geocoder/search.rhtml
<% @results.each do |source| %> <p class="search_results_heading">Results from <%= link_to source[:source], source[:url] %></p> <% if source[:results] %> <% source[:results].each do |result| %> <p class="search_results_entry"><%= link_to_function result[:description], "setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})" %></p> <% end %> <% else %> <p class="search_results_error"><%= source[:error] %></p> <% end %> <% end %>
<% @results.each do |source| %> <p class="search_results_heading">Results from <%= link_to source[:source], source[:url] %></p> <% if source[:results] %> <% if source[:results].empty? %> <p class="search_results_entry">No results found</p> <% else %> <% source[:results].each do |result| %> <p class="search_results_entry"><%= link_to_function result[:description], "setPosition(#{result[:lat]}, #{result[:lon]}, #{result[:zoom]})" %></p> <% end %> <% end %> <% else %> <p class="search_results_error"><%= source[:error] %></p> <% end %> <% end %>
Add an explicit message when no results are found for a given source.
Add an explicit message when no results are found for a given source.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Tambahkan mesej eksplisit apabila tiada hasil ditemui untuk sumber tertentu.
cd103d34c4190e6488e4742d97de634816344d6b
app/views/search/products.rhtml
app/views/search/products.rhtml
<h1><%= _('Products and Services') %></h1> <div id="search-column-left"> <% if !@empty_query %> <% button_bar do %> <%= display_map_list_button %> <% end %> <%= facets_menu(:products, @facets) %> <% end %> </div> <div id="search-column-right"> <%= render :partial => 'search_form', :locals => { :hint => _('Type the product, service, city or qualifier desired') } %> <%= render :partial => 'results_header' %> <%= display_results(true) %> <% if params[:display] != 'map' %> <%= pagination_links @results[:products] %> <% end %> </div> <div style="clear: both"></div>
<%= search_page_title( @titles[:products], @category ) %> <div id="search-column-left"> <% if !@empty_query %> <% button_bar do %> <%= display_map_list_button %> <% end %> <%= facets_menu(:products, @facets) %> <% end %> </div> <div id="search-column-right"> <%= render :partial => 'search_form', :locals => { :hint => _('Type the product, service, city or qualifier desired') } %> <%= render :partial => 'results_header' %> <%= display_results(true) %> <% if params[:display] != 'map' %> <%= pagination_links @results[:products] %> <% end %> </div> <div style="clear: both"></div>
Fix for product search view's title
Fix for product search view's title
RHTML
agpl-3.0
hackathon-oscs/rede-osc,alexandreab/noosfero,larissa/noosfero,hackathon-oscs/rede-osc,hackathon-oscs/rede-osc,danielafeitosa/noosfero,ludaac/noosfero-mx,blogoosfero/noosfero,AlessandroCaetano/noosfero,rafamanzo/mezuro-travis,coletivoEITA/noosfero-ecosol,samasti/noosfero,blogoosfero/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,uniteddiversity/noosfero,tallysmartins/noosfero,hackathon-oscs/cartografias,coletivoEITA/noosfero,CIRANDAS/noosfero-ecosol,LuisBelo/tccnoosfero,coletivoEITA/noosfero,marcosronaldo/noosfero,cesarfex/noosfero,evandrojr/noosferogov,macartur/noosfero,macartur/noosfero,EcoAlternative/noosfero-ecosol,LuisBelo/tccnoosfero,evandrojr/noosferogov,arthurmde/noosfero,hackathon-oscs/cartografias,blogoosfero/noosfero,pr-snas/noosfero-sgpr,coletivoEITA/noosfero,larissa/noosfero,uniteddiversity/noosfero,AlessandroCaetano/noosfero,hackathon-oscs/cartografias,coletivoEITA/noosfero,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,evandrojr/noosferogov,macartur/noosfero,hebertdougl/noosfero,ludaac/noosfero-mx,hackathon-oscs/cartografias,ludaac/noosfero-mx,hackathon-oscs/cartografias,hebertdougl/noosfero,vfcosta/noosfero,evandrojr/noosferogov,evandrojr/noosferogov,LuisBelo/tccnoosfero,coletivoEITA/noosfero,uniteddiversity/noosfero,macartur/noosfero,samasti/noosfero,rafamanzo/mezuro-travis,EcoAlternative/noosfero-ecosol,tallysmartins/noosfero,abner/noosfero,marcosronaldo/noosfero,danielafeitosa/noosfero,macartur/noosfero,cesarfex/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero-ecosol,arthurmde/noosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,larissa/noosfero,alexandreab/noosfero,tallysmartins/noosfero,uniteddiversity/noosfero,hackathon-oscs/cartografias,vfcosta/noosfero,cesarfex/noosfero,LuisBelo/tccnoosfero,arthurmde/noosfero,AlessandroCaetano/noosfero,arthurmde/noosfero,vfcosta/noosfero,coletivoEITA/noosfero-ecosol,ludaac/noosfero-mx,larissa/noosfero,alexandreab/noosfero,danielafeitosa/noosfero,EcoAlternative/noosfero-ecosol,abner/noosfero,EcoAlternative/noosfero-ecosol,rafamanzo/mezuro-travis,abner/noosfero,tallysmartins/noosfero,larissa/noosfero,rafamanzo/mezuro-travis,blogoosfero/noosfero,evandrojr/noosfero,evandrojr/noosfero,ludaac/noosfero-mx,EcoAlternative/noosfero-ecosol,tallysmartins/noosfero,larissa/noosfero,abner/noosfero,pr-snas/noosfero-sgpr,tallysmartins/noosfero,tallysmartins/noosfero,hebertdougl/noosfero,CIRANDAS/noosfero-ecosol,alexandreab/noosfero,marcosronaldo/noosfero,macartur/noosfero,alexandreab/noosfero,hebertdougl/noosfero,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,evandrojr/noosfero,blogoosfero/noosfero,coletivoEITA/noosfero,blogoosfero/noosfero,abner/noosfero,danielafeitosa/noosfero,hebertdougl/noosfero,pr-snas/noosfero-sgpr,cesarfex/noosfero,hackathon-oscs/rede-osc,CIRANDAS/noosfero-ecosol,evandrojr/noosferogov,cesarfex/noosfero,cesarfex/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,evandrojr/noosfero,uniteddiversity/noosfero,pr-snas/noosfero-sgpr,vfcosta/noosfero,larissa/noosfero,AlessandroCaetano/noosfero,EcoAlternative/noosfero-ecosol,arthurmde/noosfero,uniteddiversity/noosfero,arthurmde/noosfero,AlessandroCaetano/noosfero,evandrojr/noosfero,evandrojr/noosferogov,hebertdougl/noosfero,evandrojr/noosfero,marcosronaldo/noosfero,coletivoEITA/noosfero-ecosol,danielafeitosa/noosfero,marcosronaldo/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,blogoosfero/noosfero,LuisBelo/tccnoosfero,vfcosta/noosfero,abner/noosfero,macartur/noosfero,hackathon-oscs/cartografias,rafamanzo/mezuro-travis,arthurmde/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,alexandreab/noosfero,AlessandroCaetano/noosfero,marcosronaldo/noosfero,samasti/noosfero,pr-snas/noosfero-sgpr,AlessandroCaetano/noosfero,vfcosta/noosfero,danielafeitosa/noosfero,marcosronaldo/noosfero,abner/noosfero,samasti/noosfero,evandrojr/noosfero,cesarfex/noosfero,pr-snas/noosfero-sgpr
Betulkan untuk tajuk paparan carian produk
c18d684ddad7b4b23b403c543b40a35ed6a3f6ee
app/views/browse/_tag_details.rhtml
app/views/browse/_tag_details.rhtml
<% unless tag_details.tags_as_hash.empty? %> <tr valign="top"> <th>Tags:</th> <td> <table cellpadding="0"> <%= render :partial => "tag", :collection => tag_details.tags_as_hash %> </table> </td> </tr> <% end %>
<% unless tag_details.tags.empty? %> <tr valign="top"> <th>Tags:</th> <td> <table cellpadding="0"> <%= render :partial => "tag", :collection => tag_details.tags.sort %> </table> </td> </tr> <% end %>
Sort the tags for the databrowser output.
Sort the tags for the databrowser output.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Isih teg untuk output penyemak imbas data.
636b698a182f900d4444f822bcdcf9cb6320d9a5
lib/views/general/_topnav.rhtml
lib/views/general/_topnav.rhtml
<div id="topnav"> <ul id="navigation"> <li class="selected"><%= link_to _("Quiénes somos"), help_about_path %></li> <li class="selected"><%= link_to _("Guía para solicitantes"), help_requesting_path %></li> <li class="selected"><%= link_to _("Solicitar documentos"), body_index_path, :class => 'make-request-link' %></li> <li class="selected"><%= link_to _("Buscar solicitudes"), request_list_all_url %></li> </ul> </div>
<div id="topnav"> <ul id="navigation"> <li class="<%= 'selected' if params[:controller] == 'help' and params[:action] != 'requesting'%>"><%= link_to _("Quiénes somos"), help_about_path %></li> <li class="<%= 'selected' if params[:controller] == 'help' and params[:action] == 'requesting'%>"><%= link_to _("Guía para solicitantes"), help_requesting_path %></li> <li class="<%= 'selected' if params[:controller] == 'public_body' or (params[:controller] == 'request' and !['list'].include?(params[:action])) %>"><%= link_to _("Solicitar documentos"), body_index_path, :class => 'make-request-link' %></li> <li class="<%= 'selected' if params[:controller] == 'request' and ['list'].include?(params[:action]) %>"><%= link_to _("Buscar solicitudes"), request_list_all_url %></li> </ul> </div>
Select only one tab in topnav at a time
Select only one tab in topnav at a time
RHTML
mit
datauy/quesabes-theme,datauy/quesabes-theme,datauy/quesabes-theme
Pilih hanya satu tab dalam topnav pada satu masa
22dab17c881f9db136194243844d8ace37536099
app/views/admin/themes/index.rhtml
app/views/admin/themes/index.rhtml
<% content_for :head do -%> <%= javascript_include_tag 'mephisto/dialog' %> <% end -%> <% content_for :action_nav do -%> <div id="page-nav"> <ul id="act-nav" class="clear"> <li><%= link_to "Import new theme", :controller => 'themes', :action => 'import' %></li> </ul> </div> <% end -%> <div id="themes"> <ul id="themelist"> <%= render :partial => "theme", :collection => site.themes %> </ul> </div>
<% content_for :head do -%> <%= javascript_include_tag 'mephisto/dialog' %> <% end -%> <% content_for :action_nav do -%> <div id="page-nav"> <ul id="act-nav" class="clear"> <li><%= link_to "Import new theme", {:controller => 'themes', :action => 'import'}, :method => :post %></li> </ul> </div> <% end -%> <div id="themes"> <ul id="themelist"> <%= render :partial => "theme", :collection => site.themes %> </ul> </div>
Fix link for importing themes so that it can be reached (instead of triggering security protection)
Fix link for importing themes so that it can be reached (instead of triggering security protection)
RHTML
mit
technoweenie/mephisto,mat/mephisto,emk/mephisto,rwdaigle/old.ryandaigle.com,mat/mephisto,mephistorb/mephisto,technoweenie/mephisto,jgoggles/mephisto,mephistorb/mephisto,mico/Mephisto-fork,jgoggles/mephisto,mico/Mephisto-fork,rwdaigle/old.ryandaigle.com,emk/mephisto
Betulkan pautan untuk mengimport tema supaya ia boleh dicapai (bukannya mencetuskan perlindungan keselamatan)
7314ca8e90358d11cc098db4f8355c48b66583ff
app/views/request/preview.rhtml
app/views/request/preview.rhtml
<% @title = "Preview new FOI request to '" + h(@info_request.public_body.name) + "'" %> <% form_for(:info_request, @info_request, :html => { :id => 'preview_form' } ) do |f| %> <h1>Now preview your request</h1> <%= f.hidden_field(:title) %> <% fields_for :outgoing_message do |o| %> <p class="outgoing_message_preview"> <strong>To:</strong> <%=h @info_request.public_body.name %> <br><strong>Subject:</strong> <%=h @info_request.title %> <br><br> <%= @outgoing_message.get_body_for_html_preview %> <%= o.hidden_field(:body) %> </p> <% end %> <strong>Note:</strong> Your request and any response will be displayed publically on this website. <p> <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> <%= hidden_field_tag(:submitted_new_request, 1) %> <%= hidden_field_tag(:preview, 0 ) %> <%= submit_tag "Re-edit this request", :name => 'reedit' %> <%= submit_tag "Send Freedom of Information request", :name => 'submit' %> </p> <% end %>
<% @title = "Preview new FOI request to '" + h(@info_request.public_body.name) + "'" %> <% form_for(:info_request, @info_request, :html => { :id => 'preview_form' } ) do |f| %> <h1>Now preview your request</h1> <%= f.hidden_field(:title) %> <% fields_for :outgoing_message do |o| %> <p class="outgoing_message_preview"> <strong>To:</strong> <%=h @info_request.public_body.name %> <br><strong>Subject:</strong> <%=h @info_request.title %> <br><br> <%= @outgoing_message.get_body_for_html_preview %> <%= o.hidden_field(:body) %> </p> <% end %> <strong>Note:</strong> Your request and any response will be displayed publically on this website. <p> <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %> <%= hidden_field_tag(:submitted_new_request, 1) %> <%= hidden_field_tag(:preview, 0 ) %> <%= submit_tag "Re-edit this request", :name => 'reedit' %> <%= submit_tag "Send public Freedom of Information request", :name => 'submit' %> </p> <% end %>
Make button say it is public
Make button say it is public
RHTML
agpl-3.0
andreicristianpetcu/alaveteli,Br3nda/alaveteli,hasadna/alaveteli,datauy/alaveteli,petterreinholdtsen/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,obshtestvo/alaveteli-bulgaria,sarhane/alaveteli-test,andreicristianpetcu/alaveteli_old,nzherald/alaveteli,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli,sarhane/alaveteli-test,hasadna/alaveteli,petterreinholdtsen/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli,4bic/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli_old,4bic/alaveteli,datauy/alaveteli,Br3nda/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,kuahyeow/foi,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,hasadna/alaveteli,kuahyeow/foi,petterreinholdtsen/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,4bic/alaveteli,TEDICpy/QueremoSaber,Br3nda/alaveteli,codeforcroatia/alaveteli,10layer/alaveteli,10layer/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,10layer/alaveteli,hasadna/alaveteli,nzherald/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,hasadna/alaveteli
Buat butang mengatakan ia awam
863a34704ac845717a8c439d0a16547df1198c1c
rails_app/app/views/repo/index.rhtml
rails_app/app/views/repo/index.rhtml
<div id="repos"> <div class="rhead">All Public Repositories <%= if logged_in? then link_to_unless_current '[Add]', { :action => 'new', :controller => 'repo' }, :rel => 'facebox' else link_to_unless_current '[Add]', { :action => 'new', :controller => 'repo' } end %> </div> <div id="repolist"> <% for repo in @repos%> <div class="reponame"><%= link_to(repo.name, :controller=>'repo', :action => 'show', :id => repo.id)%></div> <div class="repodesc">Description: <%= repo.desc%></div> <div class="repoowner">Owner: <%=link_to user_lookup(repo.user_id).username, :controller => 'user', :action => 'profile', :username => repo.user.username%></div> <div class="rnav"> <% if logged_in?%> <% if watching_repo?(repo.id) != 0 %> <%=link_to 'Un-Watch', {:action => "unwatch", :repo_id => repo.id}, :method => :post %> <%else%> <%=link_to 'Watch', {:action => "watch", :repo_id => repo.id}, :method => :post %> <%end%> <%end%> </div> <div class="rdiv"><img src="/images/div.jpg" alt="---"/></div> <%end%> </div> </div>
<div id="repos"> <div class="rhead">All Public Repositories <%= if logged_in? then link_to_unless_current '[Add]', { :action => 'new', :controller => 'repo' }, :rel => 'facebox' else link_to_unless_current '[Add]', { :action => 'new', :controller => 'repo' } end %> </div> <div id="repolist"> <% for repo in @repos%> <div class="reponame"><%= link_to(repo.name, :controller=>'repo', :action => 'show', :id => repo.id)%></div> <div class="repodesc">Description: <%= repo.desc%></div> <div class="repoowner">Owner: <%=link_to repo.user.username, :controller => 'user', :action => 'profile', :username => repo.user.username%></div> <div class="rnav"> <% if logged_in?%> <% if watching_repo?(repo.id) != 0 %> <%=link_to 'Un-Watch', {:action => "unwatch", :repo_id => repo.id}, :method => :post %> <%else%> <%=link_to 'Watch', {:action => "watch", :repo_id => repo.id}, :method => :post %> <%end%> <%end%> </div> <div class="rdiv"><img src="/images/div.jpg" alt="---"/></div> <%end%> </div> </div>
Reduce lookups on the public repos page by using joins in the model
Reduce lookups on the public repos page by using joins in the model
RHTML
mit
parabuzzle/lookgit,parabuzzle/lookgit
Kurangkan carian pada halaman repo awam dengan menggunakan gabungan dalam model
6ad1eb46060a0e9e41285f4587a71aa033ed0b30
app/views/user/signin_successful.rhtml
app/views/user/signin_successful.rhtml
<%= _("You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>") %> <script type="text/javascript"> parent.modal_signin_successful = true; $("#send-request").click(function() { parent.$.fancybox.close(); return false; }); </script>
<div id="signin-successful"> <%= _("You're in. <a href=\"#\" id=\"send-request\">Continue sending your request</a>") %> </div> <script type="text/javascript"> parent.modal_signin_successful = true; $("#send-request").click(function() { parent.$.fancybox.close(); return false; }); </script>
Add div around successful sign-in modal message so it can be themed
Add div around successful sign-in modal message so it can be themed
RHTML
agpl-3.0
TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,TEDICpy/QueremoSaber,petterreinholdtsen/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,sarhane/alaveteli-test,andreicristianpetcu/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,sarhane/alaveteli-test,Br3nda/alaveteli,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,TEDICpy/QueremoSaber,4bic/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli,Br3nda/alaveteli,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,10layer/alaveteli,nzherald/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli,datauy/alaveteli,10layer/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,4bic/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,datauy/alaveteli,datauy/alaveteli,Br3nda/alaveteli,10layer/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli_old,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,4bic/alaveteli,nzherald/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,obshtestvo/alaveteli-bulgaria
Tambahkan div sekitar mesej modal log masuk yang berjaya supaya ia boleh bertemakan
ce6bddcbd94fd28cf5ed3ddf5c797af5886a98e7
app/views/trace/_trace_optionals.rhtml
app/views/trace/_trace_optionals.rhtml
<% content_for "optionals" do %> <div class="optionalbox"> <span class="oboxheader">Tags</span> <br /> <br /> <% if @all_tags %> <% @all_tags.each do |tag| %> <%= link_to tag, :controller => 'trace', :action => @paging_action, :tag => tag %><br /> <% end %> <% end %> </div> <% end %>
<% content_for "optionals" do %> <div class="optionalbox"> <span class="oboxheader">Tags</span> <br /> <br /> <% if @all_tags %> <% @all_tags.each do |tag| %> <%= link_to tag, :tag => tag %><br /> <% end %> <% end %> </div> <% end %>
Make tag links work again.
Make tag links work again.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Jadikan pautan teg berfungsi semula.
66fcecab91a9625555e1052eb65a266ed318bbf7
app/views/site/_sidebar.rhtml
app/views/site/_sidebar.rhtml
<div id="sidebar"> <table class="sidebar_title" width="100%"> <tr> <td align="left" id="sidebar_title">Search Results</td> <td align="right"><a href="javascript:closeSidebar()">Close</a></td> </tr> </table> <div id="sidebar_content"> </div> </div> <script type="text/javascript"> <!-- var onclose; function openSidebar(options) { if (onclose) { onclose(); onclose = null; } if (options.width) { $("sidebar").style.width = options.width; } else { $("sidebar").style.width = "30%"; } $("sidebar").style.display = "block"; <%= onopen %> onclose = options.onclose; } function closeSidebar() { $("sidebar").style.display = "none"; <%= onclose %> if (onclose) { onclose(); onclose = null; } } function updateSidebar(title, content) { $("sidebar_title").innerHTML = title; $("sidebar_content").innerHTML = content; } function sidebarOpen(title) { return $("sidebar").style.display == "block" && $("sidebar_title").innerHTML == title; } // --> </script>
<div id="sidebar"> <table class="sidebar_title" width="100%"> <tr> <td align="left" id="sidebar_title">Search Results</td> <td align="right"><a href="javascript:closeSidebar()">Close</a></td> </tr> </table> <div id="sidebar_content"> </div> </div> <script type="text/javascript"> <!-- var onclose; function openSidebar(options) { options = options || {}; if (onclose) { onclose(); onclose = null; } if (options.width) { $("sidebar").style.width = options.width; } else { $("sidebar").style.width = "30%"; } $("sidebar").style.display = "block"; <%= onopen %> onclose = options.onclose; } function closeSidebar() { $("sidebar").style.display = "none"; <%= onclose %> if (onclose) { onclose(); onclose = null; } } function updateSidebar(title, content) { $("sidebar_title").innerHTML = title; $("sidebar_content").innerHTML = content; } function sidebarOpen(title) { return $("sidebar").style.display == "block" && $("sidebar_title").innerHTML == title; } // --> </script>
Make openSidebar() work with no argument.
Make openSidebar() work with no argument.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Jadikan openSidebar() berfungsi tanpa hujah.
56f991f8ac3ae825a490aa2292e4be243fd4260c
app/views/admin/categories/_categories.rhtml
app/views/admin/categories/_categories.rhtml
<table> <tr> <th>Category title</th> <th>Articles</th> <th>Delete</th> </tr> <% for category in @categories -%> <tr <%= alternate_class -%> id="category_<%= category.id -%>"> <td><%= image_tag 'checked.gif', :class => "handle" %> <%= link_to category.name, :action => 'show', :id => category.id %></td> <td><%= link_to responses(category.articles, 'article'), :action => 'show', :id => category.id %></td> <td class="operation"><%= link_to_destroy category %></td> </tr> <% end -%> </table>
<table> <tr> <th>Category title</th> <th>Articles</th> <th>Delete</th> </tr> <% for category in @categories -%> <tr <%= alternate_class -%> id="category_<%= category.id -%>"> <td><%= image_tag 'checked.gif' %> <%= link_to category.name, :action => 'show', :id => category.id %></td> <td><%= link_to responses(category.articles, 'article'), :action => 'show', :id => category.id %></td> <td class="operation"><%= link_to_destroy category %></td> </tr> <% end -%> </table>
Remove apparently useless handle class from Category Admin checked image
Remove apparently useless handle class from Category Admin checked image git-svn-id: 70ab0960c3db1cbf656efd6df54a8f3de72dc710@667 820eb932-12ee-0310-9ca8-eeb645f39767
RHTML
mit
swombat/blog,swombat/blog,swombat/blog,swombat/blog,swombat/blog
Alih keluar kelas pemegang yang nampaknya tidak berguna daripada imej yang disemak Pentadbir Kategori
c1687d8651ba4fe5e0ff9c4612ee250ce5551a26
app/views/shared/_user_pagination.rhtml
app/views/shared/_user_pagination.rhtml
<aside class="pagination"> <div class="all_playlists_pagination" data-type="playlists"> <%= will_paginate @playlists, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_region => 'playlists' } %> </div> <div class="all_collages_pagination" style="display:none;" data-type="collages"> <%= will_paginate @collages, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_params => 'collages' } %> </div> <div class="all_cases_pagination" style="display:none;" data-type="cases"> <%= will_paginate @cases, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_params => 'cases' } %> </div> </aside>
<aside class="pagination"> <div class="all_playlists_pagination" data-type="playlists"> <%= will_paginate @playlists, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_region => 'playlists' } %> </div> <div class="all_collages_pagination" style="display:none;" data-type="collages"> <%= will_paginate @collages, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_region => 'collages' } %> </div> <div class="all_cases_pagination" style="display:none;" data-type="cases"> <%= will_paginate @cases, :container => false, :previous_label => 'Prev', :next_label => 'Next', :params => { :ajax_region => 'cases' } %> </div> </aside>
Fix user pagination on cases and collages.
Fix user pagination on cases and collages.
RHTML
agpl-3.0
harvard-lil/h2o,harvard-lil/h2o,emmalemma/h2o,harvard-lil/h2o,emmalemma/h2o,emmalemma/h2o,harvard-lil/h2o,emmalemma/h2o
Betulkan penomboran pengguna pada kes dan kolaj.
777769a1f9d4cb5bce25efa5681510a3b9982519
app/views/answers/_annotation_field.rhtml
app/views/answers/_annotation_field.rhtml
<% if @editing -%> <% if logged_in? and logged_in_person.permitted?("edit_answers", @question.questionnaire) -%> <%= text_area_tag "answer[#{@question.id}]", value, :rows => 4 %> <% end -%> <% else -%> <% if logged_in? and logged_in_person.permitted?("view_answers", @question.questionnaire) -%> <%= simple_format value %> <% end -%> <% end -%>
<% if @editing and logged_in? and logged_in_person.permitted?(@question.questionnaire, "edit_answers") -%> <%= text_area_tag "answer[#{@question.id}]", value, :rows => 4 %> <% else -%> <% if logged_in? and logged_in_person.permitted?(@question.questionnaire, "view_answers") -%> <%= simple_format value %> <% end -%> <% end -%>
Use the right parameter order for permitted?
Use the right parameter order for permitted?
RHTML
agpl-3.0
nbudin/journey,nbudin/journey,nbudin/journey
Gunakan susunan parameter yang betul untuk dibenarkan?
b4532700f10efd89ccc425834a9358e94da14d88
app/views/notifications/unknown_from_address.rhtml
app/views/notifications/unknown_from_address.rhtml
<%= from %> is not a known email address. Only user email addresses and email addresses receiving notifications are allowed. -- Message automatically generated by ClockingIT http://<%= subdomain %>.<%= $CONFIG[:domain] %>
<%= @from %> is not a known email address. Only user email addresses and email addresses receiving notifications are allowed. -- Message automatically generated by ClockingIT http://<%= @subdomain %>.<%= $CONFIG[:domain] %>
Fix unknown from email template
Fix unknown from email template
RHTML
agpl-3.0
evinoca/clockingit,digitalnatives/jobsworth,rafaspinola/jobsworth,webstream-io/jobsworth,ari/jobsworth,miguelbaldi/clockingit,arunagw/clockingit,xuewenfei/jobsworth,evinoca/clockingit,ari/jobsworth,miguelbaldi/clockingit,digitalnatives/jobsworth,ari/jobsworth,rafaspinola/jobsworth,rafaspinola/jobsworth,arunagw/clockingit,rafaspinola/jobsworth,digitalnatives/jobsworth,evinoca/clockingit,webstream-io/jobsworth,webstream-io/jobsworth,xuewenfei/jobsworth,miguelbaldi/clockingit,xuewenfei/jobsworth,xuewenfei/jobsworth,webstream-io/jobsworth,evinoca/clockingit,ari/jobsworth,digitalnatives/jobsworth,digitalnatives/jobsworth,arunagw/clockingit
Betulkan tidak diketahui daripada templat e-mel
eafd21d19ecfc82e7bbc5f30aca5f8516a2d3df2
app/views/diff_mailer/diff_notification.text.html.rhtml
app/views/diff_mailer/diff_notification.text.html.rhtml
<html> <head> <style></style> </head> <body style="font-family: Verdana, sans-serif; font-size: 0.8em; color:#484848;"> <div> <b>Project:</b> <%= link_to @project.name, @project_url %><br /> <b>Revision:</b> <%= link_to @changeset.revision, @changeset_url %> <br /> <b>Author:</b> <%= h(@author) %> <br /> <b>Summary:</b> <%= @changeset.short_comments %> <br /> <b>Details:</b> <%= @changeset.long_comments %> <br /><br /> Please take a moment to review this checkin.<br /><br /> </div> <hr /> <%= format_diff @diff %> <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span> </body> </html>
<html> <head> <style></style> </head> <body style="font-family: Verdana, sans-serif; font-size: 1em; color:#484848;"> <div> <b>Project:</b> <%= link_to @project.name, @project_url %><br /> <b>Revision:</b> <%= link_to @changeset.revision, @changeset_url %> <br /> <b>Author:</b> <%= h(@author) %> <br /> <b>Summary:</b> <%= @changeset.short_comments %> <br /> <b>Details:</b> <%= @changeset.long_comments %> <br /><br /> Please take a moment to review this checkin.<br /><br /> </div> <hr /> <%= format_diff @diff %> <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span> </body> </html>
Increase font size for diff mail
Increase font size for diff mail
RHTML
mit
cou2jpn/redmine_diff_email,cou2jpn/redmine_diff_email,cou2jpn/redmine_diff_email
Besarkan saiz fon untuk mel berbeza
b39b62653466ed44363fa66b29e3a430c655ad78
app/views/comment/_single_comment.rhtml
app/views/comment/_single_comment.rhtml
<div class="comment_in_request" id="comment-<%=comment.id.to_s%>"> <h2> <%# When not logged in, but mid-comment-leaving, there'll be no comment.user %> <%= !comment.user || (!@user.nil? && @user.id == comment.user.id) ? "You" : user_link(comment.user) %> left an annotation (<%= simple_date(comment.created_at || Time.now) %>) </h2> <div class="comment_in_request_text"> <p><img class="comment_quote" src="/images/quote.png" alt=""><%= comment.get_body_for_html_display %></p> </div> <p class="event_actions"> <% if !comment.id.nil? %> <%= link_to "Link to this", comment_url(comment) %> <% if !@user.nil? && @user.admin_page_links? %> | <%= link_to "Admin", admin_url("request/edit_comment/" + comment.id.to_s) %> <% end %> <!-- | <%= link_to "Report abuse", comment_url(comment) %> --> <% end %> </p> </div>
<div class="comment_in_request" id="comment-<%=comment.id.to_s%>"> <h2> <%# When not logged in, but mid-comment-leaving, there'll be no comment.user %> <%= comment.user ? user_or_you_capital_link(comment.user) : "You" %> left an annotation (<%= simple_date(comment.created_at || Time.now) %>) </h2> <div class="comment_in_request_text"> <p><img class="comment_quote" src="/images/quote.png" alt=""><%= comment.get_body_for_html_display %></p> </div> <p class="event_actions"> <% if !comment.id.nil? %> <%= link_to "Link to this", comment_url(comment) %> <% if !@user.nil? && @user.admin_page_links? %> | <%= link_to "Admin", admin_url("request/edit_comment/" + comment.id.to_s) %> <% end %> <!-- | <%= link_to "Report abuse", comment_url(comment) %> --> <% end %> </p> </div>
Use user_or_you_capital_link instead of hand-rolling
Use user_or_you_capital_link instead of hand-rolling
RHTML
agpl-3.0
codeforcroatia/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,datauy/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,10layer/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,hasadna/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli_old,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,petterreinholdtsen/alaveteli,nzherald/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,Br3nda/alaveteli,sarhane/alaveteli-test,10layer/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,Br3nda/alaveteli,TEDICpy/QueremoSaber,4bic/alaveteli,petterreinholdtsen/alaveteli,10layer/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,TEDICpy/QueremoSaber,obshtestvo/alaveteli-bulgaria,petterreinholdtsen/alaveteli,datauy/alaveteli,datauy/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli,hasadna/alaveteli,nzherald/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,obshtestvo/alaveteli-bulgaria
Gunakan pautan pengguna_atau_modal_anda dan bukannya bergolek tangan
1108ab91cc9dd411f4b39b46a2533eb9badc973b
lib/views/general/_footer.rhtml
lib/views/general/_footer.rhtml
<div id="footer"> <%= image_tag('/ipvtheme/images/OSF.jpg') %> <%= image_tag('/ipvtheme/images/otevrete.jpg') %> <%= image_tag('/ipvtheme/images/FOM.jpg') %> <%= link_to _("Contact {{site_name}}", :site_name => site_name), help_contact_url %> | <img src="/images/twitter-16.png" alt="twitter icon" class="twitter-icon"> <a href="https://twitter.com/<%= Configuration::twitter_username %>"><%= _("Follow us on twitter") %></a> <%= render :partial => 'general/credits' %> </div> <div class="after-footer">&nbsp;</div>
<div id="footer"> <div id="footer-logos"> <%= image_tag('/ipvtheme/images/OSF.jpg') %> <%= image_tag('/ipvtheme/images/otevrete.jpg') %> <%= image_tag('/ipvtheme/images/FOM.jpg') %> </div> <%= link_to _("Contact {{site_name}}", :site_name => site_name), help_contact_url %> | <img src="/images/twitter-16.png" alt="twitter icon" class="twitter-icon"> <a href="https://twitter.com/<%= Configuration::twitter_username %>"><%= _("Follow us on twitter") %></a> <%= render :partial => 'general/credits' %> </div> <div class="after-footer">&nbsp;</div>
Add inner div for logos.
Add inner div for logos.
RHTML
mit
mysociety/ipvtheme,mysociety/ipvtheme
Tambah div dalaman untuk logo.
21b4f3ca08b292bf9a20e6b87e94c404ac34ce70
lib/views/general/_orglink.rhtml
lib/views/general/_orglink.rhtml
<div><%= link_to "#{image_tag('navimg/logo-trans.png')} Make and explore Freedom of Information requests", frontpage_url, :id=>'logo' %> </div> <div id="orglogo"> <a href="http://www.mysociety.org">another really handy site by mysociety.org</a> </div>
<div><%= link_to "#{image_tag('navimg/logo-trans.png', :alt => 'WhatDoTheyKnow?')} Make and explore Freedom of Information requests", frontpage_url, :id=>'logo' %> </div> <div id="orglogo"> <a href="http://www.mysociety.org">another really handy site by mysociety.org</a> </div>
Include alt text for logo
Include alt text for logo
RHTML
mit
mysociety/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,schlos/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,schlos/whatdotheyknow-theme
Sertakan teks alt untuk logo
4483bf5902cc640f115a156447834659135cc20d
vendor/plugins/textmate_footnotes/templates/rescues/template_error.rhtml
vendor/plugins/textmate_footnotes/templates/rescues/template_error.rhtml
<h1> <%=h @exception.original_exception.class.to_s %> in <%=h request.parameters["controller"].capitalize if request.parameters["controller"]%>#<%=h request.parameters["action"] %> </h1> <p> Showing <i><%=h @exception.file_name %></i> where line <b>#<%= @exception.line_number_link rescue @exception.line_number %></b> raised: <pre><code><%=h @exception.message %></code></pre> </p> <p>Extracted source (around line <b>#<%= @exception.line_number_link rescue @exception.line_number %></b>): <pre><code><%=h @exception.source_extract %></code></pre></p> <p><%=h @exception.sub_template_message %></p> <% @real_exception = @exception @exception = @exception.original_exception || @exception %> <%= render_file(@rescues_path + "/_trace.rhtml", false) %> <% @exception = @real_exception %> <%= render_file(@rescues_path + "/_request_and_response.rhtml", false) %>
<h1> <%=h @exception.original_exception.class.to_s %> in <%=h request.parameters["controller"].capitalize if request.parameters["controller"]%>#<%=h request.parameters["action"] %> </h1> <p> Showing <i><%=h @exception.file_name %></i> where line <b>#<%= @exception.line_number_link rescue @exception.line_number %></b> raised: <pre><code><%=h @exception.message %></code></pre> </p> <p>Extracted source (around line <b>#<%= @exception.line_number_link rescue @exception.line_number %></b>): <pre><code><%=h @exception.source_extract %></code></pre></p> <p><%=h @exception.sub_template_message %></p> <% @real_exception = @exception @exception = @exception.original_exception || @exception %> <%= render_file(@rescues_path + "/_trace.erb", false) %> <% @exception = @real_exception %> <%= render_file(@rescues_path + "/_request_and_response.erb", false) %>
Fix textmate footnotes to now blowup on exceptions
Fix textmate footnotes to now blowup on exceptions
RHTML
mit
mvanholstyn/strac,mvanholstyn/strac
Betulkan nota kaki rakan teks untuk kini meledak pada pengecualian
56b44688e063a287a9ed4b80c5703347bb414f20
plugins/orders_cycle/views/orders_cycle_plugin/mailer/open_cycle.rhtml
plugins/orders_cycle/views/orders_cycle_plugin/mailer/open_cycle.rhtml
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body> <p> <%= t('orders_cycle_plugin.views.mailer.open_cycle.hello_member_of_name') % {:name => @profile.name} %> </p> <p><%= t('orders_cycle_plugin.views.mailer.open_cycle.a_new_cycle_is_open_c') + @cycle.name %></p> <p><%= t('orders_cycle_plugin.views.mailer.open_cycle.the_cycle_description') %></p> <p><%= @cycle.description %></p> <p><%= t('orders_cycle_plugin.views.mailer.open_cycle.the_administrator_let') %></p> <p><%= @message %></p> <p> --<br/> </p> <small style="color: #888"><%= @environment.name %></small> </body> </html>
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body> <p> <%= t('orders_cycle_plugin.views.mailer.open_cycle.hello_member_of_name') % {:name => @profile.name} %> </p> <p><%= t('orders_cycle_plugin.views.mailer.open_cycle.a_new_cycle_is_open_c') + @cycle.name %></p> <hr /> <p><i><%= @cycle.description %></i></p> <hr /> <p><%= t('orders_cycle_plugin.views.mailer.open_cycle.the_administrator_let') %></p> <p><i><%= @message %></i></p> <p><%= link_to t('orders_cycle_plugin.views.order.index.place_an_order'), {:controller => :orders_cycle_plugin_order, :action => :edit, :cycle_id => @cycle.id, :profile => @profile.identifier, :only_path => false, :host => @profile.hostname || @environment.default_hostname }, :id => 'consumer-new-order' %></p> <p><%= @domain %> <p> --<br/> </p> <small style="color: #888"><%= @environment.name %></small> </body> </html>
Add link to order and format it better
Add link to order and format it better
RHTML
agpl-3.0
samasti/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,samasti/noosfero,blogoosfero/noosfero,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,blogoosfero/noosfero,blogoosfero/noosfero,samasti/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,samasti/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,CIRANDAS/noosfero-ecosol,coletivoEITA/noosfero-ecosol,samasti/noosfero
Tambahkan pautan untuk pesanan dan formatkannya dengan lebih baik
3828c38ea024166c89bbfa079c4b58573753f2f2
app/views/request_mailer/not_clarified_alert.rhtml
app/views/request_mailer/not_clarified_alert.rhtml
<%=@info_request.public_body.name%> <%=('has asked you to explain part of your')%> <%=@info_request.law_used_short%> <%= _('request.')%> <%= _('To do this, first click on the link below.')%> <%=@url%> <%= _('You will only get an answer to your request if you follow up with the clarification.')%> -- <%= _('the {{site_name}} team', :site_name=>site_name) %>
<%= _('{{public_body}} has asked you to explain part of your {{law_used}} request.', :public_body => @info_request.public_body.name, :law_used => @info_request.law_used_short ) %> <%= _('To do this, first click on the link below.') %> <%=@url%> <%= _('You will only get an answer to your request if you follow up with the clarification.')%> -- <%= _('the {{site_name}} team', :site_name=>site_name) %>
Fix missing i18n string in clarification email
Fix missing i18n string in clarification email
RHTML
agpl-3.0
nzherald/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,sarhane/alaveteli-test,4bic/alaveteli,andreicristianpetcu/alaveteli,10layer/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli_old,petterreinholdtsen/alaveteli,codeforcroatia/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,nzherald/alaveteli,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,4bic/alaveteli,nzherald/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,datauy/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,TEDICpy/QueremoSaber,obshtestvo/alaveteli-bulgaria,10layer/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli_old,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,petterreinholdtsen/alaveteli,hasadna/alaveteli,hasadna/alaveteli,10layer/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,Br3nda/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli
Betulkan rentetan i18n yang hilang dalam e-mel penjelasan
496db76a974d9a12e8a4eef8597d6d4463b45e56
vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml
vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml
<% max = @request.env.keys.max { |a,b| a.length <=> b.length } -%> <% @request.env.keys.sort.each do |key| -%> * <%= "%*-s: %s" % [max.length, key, @request.env[key].to_s.strip] %> <% end -%> * Process: <%= $$ %> * Server : <%= `hostname -s`.chomp %>
<% max = @request.env.keys.max { |a,b| a.length <=> b.length } -%> <% @request.env.keys.sort.each do |key| -%> * <%= "%-s: %s" % [max.length, key, @request.env[key].to_s.strip] %> <% end -%> * Process: <%= $$ %> * Server : <%= `hostname -s`.chomp %>
Fix for "flag after width" exception notifier fail
Fix for "flag after width" exception notifier fail
RHTML
agpl-3.0
almonteb/scoot,ericbutters/eric-gitorious,cynipe/gitorious,water/mainline,Gitorious-backup/mainline,water/mainline,balcom/gitorious,almonteb/scoot,elcom/gitorious,elcom/gitorious,rae/gitorious-mainline,adg29/asi.gitorious,feniix/gitorious,tigefa4u/gitorious-mainline,spencerwp/mainline,tigefa4u/gitorious-mainline,Gitorious-backup/vsr-mainline,deld/gitorious,adg29/asi.gitorious,Gitorious-backup/base_uri-fixes,cynipe/gitorious,Gitorious-backup/krawek-gitorious-clone,tigefa4u/gitorious-mainline,Gitorious-backup/mainline,Gitorious-backup/franklin-devs-phpbbhub,Gitorious-backup/vsr-mainline,Gitorious-backup/yousource,altrair/gitorious-openstack,SamuelMoraesF/Gitorious,fcoury/gitorious,balcom/gitorious,deld/gitorious,almonteb/scoot,Gitorious-backup/base_uri-fixes,victori/gitorious-jruby,gitorious/mainline,Gitorious-backup/yousource-features,cynipe/gitorious,elcom/gitorious,Gitorious-backup/yousource-features,elcom/gitorious,tigefa4u/gitorious-mainline,gitorious/mainline,Gitorious-backup/franklin-devs-phpbbhub,vymiheev/Gitorious-OpenStack,crazycode/gitorious,Gitorious-backup/yousource-features,adg29/asi.gitorious,njall/wel-gitorious,grjones/gitorious-submodule-dependencies,spencerwp/mainline,Gitorious-backup/vsr-mainline,crazycode/gitorious,Gitorious-backup/yousource,victori/gitorious-jruby,Gitorious-backup/krawek-gitorious-clone,Gitorious-backup/yousource,fcoury/gitorious,gnufied/gitorious,deld/gitorious,SamuelMoraesF/Gitorious,ericbutters/eric-gitorious,spencerwp/mainline,adg29/asi.gitorious,Gitorious-backup/yousource-features,gnufied/gitorious,grjones/gitorious-submodule-dependencies,gitorious/mainline,Gitorious-backup/base_uri-fixes,rae/gitorious-mainline,feniix/gitorious,Gitorious-backup/franklin-devs-phpbbhub,victori/gitorious-jruby,Gitorious-backup/yousource,gnufied/gitorious,vymiheev/Gitorious-OpenStack,Gitorious-backup/krawek-gitorious-clone,SamuelMoraesF/Gitorious,Gitorious-backup/krawek-gitorious-clone,crazycode/gitorious,Gitorious-backup/base_uri-fixes,altrair/gitorious-openstack,balcom/gitorious,spencerwp/mainline,Gitorious-backup/vsr-mainline,SamuelMoraesF/Gitorious,Gitorious-backup/mainline,rae/gitorious-mainline,grjones/gitorious-submodule-dependencies,fcoury/gitorious,njall/wel-gitorious,rae/gitorious-mainline,ericbutters/eric-gitorious,gitorious/mainline,njall/wel-gitorious,altrair/gitorious-openstack,Gitorious-backup/mainline,water/mainline,feniix/gitorious,Gitorious-backup/franklin-devs-phpbbhub,vymiheev/Gitorious-OpenStack
Betulkan untuk pemberitahuan pengecualian "bendera selepas lebar" gagal
0d5fe273ad47062d8a172d3e97670607d55ca414
app/views/notifier/new_review.rhtml
app/views/notifier/new_review.rhtml
Hi <%= @reviewer_username %>, <%= @review.developer %> would like you to do a code review of <%= @review.count_commits %> commits. At your earliest convenience, please proceed to: http://janus.corp.amiestreet.com:3000/review/<%= @review.id %>/show or enter your <%= @review.project.name %> repository and do: git fetch review review-<%= @review.id %> git checkout remotes/review/review-<%= @review.id %> Log of commits in this review ============================= <%= @review.log %> Thanks, -ARB Notifier
Hi <%= @reviewer_username %>, <%= @review.developer %> would like you to do a code review of <%= @review.count_commits %> commits. At your earliest convenience, please proceed to: http://janus.corp.amiestreet.com:3000/review/<%= @review.id %>/show or enter your <%= @review.project.name %> repository and do: git fetch review review-<%= @review.id %>:remotes/review/review-<%= @review.id %> git checkout remotes/review/review-<%= @review.id %> Log of commits in this review ============================= <%= @review.log %> Thanks, -ARB Notifier
Fix email to give proper git commands to checkout a review branch
Fix email to give proper git commands to checkout a review branch
RHTML
bsd-3-clause
toddlipcon/arb,toddlipcon/arb,toddlipcon/arb
Betulkan e-mel untuk memberikan arahan git yang betul untuk menyemak cawangan semakan
37e6d6a722f2739ddcf6347f85352d78a39c7cbf
app/views/scrap/notifier/mail.rhtml
app/views/scrap/notifier/mail.rhtml
<%= _('Hi, %{recipient}!') % { :recipient => @recipient } %> <%= word_wrap(_('%{sender} (%{sender_link}) has left the following scrap for you:') % { :sender => @sender, :sender_link => url_for(@sender_link) }) %> ------------------------------------------------------------------------------- <%= word_wrap(@scrap_content) %> ------------------------------------------------------------------------------- <%= _('View this scrap on the wall'): %> <%= url_for @wall_url %> <%= _("Greetings,") %> -- <%= _('%s team.') % @environment %> <%= url_for @url %>
<%= _('Hi, %{recipient}!') % { :recipient => @recipient } %> <%= word_wrap(_('%{sender} (%{sender_link}) has left the following scrap for you:') % { :sender => @sender, :sender_link => url_for(@sender_link) }) %> ------------------------------------------------------------------------------- <%= word_wrap(@scrap_content) %> ------------------------------------------------------------------------------- <%= _('View this scrap on the wall') %>: <%= url_for @wall_url %> <%= _("Greetings,") %> -- <%= _('%s team.') % @environment %> <%= url_for @url %>
Fix syntax error in template
Fix syntax error in template (ActionItem1719)
RHTML
agpl-3.0
AlessandroCaetano/noosfero,vfcosta/noosfero,pr-snas/noosfero-sgpr,CIRANDAS/noosfero-ecosol,evandrojr/noosfero,macartur/noosfero,LuisBelo/tccnoosfero,hebertdougl/noosfero,hackathon-oscs/rede-osc,tallysmartins/noosfero,LuisBelo/tccnoosfero,vfcosta/noosfero,arthurmde/noosfero,macartur/noosfero,hackathon-oscs/rede-osc,hackathon-oscs/rede-osc,macartur/noosfero,uniteddiversity/noosfero,marcosronaldo/noosfero,coletivoEITA/noosfero-ecosol,LuisBelo/tccnoosfero,joenio/noosfero,coletivoEITA/noosfero,blogoosfero/noosfero,AlessandroCaetano/noosfero,samasti/noosfero,hackathon-oscs/rede-osc,larissa/noosfero,rafamanzo/mezuro-travis,vfcosta/noosfero,evandrojr/noosfero,hebertdougl/noosfero,evandrojr/noosferogov,evandrojr/noosfero,blogoosfero/noosfero,joenio/noosfero,macartur/noosfero,tallysmartins/noosfero,joenio/noosfero,pr-snas/noosfero-sgpr,abner/noosfero,rafamanzo/mezuro-travis,uniteddiversity/noosfero,alexandreab/noosfero,abner/noosfero,blogoosfero/noosfero,ludaac/noosfero-mx,vfcosta/noosfero,hackathon-oscs/cartografias,samasti/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,larissa/noosfero,cesarfex/noosfero,uniteddiversity/noosfero,abner/noosfero,LuisBelo/tccnoosfero,larissa/noosfero,larissa/noosfero,vfcosta/noosfero,pr-snas/noosfero-sgpr,tallysmartins/noosfero,samasti/noosfero,cesarfex/noosfero,uniteddiversity/noosfero,hebertdougl/noosfero,evandrojr/noosferogov,danielafeitosa/noosfero,danielafeitosa/noosfero,hackathon-oscs/cartografias,joenio/noosfero,samasti/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,abner/noosfero,arthurmde/noosfero,alexandreab/noosfero,evandrojr/noosferogov,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,coletivoEITA/noosfero,LuisBelo/tccnoosfero,evandrojr/noosfero,hebertdougl/noosfero,joenio/noosfero,ludaac/noosfero-mx,alexandreab/noosfero,CIRANDAS/noosfero-ecosol,rafamanzo/mezuro-travis,ludaac/noosfero-mx,macartur/noosfero,AlessandroCaetano/noosfero,hackathon-oscs/rede-osc,evandrojr/noosfero,marcosronaldo/noosfero,tallysmartins/noosfero,LuisBelo/tccnoosfero,macartur/noosfero,arthurmde/noosfero,EcoAlternative/noosfero-ecosol,larissa/noosfero,uniteddiversity/noosfero,rafamanzo/mezuro-travis,hackathon-oscs/cartografias,evandrojr/noosfero,abner/noosfero,macartur/noosfero,arthurmde/noosfero,hackathon-oscs/rede-osc,pr-snas/noosfero-sgpr,evandrojr/noosferogov,abner/noosfero,arthurmde/noosfero,coletivoEITA/noosfero-ecosol,hackathon-oscs/cartografias,EcoAlternative/noosfero-ecosol,tallysmartins/noosfero,coletivoEITA/noosfero-ecosol,EcoAlternative/noosfero-ecosol,hebertdougl/noosfero,blogoosfero/noosfero,arthurmde/noosfero,cesarfex/noosfero,cesarfex/noosfero,marcosronaldo/noosfero,CIRANDAS/noosfero-ecosol,hebertdougl/noosfero,tallysmartins/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosferogov,coletivoEITA/noosfero,hackathon-oscs/rede-osc,EcoAlternative/noosfero-ecosol,pr-snas/noosfero-sgpr,hackathon-oscs/cartografias,cesarfex/noosfero,CIRANDAS/noosfero-ecosol,joenio/noosfero,uniteddiversity/noosfero,AlessandroCaetano/noosfero,marcosronaldo/noosfero,samasti/noosfero,danielafeitosa/noosfero,marcosronaldo/noosfero,marcosronaldo/noosfero,AlessandroCaetano/noosfero,evandrojr/noosferogov,cesarfex/noosfero,arthurmde/noosfero,evandrojr/noosfero,hebertdougl/noosfero,danielafeitosa/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,tallysmartins/noosfero,danielafeitosa/noosfero,coletivoEITA/noosfero-ecosol,hackathon-oscs/cartografias,vfcosta/noosfero,danielafeitosa/noosfero,evandrojr/noosferogov,uniteddiversity/noosfero,alexandreab/noosfero,samasti/noosfero,alexandreab/noosfero,larissa/noosfero,abner/noosfero,pr-snas/noosfero-sgpr,alexandreab/noosfero,cesarfex/noosfero,marcosronaldo/noosfero,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero,ludaac/noosfero-mx,ludaac/noosfero-mx,blogoosfero/noosfero,hackathon-oscs/cartografias,rafamanzo/mezuro-travis
Betulkan ralat sintaks dalam templat
d24c5613d9d760cb691003b5554e11adeb814075
app/views/tool/tasklist/_task_show.rhtml
app/views/tool/tasklist/_task_show.rhtml
<% task_id = "task_#{task.id}" details_id = "#{task_id}_details" links = [] task.users.each do |user| if user == current_user links << link_to(current_user.login, me_url(:action => 'tasks', :id => nil)) else links << link_to_user(user, :action => 'tasks') end end -%> <div class='name'> <%= friendly_date(task.updated_at) if task.updated_at? -%> <%= "<b>#{links.join(', ')}:</b>" if links.any? -%> <% if @upart and @upart.viewed_at? and task.created_at? %> <% if @upart.viewed_at < task.created_at - 1.minute %> <%= "(new)" -%> <% elsif @upart.viewed_at < task.updated_at - 1.minute%> <%= "(modified)" -%> <% end %> <% end %> <% if task.description.any? -%> <span><%= link_to_function h(task.name), "Element.toggle('#{details_id}')" %></span> <% else -%> <%=h task.name %> <% end %> </div> <div class='indent task_details' id="<%=details_id%>" style='display: none'> <%= task.description_html %> </div>
<% task_id = "task_#{task.id}" details_id = "#{task_id}_details" links = [] task.users.each do |user| if user == current_user links << link_to(current_user.login, me_url(:action => 'tasks', :id => nil)) else links << link_to_user(user, :action => 'tasks') end end -%> <div class='name'> <%= friendly_date(task.updated_at) if task.updated_at? -%> <%= "<b>#{links.join(', ')}:</b>" if links.any? -%> <% if @upart and @upart.viewed_at? and task.created_at? %> <% if @upart.viewed_at < task.created_at - 10.seconds %> <%= "(new)" -%> <% elsif @upart.viewed_at < task.updated_at - 10.seconds%> <%= "(modified)" -%> <% end %> <% end %> <% if task.description.any? -%> <span><%= link_to_function h(task.name), "Element.toggle('#{details_id}')" %></span> <% else -%> <%=h task.name %> <% end %> </div> <div class='indent task_details' id="<%=details_id%>" style='display: none'> <%= task.description_html %> </div>
Reduce delay in debouncing notification of modified tasks in task list.
Reduce delay in debouncing notification of modified tasks in task list.
RHTML
agpl-3.0
adammck/crabgrass,nilclass/echosocial,adammck/crabgrass,riseuplabs/crabgrass,adammck/crabgrass,ajturner/crisiscommons,nilclass/echosocial,riseuplabs/crabgrass,riseuplabs/crabgrass,riseuplabs/crabgrass,riseuplabs/crabgrass,nilclass/echosocial,riseuplabs/crabgrass,ajturner/crisiscommons,geoiq/digitalgazette,riseuplabs/crabgrass,nilclass/echosocial,geoiq/digitalgazette,adammck/crabgrass,ajturner/crisiscommons,geoiq/digitalgazette,ajturner/crisiscommons,geoiq/digitalgazette
Kurangkan kelewatan dalam menyahlantun pemberitahuan tugas yang diubah suai dalam senarai tugas.
6f74d8f66212ad53083151dd8f7f6642e9352b0a
app/views/general/_localised_datepicker.rhtml
app/views/general/_localised_datepicker.rhtml
<script type="text/javascript"> $(function() { $(".use-datepicker").datepicker( {closeText: '<%= _("Done") %>', prevText: '<%= _("Prev") %>', nextText: '<%= _("Next") %>', currentText: '<%= _("Today") %>', monthNames: <%= I18n.translate('date.month_names')[1..-1].to_json %>, monthNamesShort: <%= I18n.translate('date.abbr_month_names')[1..-1].to_json %>, dayNames: <%= I18n.translate('date.day_names').to_json %>, dayNamesShort: <%= I18n.translate('date.abbr_day_names').to_json %>, dayNamesMin: <%= I18n.translate('date.abbr_day_names').collect{|x| x[0..0]}.to_json %>, weekHeader: '<%= _("Wk") %>', dateFormat: '<%= I18n.translate('date.formats.default').sub("%Y", "yy").sub("%m", "mm").sub("%d", "dd").gsub("-", "/") %>'} ); }); </script>
<script type="text/javascript"> $(function() { $(".use-datepicker").datepicker( {closeText: '<%= _("Done") %>', prevText: '<%= _("Prev") %>', nextText: '<%= _("Next") %>', currentText: '<%= _("Today") %>', monthNames: <%= raw I18n.translate('date.month_names')[1..-1].to_json %>, monthNamesShort: <%= raw I18n.translate('date.abbr_month_names')[1..-1].to_json %>, dayNames: <%= raw I18n.translate('date.day_names').to_json %>, dayNamesShort: <%= raw I18n.translate('date.abbr_day_names').to_json %>, dayNamesMin: <%= raw I18n.translate('date.abbr_day_names').collect{|x| x[0..0]}.to_json %>, weekHeader: '<%= _("Wk") %>', dateFormat: '<%= I18n.translate('date.formats.default').sub("%Y", "yy").sub("%m", "mm").sub("%d", "dd").gsub("-", "/") %>'} ); }); </script>
Fix calendar picker on request search page
Fix calendar picker on request search page
RHTML
agpl-3.0
andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,obshtestvo/alaveteli-bulgaria,4bic/alaveteli,nzherald/alaveteli,codeforcroatia/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,Br3nda/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,petterreinholdtsen/alaveteli,nzherald/alaveteli,hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli,datauy/alaveteli,hasadna/alaveteli,Br3nda/alaveteli,petterreinholdtsen/alaveteli,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli_old,datauy/alaveteli,obshtestvo/alaveteli-bulgaria,10layer/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli_old,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,codeforcroatia/alaveteli,hasadna/alaveteli,nzherald/alaveteli,datauy/alaveteli,10layer/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,codeforcroatia/alaveteli,TEDICpy/QueremoSaber,10layer/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,nzherald/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli,petterreinholdtsen/alaveteli,Br3nda/alaveteli,petterreinholdtsen/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli_old
Betulkan pemilih kalendar pada halaman carian permintaan
7418e7a3869bc68208263e382a15e280df916a98
lib/views/general/_before_head_end.rhtml
lib/views/general/_before_head_end.rhtml
<%= stylesheet_link_tag "/tuderechoasaber-theme/stylesheets/custom" %> <% if RAILS_ENV == 'production' %> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-431041-8']); _gaq.push(['_setDomainName', 'tuderechoasaber.es']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "ur-7cc3d19d-c1ea-bb5b-a70d-d9b23629ea61"}); </script> <% end %>
<%= stylesheet_link_tag "/tuderechoasaber-theme/stylesheets/custom" %> <% if RAILS_ENV == 'production' %> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-431041-8']); _gaq.push(['_setDomainName', 'tuderechoasaber.es']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <% end %> <% if params[:action] == 'frontpage' %> <script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "ur-7cc3d19d-c1ea-bb5b-a70d-d9b23629ea61"}); </script> <% end %>
Improve performance by including ShareThis only in homepage
Improve performance by including ShareThis only in homepage
RHTML
mit
datauy/quesabes-theme,datauy/quesabes-theme,datauy/quesabes-theme
Tingkatkan prestasi dengan memasukkan ShareThis sahaja dalam halaman utama
763eaa01ac83cfe7c5e8c939481a39b29e5cb86a
app/views/user/_signin.rhtml
app/views/user/_signin.rhtml
<div id="signin"> <% form_tag({:action => "signin"}, {:id => "signin_form"}) do %> <%= foi_error_messages_for :user_signin %> <h2>If you've used WhatDoTheyKnow before</h2> <p> <label class="form_label" for="user_signin_email">Your e-mail:</label> <%= text_field 'user_signin', 'email', { :size => 20 } %> </p> <p> <label class="form_label" for="user_signin_password">Password:</label> <%= password_field 'user_signin', 'password', { :size => 15 } %> </p> <p class="form_note"> <%= link_to "Forgotten your password?", signchange_url + "?pretoken=" + h(params[:token]) %> </p> <p class="form_note"> <%= check_box_tag 'remember_me', "1" %> <label for="remember_me">Remember me</label> </p> <div class="form_button"> <%= hidden_field_tag 'token', params[:token], { :id => 'signin_token' } %> <%= submit_tag "Sign in" %> </div> <% end %> </div>
<div id="signin"> <% form_tag({:action => "signin"}, {:id => "signin_form"}) do %> <%= foi_error_messages_for :user_signin %> <h2>If you've used WhatDoTheyKnow before</h2> <p> <label class="form_label" for="user_signin_email">Your e-mail:</label> <%= text_field 'user_signin', 'email', { :size => 20 } %> </p> <p> <label class="form_label" for="user_signin_password">Password:</label> <%= password_field 'user_signin', 'password', { :size => 15 } %> </p> <p class="form_note"> <%= link_to "Forgotten your password?", signchange_url + "?pretoken=" + h(params[:token]) %> </p> <p class="form_checkbox"> <%= check_box_tag 'remember_me', "1" %> <label for="remember_me">Remember me</label> (keeps you signed in longer; do not use on a public computer) </p> <div class="form_button"> <%= hidden_field_tag 'token', params[:token], { :id => 'signin_token' } %> <%= submit_tag "Sign in" %> </div> <% end %> </div>
Add wording to rememeber me box
Add wording to rememeber me box
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Tambah perkataan untuk mengingati saya kotak
5dabe793f5dd262bb60dc7cbe59e7836cdb308d0
app/views/general/_frontpage_intro_sentence.rhtml
app/views/general/_frontpage_intro_sentence.rhtml
<h2> Your <strong>Right to Know</strong> </h2> <p>Every citizen has the right to access information held by public authorities. <strong>By law, they have to respond</strong>. <a href="<%= help_about_path %>">Find out more about freedom of information.</a></p>
<h2 style="font-size:1.2em;line-height: 1.3;margin-top: -10px;"> הגשת בקשות פתוחה למתנדבי הסדנא לידע ציבורי בלבד </h2> <p style="margin: 0;"> על פי חוק, הפטור מהאגרה ניתן רק לעמותות ופעיליהן, ולכן לצערינו הגשת בקשות דרך אתר זה ניתנת אך ורק למתנדבי הסדנא. ניתן להגיש בקשות גם <a href="https://foi.gov.il/he/inforequest">באתר משרד המשפטים</a>. האגרה היא בסך הכל 20 ש"ח. </p> <p style="font-size:0.8em;margin: 4px 0;"> רוצים להתנדב בסדנא? קראו <a href="http://www.hasadna.org.il/">כאן</a> ומלאו את השאלון. </p>
Replace front page message with notice about usage for Hasadna volunteers only
Replace front page message with notice about usage for Hasadna volunteers only
RHTML
agpl-3.0
hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli,hasadna/alaveteli
Gantikan mesej muka depan dengan notis tentang penggunaan untuk sukarelawan Hasadna sahaja
09ab6cf2b2337c5edcbabb92ed711f7ac4fea16d
themes/django/views/edit.rhtml
themes/django/views/edit.rhtml
<% @body_class = 'change-form' @content_class = 'colM' @title = @object.new_record? ? "Add #{human_model.downcase}" : "Change #{human_model.downcase}" @tools = [] @tools << link_to( "History", { :model => params[:model], :action => 'history', :id => params[:id] } ) if has_history? admin_form_for params[:model], @object, :url => { :action => 'save', :model => params[:model], :id => @object.id } do |builder| builder.outer do builder.prologue do end model.active_admin_fieldsets.each do |set| set.build builder end %> <div class="submit-row"> <% unless @object.new_record? %> <p class="float-left"><%= link_to 'Delete', { :action => 'delete', :model => params[:model], :id => @object.id }, { :class => 'deletelink', :post => true, :confirm => "Are you sure you want to delete \"#{@object.to_label}\"?" } %></p> <% end %> <input type="submit" value="Save and add another" name="_addanother" /> <input type="submit" value="Save and continue editing" name="_continue" /> <input type="submit" value="Save" class="default" /> </div> <% builder.epilogue do end end end %>
<% @body_class = 'change-form' @content_class = 'colM' @title = @object.new_record? ? "Add #{human_model.downcase}" : "Change #{human_model.downcase}" @tools = [] @tools << link_to( "History", { :model => params[:model], :action => 'history', :id => params[:id] } ) if has_history? admin_form_for params[:model], @object, :url => { :action => 'save', :model => params[:model], :id => @object.id } do |builder| builder.outer do builder.prologue do end model.active_admin_fieldsets.each do |set| set.build builder end %> <div class="submit-row"> <% unless @object.new_record? %> <p class="float-left"><%= link_to 'Delete', { :action => 'delete', :model => params[:model], :id => @object.id }, { :class => 'deletelink', :method => :post, :confirm => "Are you sure you want to delete \"#{@object.to_label}\"?" } %></p> <% end %> <input type="submit" value="Save and add another" name="_addanother" /> <input type="submit" value="Save and continue editing" name="_continue" /> <input type="submit" value="Save" class="default" /> </div> <% builder.epilogue do end end end %>
Use :method => :post instead of :post => true, as per deprecation.
Use :method => :post instead of :post => true, as per deprecation.
RHTML
mit
baldowl/auto_admin
Gunakan :method => :post dan bukannya :post => true, mengikut penamatan.
85b296cab1b9bd9f6fe987357ea3fc2afc2edc58
plugins/community_track/views/cms/community_track_plugin/_track.rhtml
plugins/community_track/views/cms/community_track_plugin/_track.rhtml
<div class='community-track'> <%= required_fields_message %> <%= render :file => 'shared/tiny_mce' %> <div> <%= required labelled_form_field(_('Title'), text_field(:article, 'name', :size => '64', :maxlength => 150)) %> </div> <%= render :partial => 'shared/lead_and_body', :locals => {:tiny_mce => true, :body_label => 'Description:'} %> <div> <% f.fields_for :image_builder, @article.image do |i| %> <%= file_field_or_thumbnail(_('Image:'), @article.image, i) %> <% end %> <%= labelled_form_field(_('Goals:'), text_area(:article, :goals, :rows => 3, :cols => 64)) %> <%= labelled_form_field(_('Expected Results:'), text_area(:article, :expected_results, :rows => 3, :cols => 64)) %> </div> </div>
<div class='community-track'> <%= required_fields_message %> <%= render :file => 'shared/tiny_mce' %> <div> <%= required labelled_form_field(_('Title'), text_field(:article, 'name', :size => '64', :maxlength => 150)) %> </div> <%= render :partial => 'shared/lead_and_body', :locals => {:tiny_mce => true, :body_label => 'Description:'} %> <div> <%= labelled_form_field(_('Goals:'), text_area(:article, :goals, :rows => 3, :cols => 64)) %> <%= labelled_form_field(_('Expected Results:'), text_area(:article, :expected_results, :rows => 3, :cols => 64)) %> </div> </div>
Remove redundant image param of track at edition form
Remove redundant image param of track at edition form
RHTML
agpl-3.0
blogoosfero/noosfero,hackathon-oscs/rede-osc,vfcosta/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,marcosronaldo/noosfero,uniteddiversity/noosfero,coletivoEITA/noosfero-ecosol,hebertdougl/noosfero,evandrojr/noosfero,tallysmartins/noosfero,AlessandroCaetano/noosfero,tallysmartins/noosfero,arthurmde/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,hebertdougl/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,marcosronaldo/noosfero,evandrojr/noosfero,macartur/noosfero,vfcosta/noosfero,tallysmartins/noosfero,blogoosfero/noosfero,blogoosfero/noosfero,hackathon-oscs/rede-osc,tallysmartins/noosfero,EcoAlternative/noosfero-ecosol,abner/noosfero,vfcosta/noosfero,uniteddiversity/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosfero,larissa/noosfero,coletivoEITA/noosfero,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,macartur/noosfero,samasti/noosfero,abner/noosfero,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,abner/noosfero,vfcosta/noosfero,evandrojr/noosferogov,evandrojr/noosferogov,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,EcoAlternative/noosfero-ecosol,hackathon-oscs/rede-osc,marcosronaldo/noosfero,evandrojr/noosfero,coletivoEITA/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,alexandreab/noosfero,evandrojr/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,marcosronaldo/noosfero,samasti/noosfero,LuisBelo/tccnoosfero,abner/noosfero,hackathon-oscs/cartografias,uniteddiversity/noosfero,hackathon-oscs/cartografias,arthurmde/noosfero,hackathon-oscs/rede-osc,coletivoEITA/noosfero,LuisBelo/tccnoosfero,larissa/noosfero,macartur/noosfero,arthurmde/noosfero,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,macartur/noosfero,hackathon-oscs/cartografias,alexandreab/noosfero,arthurmde/noosfero,larissa/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,coletivoEITA/noosfero,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosferogov,hackathon-oscs/cartografias,vfcosta/noosfero,tallysmartins/noosfero,evandrojr/noosferogov,arthurmde/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,AlessandroCaetano/noosfero,uniteddiversity/noosfero,tallysmartins/noosfero,CIRANDAS/noosfero-ecosol,samasti/noosfero,hackathon-oscs/cartografias,evandrojr/noosferogov,larissa/noosfero,evandrojr/noosferogov,hebertdougl/noosfero,CIRANDAS/noosfero-ecosol,hackathon-oscs/cartografias,abner/noosfero,hebertdougl/noosfero,macartur/noosfero,abner/noosfero,uniteddiversity/noosfero,uniteddiversity/noosfero,tallysmartins/noosfero,hackathon-oscs/cartografias,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,evandrojr/noosfero,LuisBelo/tccnoosfero,larissa/noosfero,marcosronaldo/noosfero,samasti/noosfero,arthurmde/noosfero,evandrojr/noosfero,vfcosta/noosfero,marcosronaldo/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,arthurmde/noosfero,larissa/noosfero,abner/noosfero,larissa/noosfero,hebertdougl/noosfero,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,AlessandroCaetano/noosfero,blogoosfero/noosfero,macartur/noosfero,coletivoEITA/noosfero-ecosol,marcosronaldo/noosfero,alexandreab/noosfero,alexandreab/noosfero,macartur/noosfero,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,alexandreab/noosfero,evandrojr/noosferogov
Alih keluar param imej berlebihan trek pada borang edisi
b0819e6159daa48f9b21340896b1041b5c1f60e5
lib/views/admin_general/_admin_navbar.rhtml
lib/views/admin_general/_admin_navbar.rhtml
<div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <%= link_to 'Alaveteli', main_url('/'), :class => "brand" %> <div class="nav-collapse"> <ul class="nav"> <li><%= link_to 'Summary', admin_url("") %></li> <li><%= link_to 'Timeline', admin_url("timeline") %></li> <li><%= link_to 'Stats', admin_url("stats") %></li> <li><%= link_to 'Debug', admin_url("debug") %></li> <li><%= link_to 'Authorities', admin_url("body/list") %></li> <li><%= link_to 'Requests', admin_url("request/list") %></li> <li><%= link_to 'Users', admin_url("user/list") %></li> <li><%= link_to 'Tracks', admin_url("track/list") %></li> <li><%= link_to 'Log out', signout_path %></li> </ul> </div> </div> </div> </div>
<div class="navbar navbar-fixed-top navbar-inverse admin"> <div class="navbar-inner"> <div class="container"> <%= link_to 'Alaveteli', main_url('/'), :class => "brand" %> <div class="nav-collapse"> <ul class="nav"> <li><%= link_to 'Summary', admin_url("") %></li> <li><%= link_to 'Timeline', admin_url("timeline") %></li> <li><%= link_to 'Stats', admin_url("stats") %></li> <li><%= link_to 'Debug', admin_url("debug") %></li> <li><%= link_to 'Authorities', admin_url("body/list") %></li> <li><%= link_to 'Requests', admin_url("request/list") %></li> <li><%= link_to 'Users', admin_url("user/list") %></li> <li><%= link_to 'Tracks', admin_url("track/list") %></li> <li><%= link_to 'Log out', signout_path %></li> </ul> </div> </div> </div> </div>
Add navbar-inverse class to the admin navbar - the bootstrap default is now a white background. Add admin class in order to apply styles from the admin stylesheet even when the navbar is being shown to an admin user using the front end (so no admin class will be applied to the body element).
Add navbar-inverse class to the admin navbar - the bootstrap default is now a white background. Add admin class in order to apply styles from the admin stylesheet even when the navbar is being shown to an admin user using the front end (so no admin class will be applied to the body element).
RHTML
mit
mysociety/adminbootstraptheme,mysociety/adminbootstraptheme
Tambahkan kelas songsang navbar pada navbar pentadbir - lalai bootstrap kini menjadi latar belakang putih. Tambahkan kelas pentadbir untuk menggunakan gaya daripada helaian gaya pentadbir walaupun semasa bar navigasi ditunjukkan kepada pengguna pentadbir menggunakan bahagian hadapan (jadi tiada kelas pentadbir akan digunakan pada elemen badan).
c0aa120fa4d7e410b05ddf0c01f2f0f9eecd6878
app/views/request/frontpage.rhtml
app/views/request/frontpage.rhtml
<div id="frontpage"> <div id="make_requests"> <h1>Make requests for information from the UK Government</h1> <% form_for(:info_request, @info_request, :url => { :controller => :new, :action => :index }, :html => { :id => 'public_body_form', :class => 'plaque' } ) do |f| %> <p>Choose which public body you would like information from.</p> <%= @public_bodies = PublicBody.find(:all, :order => "name") f.collection_select(:public_body_id, @public_bodies, :id, :name) %> <p><%= submit_tag "Submit >>" %></p> <% end %> </div> <div id="find_information"> <h1>Find information that others requested</h1> <p><a href="/list">View all information</a></p> </div> </div>
<div id="frontpage"> <div id="make_requests"> <h1>Make requests for information from the UK Government</h1> <% form_for(:info_request, @info_request, :url => { :controller => :request, :action => :new }, :html => { :id => 'public_body_form', :class => 'plaque' } ) do |f| %> <p>Choose which public body you would like information from.</p> <%= @public_bodies = PublicBody.find(:all, :order => "name") f.collection_select(:public_body_id, @public_bodies, :id, :name) %> <p><%= submit_tag "Submit >>" %></p> <% end %> </div> <div id="find_information"> <h1>Find information that others requested</h1> <p><a href="/list">View all information</a></p> </div> </div>
Fix form link on front page to use new controller layout.
Fix form link on front page to use new controller layout.
RHTML
agpl-3.0
nzherald/alaveteli,10layer/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,10layer/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli_old,4bic/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,TEDICpy/QueremoSaber,sarhane/alaveteli-test,4bic/alaveteli,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,datauy/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,kuahyeow/foi,TEDICpy/QueremoSaber,petterreinholdtsen/alaveteli,Br3nda/alaveteli,4bic/alaveteli,sarhane/alaveteli-test,petterreinholdtsen/alaveteli,Br3nda/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,hasadna/alaveteli,hasadna/alaveteli,datauy/alaveteli,datauy/alaveteli,TEDICpy/QueremoSaber,petterreinholdtsen/alaveteli,petterreinholdtsen/alaveteli,petterreinholdtsen/alaveteli,nzherald/alaveteli,4bic/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,nzherald/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,obshtestvo/alaveteli-bulgaria,kuahyeow/foi,10layer/alaveteli
Betulkan pautan borang pada halaman hadapan untuk menggunakan reka letak pengawal baharu.
afe8ffffe945eb3201a9c6e3b10157c55d167488
app/views/user/new.rhtml
app/views/user/new.rhtml
<h1>Create a user account</h1><br> Fill in the form and we'll send you a quick email to activate your account.<br><br> By creating an account, you agree that all work uploaded to openstreetmap.org and all data created by use of any tools which connect to openstreetmap.org is to be licensed under <a href="http://creativecommons.org/licenses/by-sa/2.0/">this Creative Commons license (by-sa)</a>.<br><br> <%= error_messages_for 'user' %> <% form_tag :action => 'save' do %> <table> <tr><td>email:</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>login name</td><td><%= text_field('user', 'display_name',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>password:</td><td><%= password_field('user', 'pass_crypt',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>retype password:</td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 50, :maxlength => 255}) %></td></tr> </table> <br> <br> <input type="submit" value="Signup"> <% end %>
<h1>Create a user account</h1><br> Fill in the form and we'll send you a quick email to activate your account.<br><br> By creating an account, you agree that all work uploaded to openstreetmap.org and all data created by use of any tools which connect to openstreetmap.org is to be licensed under <a href="http://creativecommons.org/licenses/by-sa/2.0/">this Creative Commons license (by-sa)</a>.<br><br> <%= error_messages_for 'user' %> <% form_tag :action => 'save' do %> <table> <tr><td>Email</td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>Display Name</td><td><%= text_field('user', 'display_name',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>Password</td><td><%= password_field('user', 'pass_crypt',{:size => 50, :maxlength => 255}) %></td></tr> <tr><td>Confirm Password</td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 50, :maxlength => 255}) %></td></tr> </table> <br> <br> <input type="submit" value="Signup"> <% end %>
Make field names consistent with the account editing page.
Make field names consistent with the account editing page.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Jadikan nama medan selaras dengan halaman pengeditan akaun.
b47222dbaa2a4cb7966f17b016a067cad4776492
app/views/user/mobile_login.rhtml
app/views/user/mobile_login.rhtml
<h1>The Carbon Diet</h1> <h2>Sign In</h2> <% if flash[:notice] %> <p class="flash"><%=h flash[:notice] %></p> <% end %> <%= form_tag :action => 'auth' %> <p> Username:<br/> <%= text_field 'user', 'login' %> </p> <p> Password:<br/> <%= password_field 'user', 'password' %> </p> <p> Remember me <%= check_box 'user', 'remember' %> </p> <p> <%= submit_tag 'Log In' %> </p> <%= end %>
<h1>The Carbon Diet</h1> <h2>Sign In</h2> <% if flash[:notice] %> <p class="flash"><%=h flash[:notice] %></p> <% end %> <% form_tag :action => 'auth' do %> <p> Username:<br/> <%= text_field 'user', 'login' %> </p> <p> Password:<br/> <%= password_field 'user', 'password' %> </p> <p> Remember me <%= check_box 'user', 'remember' %> </p> <p> <%= submit_tag 'Log In' %> </p> <% end %>
Fix to mobile login page
Fix to mobile login page
RHTML
agpl-3.0
Floppy/carbon-diet,Floppy/carbon-diet,Floppy/carbon-diet,Floppy/carbon-diet
Betulkan ke halaman log masuk mudah alih
72dfcec57ff2bb9ab3b47b3b7b8eede3e442f0a4
lib/views/admin_general/_admin_navbar.rhtml
lib/views/admin_general/_admin_navbar.rhtml
<div class="navbar navbar-fixed-top navbar-inverse admin"> <div class="navbar-inner"> <div class="container"> <%= link_to 'Alaveteli', main_url('/'), :class => "brand" %> <div class="nav-collapse"> <ul class="nav"> <li><%= link_to 'Summary', admin_url("") %></li> <li><%= link_to 'Timeline', admin_url("timeline") %></li> <li><%= link_to 'Stats', admin_url("stats") %></li> <li><%= link_to 'Debug', admin_url("debug") %></li> <li><%= link_to 'Authorities', admin_url("body/list") %></li> <li><%= link_to 'Requests', admin_url("request/list") %></li> <li><%= link_to 'Users', admin_url("user/list") %></li> <li><%= link_to 'Tracks', admin_url("track/list") %></li> <li><%= link_to 'Log out', signout_path %></li> </ul> </div> </div> </div> </div>
<div class="admin"> <div class="navbar navbar-fixed-top navbar-inverse"> <div class="navbar-inner"> <div class="container"> <%= link_to 'Alaveteli', main_url('/'), :class => "brand" %> <div class="nav-collapse"> <ul class="nav"> <li><%= link_to 'Summary', admin_url("") %></li> <li><%= link_to 'Timeline', admin_url("timeline") %></li> <li><%= link_to 'Stats', admin_url("stats") %></li> <li><%= link_to 'Debug', admin_url("debug") %></li> <li><%= link_to 'Authorities', admin_url("body/list") %></li> <li><%= link_to 'Requests', admin_url("request/list") %></li> <li><%= link_to 'Users', admin_url("user/list") %></li> <li><%= link_to 'Tracks', admin_url("track/list") %></li> <li><%= link_to 'Log out', signout_path %></li> </ul> </div> </div> </div> </div> </div>
Add extra div to get namespacing of admin navbar classes right.
Add extra div to get namespacing of admin navbar classes right.
RHTML
mit
mysociety/adminbootstraptheme,mysociety/adminbootstraptheme
Tambahkan div tambahan untuk mendapatkan ruang nama kelas navbar pentadbir dengan betul.
c1299fbb35d99287e25d7c7573bb467fc6b9ac5f
app/views/site/_key.rhtml
app/views/site/_key.rhtml
<% content_for :left_menu do %> <%= link_to_function "Map key", "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<12) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else { var imgname = 'keymapnik12.png'; } updateSidebar("Map key", "<p><img src='images/"+imgname+"' /></p>"); openSidebar("210px"); } function updateKey() { if (sidebarOpen("Map key")) { showKey(); } } // --> </script>
<% content_for :left_menu do %> <%= link_to_function "Map key", "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else { var imgname = 'keymapnik13.png'; } updateSidebar("Map key", "<p><img src='images/"+imgname+"' /></p>"); openSidebar("210px"); } function updateKey() { if (sidebarOpen("Map key")) { showKey(); } } // --> </script>
Use the z13 key for z13 and over.
Use the z13 key for z13 and over.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Gunakan kekunci z13 untuk z13 dan ke atas.
9fa8aab9f2b28604d9fda96e13d3ab4c2f52565d
app/views/message/_message_summary.rhtml
app/views/message/_message_summary.rhtml
<tr class="inbox-row<%= "-unread" if not message_summary.message_read? %>"> <td class="inbox-sender"><%= link_to message_summary.sender.display_name , :controller => 'user', :action => message_summary.sender.display_name %></td> <td class="inbox-subject"> <% if message_summary.title.nil? or message_summary.title == '' %> <%= link_to '(no subject)' , :controller => 'message', :action => 'read', :message_id => message_summary.id %> <% else %> <%= link_to message_summary.title , :controller => 'message', :action => 'read', :message_id => message_summary.id %> <% end %> </td> <td class="inbox-sent"><%= message_summary.sent_on %></td> <% if message_summary.message_read? %> <td><%= button_to 'Mark as unread', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'unread' %></td> <% else %> <td><%= button_to 'Mark as read', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'read' %></td> <% end %> <td><%= button_to 'Reply', :controller => 'message', :action => 'new', :user_id => message_summary.from_user_id %></td> </tr>
<tr class="inbox-row<%= "-unread" if not message_summary.message_read? %>"> <td class="inbox-sender"><%= link_to message_summary.sender.display_name , :controller => 'user', :action => message_summary.sender.display_name %></td> <td class="inbox-subject"><%= link_to message_summary.title , :controller => 'message', :action => 'read', :message_id => message_summary.id %></td> <td class="inbox-sent"><%= message_summary.sent_on %></td> <% if message_summary.message_read? %> <td><%= button_to 'Mark as unread', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'unread' %></td> <% else %> <td><%= button_to 'Mark as read', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'read' %></td> <% end %> <td><%= button_to 'Reply', :controller => 'message', :action => 'new', :user_id => message_summary.from_user_id %></td> </tr>
Revert SteveC's edit as blank title are now banned.
Revert SteveC's edit as blank title are now banned.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Kembalikan suntingan SteveC sebagai tajuk kosong kini dilarang.
c2707d72e027eb58d953bafab3fdf66f84b936f3
app/views/notifier/signup_confirm.text.html.rhtml
app/views/notifier/signup_confirm.text.html.rhtml
<p>Hi,</p> <p>Someone (hopefully you) would like to create an account over at <%= SERVER_URL %>.</p> <p>If this is you, please click the link below to confirm that account.</p> <p><a href="><%= @url %>"><%= @url %></a></p>
<p>Hi,</p> <p>Someone (hopefully you) would like to create an account over at <%= SERVER_URL %>.</p> <p>If this is you, please click the link below to confirm that account.</p> <p><a href="<%= @url %>"><%= @url %></a></p>
Fix typo in HTML version of account confirmation message.
Fix typo in HTML version of account confirmation message.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Betulkan kesilapan menaip dalam versi HTML mesej pengesahan akaun.
253a82232858e4389af5ba8508f80065e5ce4d24
app/views/layouts/application.rhtml
app/views/layouts/application.rhtml
<html> <head> <title>Amie Street Reviews</title> <%= stylesheet_link_tag 'arb.css' %> <%= javascript_include_tag :defaults %> </head> <body> <%= yield %> </body> </html>
<html> <head> <title>Amie Street Reviews</title> <%= stylesheet_link_tag 'arb.css', :media => 'all' %> <%= javascript_include_tag :defaults %> </head> <body> <%= yield %> </body> </html>
Change stylesheet to be media "all" so that print/save to pdf keeps formatting
Change stylesheet to be media "all" so that print/save to pdf keeps formatting
RHTML
bsd-3-clause
toddlipcon/arb,toddlipcon/arb,toddlipcon/arb
Tukar lembaran gaya menjadi media "semua" supaya cetak/simpan ke pdf terus diformat
5c7c3375c71d132eddad34e3df1ff49b73ae5008
app/views/admin/pages/_form.rhtml
app/views/admin/pages/_form.rhtml
<%= error_messages_for 'page' %> <!--[form:pages]--> <p> <label for="page_name">Location:</label><br /> /page/ <%= text_field 'page', 'name', :size => 16 %> </p> <p> <label for="page_title">Title:</label><br /> <%= text_field 'page', 'title', :size => 20 %> </p> <p> <label for="page_body">Content:</label><br /> <%= text_area 'page', 'body', :rows => 25, :cols => 65 %> </p> <label for="page_text_filter">Textfilter: </label><%= select 'page', 'text_filter', text_filter_options %><br/> <br clear="all"/> <!--[eoform:pages]-->
<%= error_messages_for 'page' %> <!--[form:pages]--> <p> <label for="page_name">Location:</label><br /> /pages/ <%= text_field 'page', 'name', :size => 16 %> </p> <p> <label for="page_title">Title:</label><br /> <%= text_field 'page', 'title', :size => 20 %> </p> <p> <label for="page_body">Content:</label><br /> <%= text_area 'page', 'body', :rows => 25, :cols => 65 %> </p> <label for="page_text_filter">Textfilter: </label><%= select 'page', 'text_filter', text_filter_options %><br/> <br clear="all"/> <!--[eoform:pages]-->
Fix minor typo on pages admin page
Fix minor typo on pages admin page git-svn-id: 70ab0960c3db1cbf656efd6df54a8f3de72dc710@516 820eb932-12ee-0310-9ca8-eeb645f39767
RHTML
mit
swombat/blog,swombat/blog,swombat/blog,swombat/blog,swombat/blog
Betulkan kesilapan kesilapan kecil pada halaman pentadbir halaman
0e70f63f3cd3845d2819c1519f57d869d56f2be4
app/views/observer/show_comment.rhtml
app/views/observer/show_comment.rhtml
<%= link_to 'Back', :action => 'show_observation', :id => @comment.observation %> <% if check_permission(@comment.user_id) %> | <%= link_to 'Edit', :action => 'edit_comment', :id => @comment %> | <%= link_to 'Destroy', :action => 'destroy_comment', :id => @comment %> <% end %> <div id="Title">Comment on <%= h @comment.observation.unique_name %></div> <p>Created: <%= @comment.created.to_formatted_s(:db) %></p> <p>By: <%= @comment.user.unique_name %></p> <p>Summary: <%= @comment.summary %></p> <p>Comment: <%= textilize @comment.comment %></p>
<%= link_to 'Goto Observation', :action => 'show_observation', :id => @comment.observation %> <% if check_permission(@comment.user_id) %> | <%= link_to 'Edit', :action => 'edit_comment', :id => @comment %> | <%= link_to 'Destroy', :action => 'destroy_comment', :id => @comment %> <% end %> <div id="Title">Comment on <%= h @comment.observation.unique_name %></div> <p>Created: <%= @comment.created.to_formatted_s(:db) %></p> <p>By: <%= @comment.user.unique_name %></p> <p>Summary: <%= @comment.summary %></p> <p>Comment: <%= textilize @comment.comment %></p>
Switch Back link to Goto Observsation
Switch Back link to Goto Observsation
RHTML
mit
raysuelzer/mushroom-observer,raysuelzer/mushroom-observer,MushroomObserver/mushroom-observer,raysuelzer/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,MushroomObserver/mushroom-observer,JoeCohen/mushroom-observer,pellaea/mushroom-observer,JoeCohen/mushroom-observer,JoeCohen/mushroom-observer,MushroomObserver/mushroom-observer,pellaea/mushroom-observer,pellaea/mushroom-observer,JoeCohen/mushroom-observer,JoeCohen/mushroom-observer,raysuelzer/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,raysuelzer/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,MushroomObserver/mushroom-observer,JoeCohen/mushroom-observer,raysuelzer/mushroom-observer,JoeCohen/mushroom-observer,pellaea/mushroom-observer,raysuelzer/mushroom-observer
Tukar pautan Kembali ke Pergi Ke Pemerhatian
8bc6550030162bfb9dd999c5e85088ca213e0c66
app/views/layouts/_footer.rhtml
app/views/layouts/_footer.rhtml
<div id="footer"> <div id="copy"> <% if not Company.owner.homepage.nil? %> <a href="<%= Company.owner.homepage %>"><%= Company.owner.name %></a> <% else %> <%= Company.owner.name %> <% end %> </div> <div id="productSignature"><%= product_signature %></div> </div>
<div id="footer"> <div id="copy"> <% if not Company.owner.homepage.nil? %> <a href="<%= Company.owner.homepage %>"><%= Company.owner.name %></a> <% else %> <%= Company.owner.name %> <% end %> </div> <div id="productSignature"><%= product_signature %>. Icons by <a href="http://dryicons.com">DryIcons.</div> </div>
Add DryIcons credit per license
Add DryIcons credit per license Signed-off-by: James Urquhart <d092eb11f6d4ecd368c05e395455102ecf3e697d@gmail.com>
RHTML
agpl-3.0
UWC4C/Railscollab,kakra/railscollab,kakra/railscollab,UWC4C/Railscollab,rajeshrsmail/railscollab,rajeshrsmail/railscollab
Tambahkan kredit DryIcons setiap lesen
04653b52f2233c9b4fea6b690d16a825b974d36d
app/views/request_mailer/new_response_reminder_alert.rhtml
app/views/request_mailer/new_response_reminder_alert.rhtml
<%=_('To let everyone know, follow this link and then select the appropriate box.')%> <%=@url%> <%= _('Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on',:info_request=>@info_request.title)%> <%= @info_request.public_body.name %>. -- <%= _('the {{site_name}} team', :site_name=>site_name) %>
<%=_('To let us know, follow this link and then select the appropriate box.')%> <%=@url%> <%= _('Your request was called {{info_request}}. Letting everyone know whether you got the information will help us keep tabs on',:info_request=>@info_request.title)%> <%= @info_request.public_body.name %>. -- <%= _('the {{site_name}} team', :site_name=>site_name) %>
Revert "Let everyone know, not just us"
Revert "Let everyone know, not just us" This reverts commit e3cfe550fe835c68b25d693abd40aedd954913b3. It’s a bit late in the release cycle to be making a cosmetic change to a string that has to be translated into lots of different languages. We’ll pull this change into the develop branch, but not release/0.6.
RHTML
agpl-3.0
TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,TEDICpy/QueremoSaber,10layer/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,codeforcroatia/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,sarhane/alaveteli-test,nzherald/alaveteli,4bic/alaveteli,10layer/alaveteli,andreicristianpetcu/alaveteli,nzherald/alaveteli,4bic/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,petterreinholdtsen/alaveteli,datauy/alaveteli,datauy/alaveteli,nzherald/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,datauy/alaveteli,hasadna/alaveteli,Br3nda/alaveteli,TEDICpy/QueremoSaber,Br3nda/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,petterreinholdtsen/alaveteli,4bic/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,petterreinholdtsen/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,10layer/alaveteli,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,petterreinholdtsen/alaveteli,Br3nda/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,TEDICpy/QueremoSaber
Kembalikan "Beritahu semua orang, bukan hanya kami"
5ccd10bbf4bb92cb319a88274fcb9ec7b035ebfb
public/designs/themes/base/navigation.rhtml
public/designs/themes/base/navigation.rhtml
<li> <%= browse_people_menu %> </li> <li> <%= browse_communities_menu %> </li> <li> <%= browse_contents_menu %> </li> <li><a href="/assets/events"><span class='icon-menu-events'><%= _('Events') %></span></a></li>
<li> <%= search_people_menu %> </li> <li> <%= search_communities_menu %> </li> <li> <%= search_contents_menu %> </li> <li><a href="/search/events"><span class='icon-menu-events'><%= _('Events') %></span></a></li>
Change base theme according to search refactor
Change base theme according to search refactor
RHTML
agpl-3.0
hebertdougl/noosfero,ludaac/noosfero-mx,coletivoEITA/noosfero-ecosol,cesarfex/noosfero,CIRANDAS/noosfero-ecosol,AlessandroCaetano/noosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,hackathon-oscs/cartografias,vfcosta/noosfero,ludaac/noosfero-mx,tallysmartins/noosfero,ludaac/noosfero-mx,evandrojr/noosfero,hackathon-oscs/rede-osc,evandrojr/noosferogov,abner/noosfero,uniteddiversity/noosfero,evandrojr/noosferogov,cesarfex/noosfero,LuisBelo/tccnoosfero,hackathon-oscs/cartografias,cesarfex/noosfero,rafamanzo/mezuro-travis,evandrojr/noosfero,blogoosfero/noosfero,AlessandroCaetano/noosfero,alexandreab/noosfero,vfcosta/noosfero,danielafeitosa/noosfero,marcosronaldo/noosfero,pr-snas/noosfero-sgpr,pr-snas/noosfero-sgpr,hackathon-oscs/cartografias,blogoosfero/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,arthurmde/noosfero,coletivoEITA/noosfero,arthurmde/noosfero,danielafeitosa/noosfero,cesarfex/noosfero,marcosronaldo/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,macartur/noosfero,hackathon-oscs/cartografias,alexandreab/noosfero,larissa/noosfero,rafamanzo/mezuro-travis,evandrojr/noosfero,vfcosta/noosfero,coletivoEITA/noosfero,rafamanzo/mezuro-travis,macartur/noosfero,coletivoEITA/noosfero-ecosol,larissa/noosfero,danielafeitosa/noosfero,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,vfcosta/noosfero,evandrojr/noosfero,larissa/noosfero,blogoosfero/noosfero,vfcosta/noosfero,pr-snas/noosfero-sgpr,larissa/noosfero,macartur/noosfero,arthurmde/noosfero,uniteddiversity/noosfero,abner/noosfero,ludaac/noosfero-mx,coletivoEITA/noosfero,hackathon-oscs/rede-osc,abner/noosfero,uniteddiversity/noosfero,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,blogoosfero/noosfero,uniteddiversity/noosfero,coletivoEITA/noosfero,uniteddiversity/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosfero,alexandreab/noosfero,cesarfex/noosfero,AlessandroCaetano/noosfero,hackathon-oscs/rede-osc,samasti/noosfero,LuisBelo/tccnoosfero,coletivoEITA/noosfero,samasti/noosfero,LuisBelo/tccnoosfero,hebertdougl/noosfero,vfcosta/noosfero,arthurmde/noosfero,tallysmartins/noosfero,EcoAlternative/noosfero-ecosol,tallysmartins/noosfero,hackathon-oscs/cartografias,EcoAlternative/noosfero-ecosol,rafamanzo/mezuro-travis,coletivoEITA/noosfero-ecosol,arthurmde/noosfero,abner/noosfero,cesarfex/noosfero,danielafeitosa/noosfero,LuisBelo/tccnoosfero,tallysmartins/noosfero,evandrojr/noosferogov,cesarfex/noosfero,alexandreab/noosfero,samasti/noosfero,marcosronaldo/noosfero,macartur/noosfero,coletivoEITA/noosfero-ecosol,pr-snas/noosfero-sgpr,samasti/noosfero,hebertdougl/noosfero,arthurmde/noosfero,evandrojr/noosfero,AlessandroCaetano/noosfero,blogoosfero/noosfero,larissa/noosfero,hackathon-oscs/rede-osc,rafamanzo/mezuro-travis,hebertdougl/noosfero,alexandreab/noosfero,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,macartur/noosfero,evandrojr/noosfero,AlessandroCaetano/noosfero,evandrojr/noosferogov,macartur/noosfero,macartur/noosfero,marcosronaldo/noosfero,abner/noosfero,AlessandroCaetano/noosfero,ludaac/noosfero-mx,arthurmde/noosfero,CIRANDAS/noosfero-ecosol,uniteddiversity/noosfero,marcosronaldo/noosfero,abner/noosfero,coletivoEITA/noosfero-ecosol,hebertdougl/noosfero,tallysmartins/noosfero,evandrojr/noosferogov,hackathon-oscs/rede-osc,CIRANDAS/noosfero-ecosol,marcosronaldo/noosfero,abner/noosfero,EcoAlternative/noosfero-ecosol,uniteddiversity/noosfero,pr-snas/noosfero-sgpr,evandrojr/noosferogov,coletivoEITA/noosfero,tallysmartins/noosfero,marcosronaldo/noosfero,alexandreab/noosfero,evandrojr/noosferogov,samasti/noosfero,pr-snas/noosfero-sgpr,LuisBelo/tccnoosfero,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,tallysmartins/noosfero,larissa/noosfero,hackathon-oscs/cartografias,danielafeitosa/noosfero,alexandreab/noosfero,hackathon-oscs/cartografias,EcoAlternative/noosfero-ecosol,danielafeitosa/noosfero,hebertdougl/noosfero
Tukar tema asas mengikut refactor carian
6e2263520a1ef6fb9ec976f7a1c997f68413fc45
lib/views/general/_before_body_end.rhtml
lib/views/general/_before_body_end.rhtml
<div id="special-notice"> Would you like to work with the team that built this site? <a href="http://mysocietyltd.theresumator.com/apply/">We&rsquo;re recruiting.</a></div>
<div id="special-notice" class="not-for-print"> Would you like to work with the team that built this site? <a href="http://mysocietyltd.theresumator.com/apply/">We&rsquo;re recruiting.</a></div>
Add class not-for-print to recruitment ad
Add class not-for-print to recruitment ad
RHTML
mit
mysociety/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,schlos/whatdotheyknow-theme,schlos/whatdotheyknow-theme
Tambahkan kelas bukan untuk cetak pada iklan pengambilan
e2631484443902e2a9e94cf8238e1f5f37d49bc5
app/views/cms/publish.rhtml
app/views/cms/publish.rhtml
<h1><%= _('Select the groups where you want to publish your article') %></h1> <% if !@failed.blank? %> <div class="errorExplanation" id="errorExplanation"> <p><%=_("There were errors with the following communities: ")%></p> <% @failed.each do |error, communities|%> <strong> <%= error %>: </strong> <ul> <% communities.each do |community| %> <li> <%= community %> </li> <% end %> </ul> <% end %> </div> <% end %> <% form_tag do%> <%= hidden_field_tag :back_to, @back_to %> <% @groups.each do |group| %> <%= labelled_check_box group.name, 'marked_groups[][group_id]', group.id, @marked_groups.include?(group) %><br /> <%= labelled_text_field _('Title') + ': ', 'marked_groups[][name]', @article.name, :style => 'width: 100%' %> <hr /> <% end %> <% button_bar do %> <%= submit_button 'spread', _('Publish') %> <%= button :cancel, _('Cancel'), :back %> <% end %> <% end %>
<h1><%= _('Select the groups where you want to publish your article') %></h1> <% if !@failed.blank? %> <div class="errorExplanation" id="errorExplanation"> <p><%=_("There were errors with the following communities: ")%></p> <% @failed.each do |error, communities|%> <strong> <%= error %>: </strong> <ul> <% communities.each do |community| %> <li> <%= community %> </li> <% end %> </ul> <% end %> </div> <% end %> <% form_tag do%> <%= hidden_field_tag :back_to, @back_to %> <% @groups.each do |group| %> <%= labelled_check_box group.name, 'marked_groups[][group_id]', group.id, @marked_groups.include?(group) %><br /> <%= labelled_text_field _('Title') + ': ', 'marked_groups[][name]', @article.name, :style => 'width: 100%' %> <hr /> <% end %> <% button_bar do %> <%= submit_button 'spread', _('Publish') %> <% end %> <% end %>
Revert "Adding cancel button in Publish screen"
Revert "Adding cancel button in Publish screen" This reverts commit cb833800fc66097971672d08246d1844eb0ce94b.
RHTML
agpl-3.0
coletivoEITA/noosfero-ecosol,uniteddiversity/noosfero,vfcosta/noosfero,hackathon-oscs/cartografias,ludaac/noosfero-mx,pr-snas/noosfero-sgpr,macartur/noosfero,vfcosta/noosfero,uniteddiversity/noosfero,evandrojr/noosfero,alexandreab/noosfero,hackathon-oscs/cartografias,vfcosta/noosfero,arthurmde/noosfero,hebertdougl/noosfero,macartur/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero,alexandreab/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosfero,alexandreab/noosfero,abner/noosfero,larissa/noosfero,AlessandroCaetano/noosfero,coletivoEITA/noosfero-ecosol,cesarfex/noosfero,rafamanzo/mezuro-travis,cesarfex/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,vfcosta/noosfero,samasti/noosfero,CIRANDAS/noosfero-ecosol,rafamanzo/mezuro-travis,coletivoEITA/noosfero,evandrojr/noosferogov,marcosronaldo/noosfero,joenio/noosfero,ludaac/noosfero-mx,tallysmartins/noosfero,hebertdougl/noosfero,LuisBelo/tccnoosfero,evandrojr/noosferogov,pr-snas/noosfero-sgpr,abner/noosfero,samasti/noosfero,macartur/noosfero,ludaac/noosfero-mx,CIRANDAS/noosfero-ecosol,EcoAlternative/noosfero-ecosol,abner/noosfero,arthurmde/noosfero,evandrojr/noosfero,joenio/noosfero,hebertdougl/noosfero,joenio/noosfero,hackathon-oscs/rede-osc,rafamanzo/mezuro-travis,larissa/noosfero,danielafeitosa/noosfero,danielafeitosa/noosfero,uniteddiversity/noosfero,arthurmde/noosfero,hebertdougl/noosfero,evandrojr/noosfero,LuisBelo/tccnoosfero,blogoosfero/noosfero,arthurmde/noosfero,EcoAlternative/noosfero-ecosol,pr-snas/noosfero-sgpr,samasti/noosfero,evandrojr/noosferogov,danielafeitosa/noosfero,abner/noosfero,larissa/noosfero,ludaac/noosfero-mx,abner/noosfero,hackathon-oscs/cartografias,vfcosta/noosfero,coletivoEITA/noosfero,joenio/noosfero,evandrojr/noosferogov,marcosronaldo/noosfero,hackathon-oscs/rede-osc,arthurmde/noosfero,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,blogoosfero/noosfero,hackathon-oscs/rede-osc,macartur/noosfero,tallysmartins/noosfero,samasti/noosfero,ludaac/noosfero-mx,uniteddiversity/noosfero,alexandreab/noosfero,samasti/noosfero,alexandreab/noosfero,CIRANDAS/noosfero-ecosol,uniteddiversity/noosfero,hebertdougl/noosfero,larissa/noosfero,macartur/noosfero,joenio/noosfero,tallysmartins/noosfero,tallysmartins/noosfero,LuisBelo/tccnoosfero,pr-snas/noosfero-sgpr,tallysmartins/noosfero,hackathon-oscs/cartografias,hackathon-oscs/cartografias,macartur/noosfero,larissa/noosfero,arthurmde/noosfero,blogoosfero/noosfero,danielafeitosa/noosfero,hackathon-oscs/rede-osc,evandrojr/noosfero,EcoAlternative/noosfero-ecosol,CIRANDAS/noosfero-ecosol,marcosronaldo/noosfero,arthurmde/noosfero,cesarfex/noosfero,cesarfex/noosfero,uniteddiversity/noosfero,EcoAlternative/noosfero-ecosol,hackathon-oscs/rede-osc,evandrojr/noosferogov,rafamanzo/mezuro-travis,pr-snas/noosfero-sgpr,blogoosfero/noosfero,hackathon-oscs/rede-osc,coletivoEITA/noosfero-ecosol,macartur/noosfero,coletivoEITA/noosfero-ecosol,AlessandroCaetano/noosfero,marcosronaldo/noosfero,LuisBelo/tccnoosfero,blogoosfero/noosfero,AlessandroCaetano/noosfero,evandrojr/noosferogov,marcosronaldo/noosfero,larissa/noosfero,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,alexandreab/noosfero,evandrojr/noosfero,alexandreab/noosfero,CIRANDAS/noosfero-ecosol,hebertdougl/noosfero,uniteddiversity/noosfero,marcosronaldo/noosfero,rafamanzo/mezuro-travis,vfcosta/noosfero,cesarfex/noosfero,abner/noosfero,pr-snas/noosfero-sgpr,hackathon-oscs/cartografias,abner/noosfero,blogoosfero/noosfero,larissa/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,samasti/noosfero,hackathon-oscs/cartografias,coletivoEITA/noosfero,tallysmartins/noosfero,LuisBelo/tccnoosfero,AlessandroCaetano/noosfero,joenio/noosfero,tallysmartins/noosfero,cesarfex/noosfero,cesarfex/noosfero,marcosronaldo/noosfero,evandrojr/noosferogov,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,evandrojr/noosfero,danielafeitosa/noosfero,EcoAlternative/noosfero-ecosol,danielafeitosa/noosfero
Kembalikan "Menambah butang batal dalam skrin Terbitkan"
fa75b89c458919a7e36aa0b8620a874f3300c39c
data/rspec-formatter-webkit/templates/failed.rhtml
data/rspec-formatter-webkit/templates/failed.rhtml
<dd class="spec failed"> <span class="spec-name"><%= h(example.description) %></span> <div class="failure" id="failure-<%= counter %>"> <div class="message">Failure/Error: <code><%= h read_failed_line(exception, example).strip.gsub(/\n/, '<br />') %><br /> % exception.message.split("\n").each do |line| <%= h line %><br /> % end % example.example_group.ancestors.push(example.example_group).each do |group| % if group.metadata[:shared_group_name] Shared Example Group: "<%= h group.metadata[:shared_group_name] %>" called from "<%= backtrace_line(group.metadata[:example_group][:location]) %> % break % end % end </code> </div> <div class="backtrace"><p><code> % format_backtrace(exception.backtrace, example).each do |backtrace_info| <span class="backtrace-frame"><%= backtrace_info %></span><br /> % end </code></p></div> <%= extra %> </div> % unless log_messages.nil? || log_messages.empty? <div class="log-messages"> <%= log_messages.join("\n") %> </div> % end </dd>
<dd class="spec failed"> <span class="spec-name"><%= h(example.description) %></span> <div class="failure" id="failure-<%= counter %>"> <div class="message">Failure/Error: <code><%= h read_failed_line(exception, example).strip.gsub(/\n/, '<br />') %><br /> % exception.message.split("\n").each do |line| <%= h line %><br /> % end % if group = find_shared_group( example ) Shared Example Group: "<%= h group.metadata[:shared_group_name] %>" called from "<%= backtrace_line(group.metadata[:example_group][:location]) %> % end </code> </div> <div class="backtrace"><p><code> % format_backtrace(exception.backtrace, example).each do |backtrace_info| <span class="backtrace-frame"><%= backtrace_info %></span><br /> % end </code></p></div> <%= extra %> </div> % unless log_messages.nil? || log_messages.empty? <div class="log-messages"> <%= log_messages.join("\n") %> </div> % end </dd>
Fix shared-group formatting for RSpec 2.12.2.
Fix shared-group formatting for RSpec 2.12.2.
RHTML
bsd-3-clause
xithan/wagn-rspec-formatter,ged/rspec-formatter-webkit,xithan/wagn-rspec-formatter,ged/rspec-formatter-webkit,xithan/wagn-rspec-formatter,xithan/wagn-rspec-formatter,ged/rspec-formatter-webkit
Betulkan pemformatan kumpulan kongsi untuk RSpec 2.12.2.
f6afe3c1cdaa7867fa3f28f32e064baa5d6a1c50
app/views/page/new.rhtml
app/views/page/new.rhtml
<% @page_title = 'Skapar ny sida' -%> <h1 class="title">Skapa ny sida</h1> <% form_for :page do |page| -%> <label class="block" for="page_title">Titel</label> <%= page.text_field :title, :maxlength => 35, :size => 35 %> <%= error_message_on @page, :title %> <label class="block" for="page_content">Innehåll</label> <%= page.text_area :content, :cols => 84, :rows => 20 %> <p style="margin-top: 1em;"> <%= submit_tag 'Skapa sida' %> eller <%= link_to 'Avbryt', :action => 'list' %> </p> <hr /> <label class="block" for="page_comment">Kommentar</label> <%= page.text_field :comment, :maxlength => 74, :size => 50 %> <label class="block" for="page_description">Sidbeskrivning</label> <%= page.text_area :description, :cols => 50, :rows => 3 %> <label class="block" for="page_markup">Formatering</label> <%= page.select :markup, markups_available %> <% end -%>
<% @page_title = 'Skapar ny sida' -%> <h1 class="title">Skapa ny sida</h1> <% form_for :page do |page| -%> <label class="block" for="page_title">Titel</label> <%= page.text_field :title, :maxlength => 35, :size => 35 %> <%= error_message_on @page, :title %> <label class="block" for="page_content">Innehåll</label> <%= page.text_area :content, :cols => 84, :rows => 20 %> <p style="margin-top: 1em;"> <%= submit_tag 'Skapa sida' %> eller <%= link_to 'Avbryt', :action => 'list' %> </p> <label class="block" for="page_comment">Kommentar</label> <%= page.text_field :comment, :maxlength => 74, :size => 50 %> <hr /> <label class="block" for="page_description">Sidbeskrivning</label> <%= page.text_area :description, :cols => 50, :rows => 3 %> <label class="block" for="page_markup">Formatering</label> <%= page.select :markup, markups_available %> <% end -%>
Move the comment box for the create page too
Move the comment box for the create page too
RHTML
mit
Starkast/wikimum,Starkast/wikimum
Alihkan kotak ulasan untuk halaman cipta juga
16a0421d4fcf7505090bc8af354bccee126b96eb
app/views/login/_portal_header.rhtml
app/views/login/_portal_header.rhtml
<table width="909" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="226"><a href="index.htm"><img src="/images/portal/logo.gif" alt="ClockingIT" width="203" border="0" class="logo"/></a></td> <td> <a href="http://wiki.clockingit.com/" class="menu_top">Wiki</a> <a href="http://forum.clockingit.com/" class="menu_top">Forum </a> <a href="/signup" class="menu_top_sign">Sign up! </a> <a href="/screenshots" class="menu_top">Explore</a> <a href="/" class="menu_top">Home </a> </td> </tr> </table> <br />
<table width="909" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="226"><a href="http://www.clockingit.com"><img src="/images/portal/logo.gif" alt="ClockingIT" width="203" border="0" class="logo"/></a></td> <td> <a href="http://wiki.clockingit.com/" class="menu_top">Wiki</a> <a href="http://forum.clockingit.com/" class="menu_top">Forum </a> <a href="/signup" class="menu_top_sign">Sign up! </a> <a href="/screenshots" class="menu_top">Explore</a> <a href="/" class="menu_top">Home </a> </td> </tr> </table> <br />
Fix link of logo on portal pages
Fix link of logo on portal pages
RHTML
agpl-3.0
evinoca/clockingit,rafaspinola/jobsworth,xuewenfei/jobsworth,webstream-io/jobsworth,ari/jobsworth,xuewenfei/jobsworth,miguelbaldi/clockingit,xuewenfei/jobsworth,digitalnatives/jobsworth,webstream-io/jobsworth,evinoca/clockingit,miguelbaldi/clockingit,evinoca/clockingit,arunagw/clockingit,digitalnatives/jobsworth,xuewenfei/jobsworth,ari/jobsworth,rafaspinola/jobsworth,digitalnatives/jobsworth,webstream-io/jobsworth,digitalnatives/jobsworth,rafaspinola/jobsworth,miguelbaldi/clockingit,arunagw/clockingit,webstream-io/jobsworth,ari/jobsworth,ari/jobsworth,digitalnatives/jobsworth,arunagw/clockingit,rafaspinola/jobsworth,evinoca/clockingit
Betulkan pautan logo pada halaman portal
becee96c89827287a3b9897498a5f762f232345d
app/views/answers/_annotation_field.rhtml
app/views/answers/_annotation_field.rhtml
<% if logged_in? and logged_in_person.permitted?("edit", @question.questionnaire) -%> <% if @editing -%> <%= text_area_tag "answer[#{@question.id}]", value, :rows => 4 %> <% else -%> <%= simple_format value %> <% end -%> <% end -%>
<% if @editing -%> <% if logged_in? and logged_in_person.permitted?("edit_answers", @question.questionnaire) -%> <%= text_area_tag "answer[#{@question.id}]", value, :rows => 4 %> <% end -%> <% else -%> <% if logged_in? and logged_in_person.permitted?("view_answers", @question.questionnaire) -%> <%= simple_format value %> <% end -%> <% end -%>
Fix view permissioning on annotation fields - you don't need to be a questionnaire editor to see them
Fix view permissioning on annotation fields - you don't need to be a questionnaire editor to see them
RHTML
agpl-3.0
nbudin/journey,nbudin/journey,nbudin/journey
Betulkan kebenaran paparan pada medan anotasi - anda tidak perlu menjadi editor soal selidik untuk melihatnya
6d7316491fa52ad509aa35770728b54f656e05b4
frontends/default/views/_nested.rhtml
frontends/default/views/_nested.rhtml
<h4>&nbsp;</h4> <% # This assumes that the association is included as a column in the active_scaffold_config.columns collection associated_columns = [] associated_columns = params[:associations].split(" ") unless params[:associations].nil? unless associated_columns.empty? parent_id = params[:id] associated_columns.each do | column_name | association = active_scaffold_config.columns[column_name].association controller, controller_path = active_scaffold_controller_for(association.klass, params[:controller]) table_name = association.table_name table_name = association.options[:join_table] if association.macro == :has_and_belongs_to_many primary_key = table_name + "." + association.primary_key_name %> <%= render :active_scaffold => controller_path, :constraints => { primary_key.to_sym => parent_id}, :label => active_scaffold_config_for(association.klass).label + _("FOR") + active_scaffold_config.label, :options => {:association => column_name, :association_macro => association.macro, :parent_model => association.active_record} %> <% end end %>
<h4>&nbsp;</h4> <% # This assumes that the association is included as a column in the active_scaffold_config.columns collection associated_columns = [] associated_columns = params[:associations].split(" ") unless params[:associations].nil? unless associated_columns.empty? parent_id = params[:id] associated_columns.each do | column_name | association = active_scaffold_config.columns[column_name].association controller, controller_path = active_scaffold_controller_for(association.klass, params[:controller]) table_name = association.table_name table_name = association.options[:join_table] if association.macro == :has_and_belongs_to_many table_name = association.through_reflection.table_name if association.options[:through] primary_key = table_name + "." + association.primary_key_name %> <%= render :active_scaffold => controller_path, :constraints => { primary_key.to_sym => parent_id}, :label => active_scaffold_config_for(association.klass).label + _("FOR") + active_scaffold_config.label, :options => {:association => column_name, :association_macro => association.macro, :parent_model => association.active_record} %> <% end end %>
Support :has_many :through nested scaffolds.
Support :has_many :through nested scaffolds. git-svn-id: b2ff2946fad280430023ee7ead77858f96a610fa@168 561dde7e-7729-0410-be8e-ef83869d6c7d
RHTML
mit
AlbertoBarrago/active_scaffold,BookingBug/active_scaffold,silverpond/active_scaffold,ajacksified/active_scaffold,dosire/active_scaffold,ajacksified/active_scaffold,vhochstein/active_scaffold,BookingBug/active_scaffold,asoltys/active_scaffold,woahdae/active_scaffold,vhochstein/active_scaffold,mallikarjunayaddala/active_scaffold,BookingBug/active_scaffold,AlbertoBarrago/active_scaffold,tonyd/active_scaffold,silverpond/active_scaffold,nberger/active_scaffold,activescaffold/active_scaffold_demo,silverpond/active_scaffold,budree/active_scaffold,activescaffold/active_scaffold,activescaffold/active_scaffold,activescaffold/active_scaffold_demo,dosire/active_scaffold,woahdae/active_scaffold,nberger/active_scaffold,AlbertoBarrago/active_scaffold,activescaffold/active_scaffold,mallikarjunayaddala/active_scaffold,jbogatay/active_scaffold,mallikarjunayaddala/active_scaffold,budree/active_scaffold,budree/active_scaffold,jbogatay/active_scaffold,vhochstein/active_scaffold,asoltys/active_scaffold,tonyd/active_scaffold
Sokongan :has_many :melalui perancah bersarang.
f22a1889e4e4c1ca4bbc4002d0a64234bc3e9d5b
app/views/commit/diff.rhtml
app/views/commit/diff.rhtml
Diff is <%= @diff.inspect %> <% @diff.chunks.each do |chunk| %> <!-- Chunk header --> <table> <tr> <td>Src file:</td> <td><%=h chunk.src_files.join(", ") %></td> </tr> <tr> <td>Dst file:</td> <td><%=h chunk.dst_file %></td> </tr> </table> <table border="1" cellspacing="0" cellpadding="0"> <!-- iterate over lines --> <% chunk.lines.each do |line| %> <tr> <!-- Line numbers --> <% line.line_numbers.each do |n| %> <td><%=h n.nil? ? "-" : n %></td> <% end %> <td><pre><%=h line.line.chomp %></pre></td> </tr> <% end %> </table> Chunk: <%= chunk %> <% end %>
Diff is <%= @diff.inspect %> <% @diff.chunks.each do |chunk| %> <!-- Chunk header --> <table> <tr> <td>Src file:</td> <td><%=h chunk.src_files.join(", ") %></td> </tr> <tr> <td>Dst file:</td> <td><%=h chunk.dst_file %></td> </tr> </table> <table border="1" cellspacing="0" cellpadding="0"> <!-- iterate over lines --> <% chunk.lines.each do |line| %> <tr> <!-- Line numbers --> <% line.line_numbers.each do |n| %> <td><%=h n.nil? ? "-" : n %></td> <% end %> <td> <% if line.line.empty? %> &nbsp; <% else %> <pre><%=h line.line %></pre> <% end %> </td> </tr> <% end %> </table> Chunk: <%= chunk %> <% end %>
Fix display of empty lines
Fix display of empty lines
RHTML
bsd-3-clause
toddlipcon/arb,toddlipcon/arb,toddlipcon/arb
Betulkan paparan baris kosong
567ab8127a52551f8f45b4f65140028ee35be6ab
app/views/comment/_single_comment.rhtml
app/views/comment/_single_comment.rhtml
<div class="comment_in_request" id="comment-<%=comment.id.to_s%>"> <h2> <%# When not logged in, but mid-comment-leaving, there'll be no comment.user %> <%= !comment.user || (!@user.nil? && @user.id == comment.user.id) ? "You" : user_link(comment.user) %> left an annotation (<%= simple_date(comment.created_at || Time.now) %>) </h2> <div class="comment_in_request_text"> <p><img class="comment_quote" src="/images/quote.png" alt=""><%= comment.get_body_for_html_display %></p> </div> <p class="event_actions"> <% if !comment.id.nil? %> <%= link_to "Link to this", comment_url(comment) %> <% if !@user.nil? && @user.admin_page_links? %> | <%= link_to "Admin", admin_url("request/edit_comment/" + comment.id.to_s) %> <% end %> <!-- | <%= link_to "Report abuse", comment_url(comment) %> --> <% end %> </p> </div>
<div class="comment_in_request" id="comment-<%=comment.id.to_s%>"> <h2> <%# When not logged in, but mid-comment-leaving, there'll be no comment.user %> <%= comment.user ? user_or_you_capital_link(comment.user) : "You" %> left an annotation (<%= simple_date(comment.created_at || Time.now) %>) </h2> <div class="comment_in_request_text"> <p><img class="comment_quote" src="/images/quote.png" alt=""><%= comment.get_body_for_html_display %></p> </div> <p class="event_actions"> <% if !comment.id.nil? %> <%= link_to "Link to this", comment_url(comment) %> <% if !@user.nil? && @user.admin_page_links? %> | <%= link_to "Admin", admin_url("request/edit_comment/" + comment.id.to_s) %> <% end %> <!-- | <%= link_to "Report abuse", comment_url(comment) %> --> <% end %> </p> </div>
Use user_or_you_capital_link instead of hand-rolling
Use user_or_you_capital_link instead of hand-rolling
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Gunakan pautan pengguna_atau_modal_anda dan bukannya bergolek tangan
f33c3d04e847d45914fb0e29ea4083197eec3628
app/views/request_mailer/initial_request.rhtml
app/views/request_mailer/initial_request.rhtml
<%= @outgoing_message.body.strip %> ------------------------------------------------------------------- Is <%= @info_request.public_body.request_email%> the wrong address for Freedom of Information requests to <%= @info_request.public_body.name%>? If so please let us know by emailing <%=@contact_email%>. We'll make sure future ones go to the right place. -------------------------------------------------------------------
<%= @outgoing_message.body.strip %> ------------------------------------------------------------------- Is <%= @info_request.public_body.request_email%> the wrong address for Freedom of Information requests to <%= @info_request.public_body.name%>? If so please let us know by emailing <%=@contact_email%> - we'll make sure future ones go to the right place. -------------------------------------------------------------------
Make sure there isn't a full stop immediately after our email, in case some mail clients include it in the address
Make sure there isn't a full stop immediately after our email, in case some mail clients include it in the address
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Pastikan tiada noktah sejurus selepas e-mel kami, sekiranya sesetengah pelanggan mel memasukkannya ke dalam alamat
d5780eb786f81b04cb56bc4b8c75e93472b4b865
app/views/cms/_textile_quick_reference.rhtml
app/views/cms/_textile_quick_reference.rhtml
<div class='text-editor-sidebar-box'> <p> <strong><%= _('Textile markup quick reference') %></strong> <%= link_to(_('(show)'), '#', :id => 'textile-quickref-show') %> <%= link_to(_('(hide)'), '#', :id => 'textile-quickref-hide', :style => 'display: none') %> </p> <div id='textile-quickref' style='display: none;'> <p><%= _('Simple formatting:') %> <code>_<%= _('italics') %>_</code> <code>*<%= _('bold') %>*</code>, <code>-<%= _('striked')%>-</code>.</p> <p><%= _('Links:') %> <code>"Noosfero":http://noosfero.org/</code></p> <p><%= _('Images:') %> <code>!http://example.com/image.png!</code></p> <p><%= _('Bullet lists:') %></p> <pre>* <%= _('first item') %> * <%= _('second item') %></pre> <p><%= _('Numbered lists:') %></p> <pre># <%= _('first item') %> # <%= _('second item') %></pre> <p><%= _('See also a more complete <a href="%s">Textile Reference</a>') % 'http://redcloth.org/hobix.com/textile/' %></p> </div> </div>
<div class='text-editor-sidebar-box'> <p> <strong><%= _('Textile markup quick reference') %></strong> <%= link_to(_('(show)'), '#', :id => 'textile-quickref-show') %> <%= link_to(_('(hide)'), '#', :id => 'textile-quickref-hide', :style => 'display: none') %> </p> <div id='textile-quickref' style='display: none;'> <p><%= _('Simple formatting:') %> <code>_<%= _('italics') %>_</code> <code>*<%= _('bold') %>*</code>, <code>-<%= _('striked')%>-</code>.</p> <p><%= _('Links:') %> <code>"Noosfero":http://noosfero.org/</code></p> <p><%= _('Images:') %> <code>!http://example.com/image.png!</code></p> <p><%= _('Bullet lists:') %></p> <pre>* <%= _('first item') %> * <%= _('second item') %></pre> <p><%= _('Numbered lists:') %></p> <pre># <%= _('first item') %> # <%= _('second item') %></pre> <p><%= h(_('For code, use HTML tags <pre> and <code>, and indent the code inside them:')) %> <pre> &lt;pre&gt; &lt;code&gt; a.gsub!( /&lt;/, '' ) &lt;/code&gt; &lt;/pre&gt; </pre> <p><%= _('See also a more complete <a href="%s">Textile Reference</a>.') % 'http://redcloth.org/hobix.com/textile/' %></p> </div> </div>
Add syntax for code to textile quick reference
Add syntax for code to textile quick reference
RHTML
agpl-3.0
hebertdougl/noosfero,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,abner/noosfero,arthurmde/noosfero,marcosronaldo/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,alexandreab/noosfero,macartur/noosfero,hackathon-oscs/cartografias,cesarfex/noosfero,vfcosta/noosfero,pr-snas/noosfero-sgpr,alexandreab/noosfero,joenio/noosfero,joenio/noosfero,arthurmde/noosfero,arthurmde/noosfero,evandrojr/noosfero,larissa/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,abner/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosferogov,uniteddiversity/noosfero,tallysmartins/noosfero,ludaac/noosfero-mx,AlessandroCaetano/noosfero,evandrojr/noosferogov,hackathon-oscs/cartografias,danielafeitosa/noosfero,ludaac/noosfero-mx,tallysmartins/noosfero,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,evandrojr/noosferogov,hackathon-oscs/rede-osc,cesarfex/noosfero,coletivoEITA/noosfero,hebertdougl/noosfero,joenio/noosfero,marcosronaldo/noosfero,EcoAlternative/noosfero-ecosol,samasti/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero,danielafeitosa/noosfero,joenio/noosfero,danielafeitosa/noosfero,rafamanzo/mezuro-travis,cesarfex/noosfero,macartur/noosfero,hackathon-oscs/cartografias,rafamanzo/mezuro-travis,tallysmartins/noosfero,alexandreab/noosfero,abner/noosfero,LuisBelo/tccnoosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,ludaac/noosfero-mx,larissa/noosfero,arthurmde/noosfero,ludaac/noosfero-mx,blogoosfero/noosfero,pr-snas/noosfero-sgpr,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,vfcosta/noosfero,evandrojr/noosfero,CIRANDAS/noosfero-ecosol,LuisBelo/tccnoosfero,joenio/noosfero,samasti/noosfero,samasti/noosfero,alexandreab/noosfero,danielafeitosa/noosfero,arthurmde/noosfero,CIRANDAS/noosfero-ecosol,hebertdougl/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosferogov,pr-snas/noosfero-sgpr,AlessandroCaetano/noosfero,hackathon-oscs/rede-osc,marcosronaldo/noosfero,hackathon-oscs/rede-osc,blogoosfero/noosfero,marcosronaldo/noosfero,vfcosta/noosfero,hebertdougl/noosfero,macartur/noosfero,pr-snas/noosfero-sgpr,LuisBelo/tccnoosfero,rafamanzo/mezuro-travis,coletivoEITA/noosfero-ecosol,tallysmartins/noosfero,coletivoEITA/noosfero,LuisBelo/tccnoosfero,samasti/noosfero,ludaac/noosfero-mx,abner/noosfero,tallysmartins/noosfero,EcoAlternative/noosfero-ecosol,larissa/noosfero,larissa/noosfero,AlessandroCaetano/noosfero,danielafeitosa/noosfero,pr-snas/noosfero-sgpr,CIRANDAS/noosfero-ecosol,joenio/noosfero,pr-snas/noosfero-sgpr,evandrojr/noosfero,macartur/noosfero,rafamanzo/mezuro-travis,larissa/noosfero,hackathon-oscs/cartografias,cesarfex/noosfero,CIRANDAS/noosfero-ecosol,LuisBelo/tccnoosfero,hackathon-oscs/rede-osc,macartur/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,cesarfex/noosfero,coletivoEITA/noosfero,vfcosta/noosfero,vfcosta/noosfero,uniteddiversity/noosfero,evandrojr/noosferogov,hackathon-oscs/rede-osc,hackathon-oscs/rede-osc,uniteddiversity/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,alexandreab/noosfero,evandrojr/noosfero,evandrojr/noosferogov,abner/noosfero,alexandreab/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,blogoosfero/noosfero,hackathon-oscs/cartografias,evandrojr/noosferogov,macartur/noosfero,marcosronaldo/noosfero,abner/noosfero,rafamanzo/mezuro-travis,evandrojr/noosfero,blogoosfero/noosfero,marcosronaldo/noosfero,blogoosfero/noosfero,arthurmde/noosfero,abner/noosfero,hackathon-oscs/cartografias,macartur/noosfero,evandrojr/noosfero,arthurmde/noosfero,uniteddiversity/noosfero,EcoAlternative/noosfero-ecosol,uniteddiversity/noosfero,uniteddiversity/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero,cesarfex/noosfero,evandrojr/noosfero,marcosronaldo/noosfero,cesarfex/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,samasti/noosfero,hackathon-oscs/cartografias,hebertdougl/noosfero,hebertdougl/noosfero,hebertdougl/noosfero,blogoosfero/noosfero,danielafeitosa/noosfero,vfcosta/noosfero
Tambahkan sintaks untuk kod kepada rujukan pantas tekstil
e62eacd8d3c839835308cf01da11827f844d3a91
app/views/message/new.rhtml
app/views/message/new.rhtml
<% user_id = params[:user_id] || @user_id %> <% display_name = User.find_by_id(user_id).display_name %> <h2>Send a new message to <%= h(display_name) %></h2> <% if params[:display_name] %> <p>Writing a new message to <%= h(params[:display_name]) %></p> <p>TODO: drop down box of your friends</p> <%end%> <%= error_messages_for 'message' %> <% form_for :message, :url => { :action => "new", :user_id => user_id } do |f| %> <table> <tr valign="top"> <th>Subject</th> <td><%= f.text_field :title, :size => 60, :value => @title %></td> </tr> <tr valign="top"> <th>Body</th> <td><%= f.text_area :body, :cols => 80, :value => @body %></td> </tr> <tr> <th></th> <td><%= submit_tag 'Send', :action => 'new' %></td> </tr> </table> <% end %> <br /> <%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>
<% user_id = params[:user_id] || @user_id %> <% display_name = User.find_by_id(user_id).display_name %> <h2>Send a new message to <%= h(display_name) %></h2> <% if params[:display_name] %> <p>Writing a new message to <%= h(params[:display_name]) %></p> <p>TODO: drop down box of your friends</p> <%end%> <%= error_messages_for 'message' %> <% form_for :message, :url => { :action => "new", :user_id => user_id } do |f| %> <table> <tr valign="top"> <th>Subject</th> <td><%= f.text_field :title, :size => 60, :value => @title %></td> </tr> <tr valign="top"> <th>Body</th> <td><%= f.text_area :body, :cols => 80, :value => @body %></td> </tr> <tr> <th></th> <td><%= submit_tag 'Send' %></td> </tr> </table> <% end %> <br /> <%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>
Remove bogus action attribute from the submit button - it should have no effect as there is no such attribute defined, but Opera seems to decide that it should post the form to that URL instead of the one give on the form element.
Remove bogus action attribute from the submit button - it should have no effect as there is no such attribute defined, but Opera seems to decide that it should post the form to that URL instead of the one give on the form element.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Alih keluar atribut tindakan palsu daripada butang hantar - ia sepatutnya tidak mempunyai kesan kerana tiada atribut sedemikian yang ditakrifkan, tetapi Opera nampaknya memutuskan bahawa ia harus menyiarkan borang ke URL tersebut dan bukannya yang diberikan pada elemen borang.
7f81a6c967c72555519f5b3c12b9d589e5dbbba9
app/views/cms/_enterprise_homepage.rhtml
app/views/cms/_enterprise_homepage.rhtml
<%= render :file => 'shared/tiny_mce' %> <%= labelled_form_field(_('Text'), text_area(:article, 'body', :cols => 40, :style => 'width:99%')) %>
<%= render :file => 'shared/tiny_mce' %> <%= labelled_form_field(_('Text'), text_area(:article, 'body', :cols => 40, :style => 'width:99%', :class => 'mceEditor')) %>
Fix use of tinymce on enterprise homepage
Fix use of tinymce on enterprise homepage
RHTML
agpl-3.0
EcoAlternative/noosfero-ecosol,samasti/noosfero,EcoAlternative/noosfero-ecosol,samasti/noosfero,blogoosfero/noosfero,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,samasti/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,samasti/noosfero,CIRANDAS/noosfero-ecosol,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero
Betulkan penggunaan tinymce pada halaman utama perusahaan
72dfc2e55e1334660bb0d5e5ad8fb65c50588fd6
app/views/site/_key.rhtml
app/views/site/_key.rhtml
<% content_for :left_menu do %> <%= link_to_function "Map key", "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else { var imgname = 'keymapnik13.png'; } updateSidebar("Map key", "<p><img src='images/"+imgname+"' /><\/p>"); openSidebar({ width: "210px" }); } function updateKey() { if (sidebarOpen("Map key")) { showKey(); } } // --> </script>
<% content_for :left_menu do %> <%= link_to_function "Map key", "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else if (zoomlevel<15) { var imgname = 'keymapnik13.png'; } else { var imgname = 'keymapnik15.png'; } updateSidebar("Map key", "<p><img src='images/"+imgname+"' /><\/p>"); openSidebar({ width: "210px" }); } function updateKey() { if (sidebarOpen("Map key")) { showKey(); } } // --> </script>
Use correct key for z15 and greater.
Use correct key for z15 and greater.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Gunakan kekunci yang betul untuk z15 dan lebih besar.
17f249da6832efcac3666afbfc7073e7933e0354
app/views/team/index.rhtml
app/views/team/index.rhtml
<div id="primary"> <p>The following teams are associated with this organisation.</p> <ul class="teams"><% for team in @teams %> <li><%= link_to team.title, team_url(:team => team) %></li><% end %> </ul> </div> <div id="secondary"><% if authorised? %> <h2>More</h2> <ul class="current"> <li class="admin"><%= link_to 'New team...', new_team_url %></li> </ul><% end %> <h2>All done?</h2> <ul> <li><%= link_to 'Return to home', home_url %></li> </ul> </div>
<div id="primary"> <% if @teams.empty? -%> <p>There are no teams yet.</p> <% else -%> <p>The following teams are associated with this organisation.</p> <ul class="teams"><% for team in @teams %> <li><%= link_to team.title, team_url(:team => team) %></li><% end %> </ul> <% end -%> </div> <div id="secondary"><% if authorised? %> <h2>More</h2> <ul class="current"> <li class="admin"><%= link_to 'New team...', new_team_url %></li> </ul><% end %> <h2>All done?</h2> <ul> <li><%= link_to 'Return to home', home_url %></li> </ul> </div>
Handle when no teams to list for organisation.
Handle when no teams to list for organisation.
RHTML
mit
teamsquad/teamsquad,teamsquad/teamsquad,teamsquad/teamsquad
Kendalikan apabila tiada pasukan untuk disenaraikan untuk organisasi.
3837aa6bd0befb6f403eaa7ef0a183c39db964eb
public/designs/themes/scarletred/header.rhtml
public/designs/themes/scarletred/header.rhtml
<div id="assets-menu"> <ul> <%= generate_assets_menu %> </ul> </div><!-- fim id="assets-menu" --> <script type="text/javascript"> jQuery(function($) { $("#site-title, #assets-menu").mouseover(function() { clearTimeout( window.closeAssetsTimeout ); $("#assets-menu").slideDown("slow"); }); $("#site-title, #assets-menu").mouseout(function() { window.closeAssetsTimeout = setTimeout( '$("#assets-menu").slideUp("slow")', 500 ); }); }); </script>
<div id="assets-menu"> <ul> <%= generate_assets_menu %> </ul> </div><!-- fim id="assets-menu" --> <script type="text/javascript"> jQuery(function($) { $("#site-title, #assets-menu").mouseover(function() { clearTimeout( window.closeAssetsTimeout ); $("#assets-menu").slideDown(400); }); $("#site-title, #assets-menu").mouseout(function() { window.closeAssetsTimeout = setTimeout( function() { $("#assets-menu").slideUp(400); }, 500 ); }); }); </script>
Fix the assets menu in scarletred theme
Fix the assets menu in scarletred theme (ActionItem1529)
RHTML
agpl-3.0
hebertdougl/noosfero,evandrojr/noosfero,hackathon-oscs/cartografias,arthurmde/noosfero,danielafeitosa/noosfero,tallysmartins/noosfero,pr-snas/noosfero-sgpr,cesarfex/noosfero,hackathon-oscs/cartografias,coletivoEITA/noosfero-ecosol,pr-snas/noosfero-sgpr,evandrojr/noosfero,LuisBelo/tccnoosfero,hebertdougl/noosfero,AlessandroCaetano/noosfero,samasti/noosfero,evandrojr/noosferogov,alexandreab/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,larissa/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,blogoosfero/noosfero,marcosronaldo/noosfero,coletivoEITA/noosfero,vfcosta/noosfero,LuisBelo/tccnoosfero,hackathon-oscs/rede-osc,arthurmde/noosfero,rafamanzo/mezuro-travis,uniteddiversity/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,macartur/noosfero,AlessandroCaetano/noosfero,evandrojr/noosferogov,macartur/noosfero,hackathon-oscs/cartografias,ludaac/noosfero-mx,marcosronaldo/noosfero,rafamanzo/mezuro-travis,cesarfex/noosfero,marcosronaldo/noosfero,samasti/noosfero,tallysmartins/noosfero,hebertdougl/noosfero,uniteddiversity/noosfero,joenio/noosfero,joenio/noosfero,coletivoEITA/noosfero,vfcosta/noosfero,abner/noosfero,ludaac/noosfero-mx,tallysmartins/noosfero,ludaac/noosfero-mx,blogoosfero/noosfero,arthurmde/noosfero,alexandreab/noosfero,arthurmde/noosfero,pr-snas/noosfero-sgpr,ludaac/noosfero-mx,coletivoEITA/noosfero,hackathon-oscs/cartografias,uniteddiversity/noosfero,coletivoEITA/noosfero-ecosol,cesarfex/noosfero,coletivoEITA/noosfero,hackathon-oscs/cartografias,danielafeitosa/noosfero,samasti/noosfero,joenio/noosfero,evandrojr/noosfero,vfcosta/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,alexandreab/noosfero,LuisBelo/tccnoosfero,marcosronaldo/noosfero,cesarfex/noosfero,coletivoEITA/noosfero,alexandreab/noosfero,rafamanzo/mezuro-travis,marcosronaldo/noosfero,evandrojr/noosferogov,danielafeitosa/noosfero,AlessandroCaetano/noosfero,CIRANDAS/noosfero-ecosol,uniteddiversity/noosfero,tallysmartins/noosfero,AlessandroCaetano/noosfero,CIRANDAS/noosfero-ecosol,abner/noosfero,abner/noosfero,hebertdougl/noosfero,hebertdougl/noosfero,macartur/noosfero,hackathon-oscs/rede-osc,vfcosta/noosfero,joenio/noosfero,rafamanzo/mezuro-travis,danielafeitosa/noosfero,evandrojr/noosfero,blogoosfero/noosfero,vfcosta/noosfero,tallysmartins/noosfero,pr-snas/noosfero-sgpr,EcoAlternative/noosfero-ecosol,rafamanzo/mezuro-travis,marcosronaldo/noosfero,samasti/noosfero,uniteddiversity/noosfero,AlessandroCaetano/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,macartur/noosfero,hackathon-oscs/rede-osc,arthurmde/noosfero,blogoosfero/noosfero,coletivoEITA/noosfero,hackathon-oscs/rede-osc,ludaac/noosfero-mx,macartur/noosfero,pr-snas/noosfero-sgpr,marcosronaldo/noosfero,macartur/noosfero,cesarfex/noosfero,coletivoEITA/noosfero-ecosol,EcoAlternative/noosfero-ecosol,joenio/noosfero,EcoAlternative/noosfero-ecosol,danielafeitosa/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosfero,alexandreab/noosfero,hackathon-oscs/cartografias,larissa/noosfero,joenio/noosfero,hackathon-oscs/rede-osc,samasti/noosfero,danielafeitosa/noosfero,evandrojr/noosferogov,LuisBelo/tccnoosfero,abner/noosfero,evandrojr/noosfero,blogoosfero/noosfero,alexandreab/noosfero,larissa/noosfero,hebertdougl/noosfero,tallysmartins/noosfero,cesarfex/noosfero,arthurmde/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosferogov,CIRANDAS/noosfero-ecosol,hackathon-oscs/cartografias,AlessandroCaetano/noosfero,uniteddiversity/noosfero,evandrojr/noosferogov,larissa/noosfero,alexandreab/noosfero,evandrojr/noosfero,larissa/noosfero,CIRANDAS/noosfero-ecosol,pr-snas/noosfero-sgpr,larissa/noosfero,vfcosta/noosfero,abner/noosfero,hackathon-oscs/rede-osc,samasti/noosfero,arthurmde/noosfero,abner/noosfero,abner/noosfero,LuisBelo/tccnoosfero,cesarfex/noosfero,tallysmartins/noosfero,macartur/noosfero,evandrojr/noosferogov,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol
Betulkan menu aset dalam tema merah jambu
b26d1e8a37aa9e933baa66bcc4c6e43bec3b2fb5
lib/views/admin_request/list_old_unclassified.rhtml
lib/views/admin_request/list_old_unclassified.rhtml
<% @title = "Unclassified responses" %> <h1><%=@title%></h1> <p>Classify responses that are still unclassified <%=InfoRequest::OLD_AGE_IN_DAYS.inspect %> after response:</p> <ul> <% for @request in @info_requests %> <li> <%= request_both_links(@request) %> &ndash; <%=simple_date(@request.get_last_response_event.created_at)%> </li> <% end %> </ul>
<% @title = "Unclassified responses" %> <h1><%=@title%></h1> <p>Classify responses that are still unclassified <%=InfoRequest::OLD_AGE_IN_DAYS.inspect %> after response:</p> <ul> <% for @request in @info_requests %> <li> <%= request_both_links(@request) %> &ndash; <%=simple_date(@request.get_last_response_event.created_at)%> </li> <% end %> </ul> <%= will_paginate(@info_requests, :class => "paginator") %>
Add pagination to old unclassified requests.
Add pagination to old unclassified requests.
RHTML
mit
mysociety/adminbootstraptheme,mysociety/adminbootstraptheme
Tambahkan penomboran pada permintaan lama yang tidak dikelaskan.
cef870cc6c041956fa5a803e2ebde7306f82d86b
app/views/search/_article_common.rhtml
app/views/search/_article_common.rhtml
<% article = article_common %> <%= render :partial => 'article_author', :object => article %> <%= render :partial => 'article_description', :object => article %> <%= render :partial => 'article_tags', :object => article.tags %> <%= render :partial => 'article_categories', :object => article.categories %> <%= render :partial => 'article_last_change', :object => article %>
<% article = article_common %> <% show_description = true if show_description.nil? %> <%= render :partial => 'article_author', :object => article %> <%= render :partial => 'article_description', :object => article if show_description %> <%= render :partial => 'article_tags', :object => article.tags %> <%= render :partial => 'article_categories', :object => article.categories %> <%= render :partial => 'article_last_change', :object => article %>
Add option to remove description
Add option to remove description
RHTML
agpl-3.0
CIRANDAS/noosfero-ecosol,AlessandroCaetano/noosfero,uniteddiversity/noosfero,uniteddiversity/noosfero,evandrojr/noosferogov,ludaac/noosfero-mx,tallysmartins/noosfero,arthurmde/noosfero,blogoosfero/noosfero,hackathon-oscs/rede-osc,blogoosfero/noosfero,hebertdougl/noosfero,pr-snas/noosfero-sgpr,evandrojr/noosfero,samasti/noosfero,alexandreab/noosfero,larissa/noosfero,samasti/noosfero,hackathon-oscs/cartografias,hackathon-oscs/rede-osc,CIRANDAS/noosfero-ecosol,evandrojr/noosfero,hackathon-oscs/cartografias,LuisBelo/tccnoosfero,evandrojr/noosferogov,hackathon-oscs/cartografias,marcosronaldo/noosfero,danielafeitosa/noosfero,blogoosfero/noosfero,blogoosfero/noosfero,pr-snas/noosfero-sgpr,macartur/noosfero,rafamanzo/mezuro-travis,samasti/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero-ecosol,macartur/noosfero,tallysmartins/noosfero,larissa/noosfero,hackathon-oscs/cartografias,larissa/noosfero,marcosronaldo/noosfero,evandrojr/noosfero,ludaac/noosfero-mx,larissa/noosfero,vfcosta/noosfero,uniteddiversity/noosfero,evandrojr/noosferogov,danielafeitosa/noosfero,evandrojr/noosfero,marcosronaldo/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,CIRANDAS/noosfero-ecosol,LuisBelo/tccnoosfero,coletivoEITA/noosfero,hebertdougl/noosfero,larissa/noosfero,LuisBelo/tccnoosfero,danielafeitosa/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,abner/noosfero,CIRANDAS/noosfero-ecosol,cesarfex/noosfero,coletivoEITA/noosfero,arthurmde/noosfero,hebertdougl/noosfero,LuisBelo/tccnoosfero,LuisBelo/tccnoosfero,EcoAlternative/noosfero-ecosol,macartur/noosfero,marcosronaldo/noosfero,rafamanzo/mezuro-travis,arthurmde/noosfero,arthurmde/noosfero,macartur/noosfero,alexandreab/noosfero,vfcosta/noosfero,larissa/noosfero,tallysmartins/noosfero,vfcosta/noosfero,hackathon-oscs/cartografias,AlessandroCaetano/noosfero,vfcosta/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,macartur/noosfero,marcosronaldo/noosfero,AlessandroCaetano/noosfero,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,abner/noosfero,CIRANDAS/noosfero-ecosol,rafamanzo/mezuro-travis,ludaac/noosfero-mx,coletivoEITA/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero-ecosol,abner/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,danielafeitosa/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosferogov,uniteddiversity/noosfero,abner/noosfero,pr-snas/noosfero-sgpr,tallysmartins/noosfero,hebertdougl/noosfero,hebertdougl/noosfero,vfcosta/noosfero,danielafeitosa/noosfero,arthurmde/noosfero,rafamanzo/mezuro-travis,AlessandroCaetano/noosfero,alexandreab/noosfero,cesarfex/noosfero,evandrojr/noosferogov,hackathon-oscs/rede-osc,ludaac/noosfero-mx,hackathon-oscs/rede-osc,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,ludaac/noosfero-mx,alexandreab/noosfero,evandrojr/noosfero,coletivoEITA/noosfero-ecosol,uniteddiversity/noosfero,abner/noosfero,coletivoEITA/noosfero-ecosol,danielafeitosa/noosfero,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,AlessandroCaetano/noosfero,alexandreab/noosfero,hackathon-oscs/rede-osc,blogoosfero/noosfero,coletivoEITA/noosfero,vfcosta/noosfero,EcoAlternative/noosfero-ecosol,cesarfex/noosfero,cesarfex/noosfero,macartur/noosfero,EcoAlternative/noosfero-ecosol,hackathon-oscs/rede-osc,samasti/noosfero,marcosronaldo/noosfero,blogoosfero/noosfero,evandrojr/noosferogov,alexandreab/noosfero,samasti/noosfero,alexandreab/noosfero,cesarfex/noosfero,hackathon-oscs/cartografias,tallysmartins/noosfero,macartur/noosfero,samasti/noosfero,evandrojr/noosfero,evandrojr/noosferogov,abner/noosfero,arthurmde/noosfero,cesarfex/noosfero,EcoAlternative/noosfero-ecosol,cesarfex/noosfero,marcosronaldo/noosfero,pr-snas/noosfero-sgpr,abner/noosfero,rafamanzo/mezuro-travis,hackathon-oscs/cartografias,larissa/noosfero,tallysmartins/noosfero,arthurmde/noosfero,evandrojr/noosfero,blogoosfero/noosfero
Tambah pilihan untuk mengalih keluar penerangan
acf466eca208a492eb238ea6b7ac792f3d218c31
app/views/manage_products/_edit_description.rhtml
app/views/manage_products/_edit_description.rhtml
<%= render :file => 'shared/tiny_mce', :locals => {:mode => 'simple'} %> <% remote_form_for(@product, :loading => "small_loading('product-description-form')", :update => 'product-description', :url => {:controller => 'manage_products', :action => 'edit', :id => @product, :field => 'description'}, :html => {:id => 'product-description-form', :method => 'post'}) do |f| %> <%= labelled_form_field(_('Description:'), f.text_area(:description, :rows => 15, :style => 'width: 90%;', :class => 'mceEditor')) %> <% button_bar do %> <%= submit_button :save, _('Save') %> <%= cancel_edit_product_link(@product, 'description') %> <% end %> <% end %>
<%= render :file => 'shared/tiny_mce', :locals => {:mode => 'simple'} %> <% remote_form_for(@product, :loading => "small_loading('product-description-form')", :before => ("tinymce.editors[0].save()" unless Rails.env == 'test'), :update => 'product-description', :url => {:controller => 'manage_products', :action => 'edit', :id => @product, :field => 'description'}, :html => {:id => 'product-description-form', :method => 'post'}) do |f| %> <%= labelled_form_field(_('Description:'), f.text_area(:description, :rows => 15, :style => 'width: 90%;', :class => 'mceEditor')) %> <% button_bar do %> <%= submit_button :save, _('Save') %> <%= cancel_edit_product_link(@product, 'description') %> <% end %> <% end %>
Save to tinymce on ajax form
Save to tinymce on ajax form
RHTML
agpl-3.0
blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,samasti/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,EcoAlternative/noosfero-ecosol,samasti/noosfero,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,samasti/noosfero,samasti/noosfero,samasti/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,CIRANDAS/noosfero-ecosol,coletivoEITA/noosfero-ecosol,blogoosfero/noosfero,blogoosfero/noosfero
Simpan ke tinymce pada borang ajax
52bfc5a905f21f03efb71dfb00fadb3f05372ecb
app/views/site/_key.rhtml
app/views/site/_key.rhtml
<% content_for :left_menu do %> <%= link_to_function t('site.key.map_key'), "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else if (zoomlevel<15) { var imgname = 'keymapnik13.png'; } else { var imgname = 'keymapnik15.png'; } updateSidebar("<%= t('site.key.map_key') %>", "<p><img src='images/"+imgname+"' /><\/p>"); openSidebar({ width: "210px" }); } function updateKey() { if (sidebarOpen("Map key")) { showKey(); } } // --> </script>
<% content_for :left_menu do %> <%= link_to_function t('site.key.map_key'), "showKey();" %> <% end %> <script type="text/javascript"> <!-- function showKey() { var zoomlevel = map.getZoom(); if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; } else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; } else if (zoomlevel<15) { var imgname = 'keymapnik13.png'; } else { var imgname = 'keymapnik15.png'; } updateSidebar("<%= t('site.key.map_key') %>", "<p><img src='images/"+imgname+"' /><\/p>"); openSidebar({ width: "210px" }); } function updateKey() { if (sidebarOpen("<%= t('site.key.map_key') %>")) { showKey(); } } // --> </script>
Update key when the zoom changes, even if the language is not english.
Update key when the zoom changes, even if the language is not english.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Kemas kini kunci apabila zum berubah, walaupun bahasanya bukan bahasa Inggeris.
ad134c6ca1517eea60dfaf96a919a9995f7fc895
lib/views/request/_next_actions.rhtml
lib/views/request/_next_actions.rhtml
<div class="act_link"> <%= link_to '<img src="/images/helpmeinvestigate.png" alt="" class="rss">', "http://helpmeinvestigate.com/"%> <%= link_to 'Get help investigating', "http://helpmeinvestigate.com/"%> </div> <div class="act_link"> <%= link_to '<img src="/images/writetothem.png" alt="" class="rss">', "http://www.writetothem.com"%> <%= link_to 'Write to your politician', "http://www.writetothem.com"%> </div> <div class="act_link"> <%= link_to '<img src="/images/pledgebank.png" alt="" class="rss">', "http://www.pledgebank.com"%> <%= link_to 'Pledge with others', "http://www.pledgebank.com"%> </div>
<div class="act_link"> <%= link_to '<img src="/images/helpmeinvestigate.png" alt="" class="rss">'.html_safe, "http://helpmeinvestigate.com/"%> <%= link_to 'Get help investigating', "http://helpmeinvestigate.com/"%> </div> <div class="act_link"> <%= link_to '<img src="/images/writetothem.png" alt="" class="rss">'.html_safe, "http://www.writetothem.com"%> <%= link_to 'Write to your politician', "http://www.writetothem.com"%> </div> <div class="act_link"> <%= link_to '<img src="/images/pledgebank.png" alt="" class="rss">'.html_safe, "http://www.pledgebank.com"%> <%= link_to 'Pledge with others', "http://www.pledgebank.com"%> </div>
Mark links as html safe now escaping is done automatically.
Mark links as html safe now escaping is done automatically.
RHTML
mit
schlos/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,schlos/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,mysociety/whatdotheyknow-theme
Tandakan pautan sebagai html selamat sekarang melarikan diri dilakukan secara automatik.
516d7859e02cc877c2dcf88e811b8b769e2c94a8
app/views/observer/show_comment.rhtml
app/views/observer/show_comment.rhtml
<%= link_to 'Back', :action => 'show_observation', :id => @comment.observation %> <% if check_permission(@comment.user_id) %> | <%= link_to 'Edit', :action => 'edit_comment', :id => @comment %> | <%= link_to 'Destroy', :action => 'destroy_comment', :id => @comment %> <% end %> <div id="Title">Comment on <%= h @comment.observation.unique_name %></div> <p>Created: <%= @comment.created.to_formatted_s(:db) %></p> <p>By: <%= @comment.user.unique_name %></p> <p>Summary: <%= @comment.summary %></p> <p>Comment: <%= textilize @comment.comment %></p>
<%= link_to 'Goto Observation', :action => 'show_observation', :id => @comment.observation %> <% if check_permission(@comment.user_id) %> | <%= link_to 'Edit', :action => 'edit_comment', :id => @comment %> | <%= link_to 'Destroy', :action => 'destroy_comment', :id => @comment %> <% end %> <div id="Title">Comment on <%= h @comment.observation.unique_name %></div> <p>Created: <%= @comment.created.to_formatted_s(:db) %></p> <p>By: <%= @comment.user.unique_name %></p> <p>Summary: <%= @comment.summary %></p> <p>Comment: <%= textilize @comment.comment %></p>
Switch Back link to Goto Observsation
Switch Back link to Goto Observsation git-svn-id: 3ebd8a4fd9006ff03462623fffc479a1d4750d42@32 7a65b82a-1d14-0410-b525-e2835e71a0b4
RHTML
mit
dicksonlabs/mushroom_sightings,dicksonlabs/mushroom_sightings,dicksonlabs/mushroom_sightings,dicksonlabs/mushroom_sightings,dicksonlabs/mushroom_sightings
Tukar pautan Kembali ke Pergi Ke Pemerhatian
2379bc5ab9889528c1a6e61fdd5409700ac56b80
lib/views/help/_sidebar.rhtml
lib/views/help/_sidebar.rhtml
<div id="right_column_flip"> <h2>Help pages</h2> <ul class="no_bullets"> <li><%= link_to_unless_current "Introduction", "/help/about" %></li> <li><%= link_to_unless_current "Making requests", "/help/requesting" %></li> <li><%= link_to_unless_current "Your privacy", "/help/privacy" %></li> <li><%= link_to_unless_current "FOI officers", "/help/officers" %></li> <li><%= link_to_unless_current "About the software", "/help/alaveteli" %></li> <li><%= link_to_unless_current "Credits", "/help/credits" %></li> <li><%= link_to_unless_current "Programmers API", "/help/api" %></li> <li><%= link_to_unless_current "Help us", "/help/help_out" %></li> <li><%= link_to_unless_current "Advanced search", "/search" %></li> </ul> <h2 id="contact">Contact us</h2> <p>If your question isn't answered here, or you just wanted to let us know something about the site, <a href="/help/contact">contact&nbsp;us</a>. </p> </div>
<div id="right_column_flip"> <h2>Help pages</h2> <ul class="no_bullets"> <li><%= link_to_unless_current "Introduction", "/help/about" %></li> <li><%= link_to_unless_current "Making requests", "/help/requesting" %></li> <li><%= link_to_unless_current "Your privacy", "/help/privacy" %></li> <li><%= link_to_unless_current "FOI officers", "/help/officers" %></li> <li><%= link_to_unless_current "About the software", "/help/alaveteli" %></li> <li><%= link_to_unless_current "Credits", "/help/credits" %></li> <li><%= link_to_unless_current "Programmers API", "/help/api" %></li> <li><%= link_to_unless_current "Help us", "/help/help_out" %></li> <li><%= link_to_unless_current "Advanced search", "/advancedsearch" %></li> </ul> <h2 id="contact">Contact us</h2> <p>If your question isn't answered here, or you just wanted to let us know something about the site, <a href="/help/contact">contact&nbsp;us</a>. </p> </div>
Make advanced search link in help sidebar point at advancedsearch rather than search
Make advanced search link in help sidebar point at advancedsearch rather than search
RHTML
mit
openaustralia/righttoknow,olineham/morebetter-theme,openaustralia/righttoknow,mysociety/alavetelitheme,nikeshbalami/asknepal-theme,mysociety/asknepal-theme,nikeshbalami/asknepal-theme,nztu/nztu-theme,mysociety/askyourgovug-theme,nzherald/fyi-theme,mimesbronn/alavetelitheme,slygent/accessinfohktheme,mysociety/bilmehakki-theme,mysociety/alavetelitheme,nzherald/fyi-theme,TEDICpy/queremosaber-theme,TEDICpy/queremosaber-theme,nztu/nztu-theme,mysociety/askyourgovug-theme,TEDICpy/queremosaber-theme,mysociety/bilmehakki-theme,nzherald/fyi-theme,mysociety/asknepal-theme,olineham/morebetter-theme,slygent/accessinfohktheme,petterreinholdtsen/alavetelitheme,mimesbronn/alavetelitheme,openaustralia/righttoknow,opennorth-archive/alavetelitheme,mysociety/sobanukirwa-theme,olineham/morebetter-theme,mysociety/sobanukirwa-theme
Buat pautan carian lanjutan dalam bar sisi bantuan titik pada carian lanjutan dan bukannya carian
a7219de757755d13cbf93fd82cfbfa3c362bf516
app/views/browse/_way_details.rhtml
app/views/browse/_way_details.rhtml
<table> <%= render :partial => "common_details", :object => way_details %> <tr valign="top"> <th><%= t'browse.way_details.nodes' %></th> <td> <table cellpadding="0"> <% way_details.way_nodes.each do |wn| %> <tr><td> <%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %> <% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %> <% if related_ways.size > 0 then %> (<%= t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.to_sentence %>) <% end %> </td></tr> <% end %> </table> </td> </tr> <% unless way_details.containing_relation_members.empty? %> <tr valign="top"> <th><%= t'browse.way_details.part_of' %></th> <td> <table cellpadding="0"> <%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %> </table> </td> </tr> <% end %> </table>
<table> <%= render :partial => "common_details", :object => way_details %> <tr valign="top"> <th><%= t'browse.way_details.nodes' %></th> <td> <table cellpadding="0"> <% way_details.way_nodes.each do |wn| %> <tr><td> <%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %> <% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %> <% if related_ways.size > 0 then %> (<%= t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.join(",") %>) <% end %> </td></tr> <% end %> </table> </td> </tr> <% unless way_details.containing_relation_members.empty? %> <tr valign="top"> <th><%= t'browse.way_details.part_of' %></th> <td> <table cellpadding="0"> <%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %> </table> </td> </tr> <% end %> </table>
Revert to using join instead of to_sentence for now as to_sentence is broken in rails 2.2 when I18N is in use. We can go back to using to_sentence once we have gone to rails 2.3 which fixes the problem.
Revert to using join instead of to_sentence for now as to_sentence is broken in rails 2.2 when I18N is in use. We can go back to using to_sentence once we have gone to rails 2.3 which fixes the problem. Close #1906.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Kembali kepada menggunakan join dan bukannya to_sentence buat masa ini kerana to_sentence rosak dalam rel 2.2 apabila I18N sedang digunakan. Kita boleh kembali menggunakan to_sentence sebaik sahaja kita pergi ke rails 2.3 yang membetulkan masalah.
8e08b402b1b7dad9631754d13bee500535841eee
lib/views/help/_sidebar.cy.rhtml
lib/views/help/_sidebar.cy.rhtml
<div id="about_sidebar"> <h1>Tudalennau cymorth</h1> <ul> <li><%= link_to_unless_current "Cyflwyniad", help_about_path %></li> <li><%= link_to_unless_current "Gwneud ceisiadau", help_requesting_path %></li> <li><%= link_to_unless_current "Eich preifatrwydd", help_privacy_path %></li> <li><%= link_to_unless_current "Swyddogion Rhyddid Gwybodaeth", help_officers_path %></li> <li><%= link_to_unless_current "Credydau", help_credits_path %></li> <li><%= link_to_unless_current "API Rhaglenwyr", help_api_path %></li> <li><%= link_to_unless_current "Chwiliad manwl", advanced_search_path %></li> </ul> <h1 id="contact">Cysylltwch â ni</h1> <p>Os nad yw eich cwestiwn yn cael ei ateb yma, neu eich bod jyst eisiau gadael i ni wybod rhywbeth am y wefan, <a href="<%= help_contact_path %>">cysylltwch â ni</a>. </p> </div>
<div id="about_sidebar"> <h1>Tudalennau cymorth</h1> <ul> <li><%= link_to_unless_current "Cyflwyniad", help_about_path %></li> <li><%= link_to_unless_current "Gwneud ceisiadau", help_requesting_path %></li> <li><%= link_to_unless_current "Eich preifatrwydd", help_privacy_path %></li> <li><%= link_to_unless_current "Swyddogion Rhyddid Gwybodaeth", help_officers_path %></li> <li><%= link_to_unless_current "Credydau", help_credits_path %></li> <li><%= link_to_unless_current "API Rhaglenwyr", help_api_path %></li> <li><%= link_to_unless_current "Chwiliad manwl", advanced_search_path %></li> <li><%= link_to_unless_current "Alaveteli", help_alaveteli_path %></li> </ul> <h1 id="contact">Cysylltwch â ni</h1> <p>Os nad yw eich cwestiwn yn cael ei ateb yma, neu eich bod jyst eisiau gadael i ni wybod rhywbeth am y wefan, <a href="<%= help_contact_path %>">cysylltwch â ni</a>. </p> </div>
Add Alaveteli link to Welsh help sidebar.
Add Alaveteli link to Welsh help sidebar.
RHTML
mit
mysociety/whatdotheyknow-theme,mysociety/whatdotheyknow-theme,schlos/whatdotheyknow-theme,schlos/whatdotheyknow-theme,mysociety/whatdotheyknow-theme
Tambahkan pautan Alaveteli ke bar sisi bantuan Welsh.
9d0383bd00ee99b0bb995b0ada4a4987834e3e07
frontends/default/views/_list_header.rhtml
frontends/default/views/_list_header.rhtml
<% if active_scaffold_config.action_links.any? { |link| link.type == :table } -%> <div class="actions"> <% new_params = params_for(:action => :table) %> <% active_scaffold_config.action_links.each :table do |link| -%> <% next if controller.respond_to? link.security_method and !controller.send(link.security_method) -%> <%= render_action_link(link, new_params) -%> <% end -%> <%= loading_indicator_tag(:action => :table) %> </div> <% end %> <h2><%= active_scaffold_config.list.user.label %></h2>
<% if active_scaffold_config.action_links.any? { |link| link.type == :table } -%> <div class="actions"> <% new_params = params_for(:action => :table) %> <% active_scaffold_config.action_links.each :table do |link| -%> <% next if link.action == 'show_search' && active_scaffold_config.list.always_show_search? %> <% next if controller.respond_to? link.security_method and !controller.send(link.security_method) -%> <%= render_action_link(link, new_params) -%> <% end -%> <%= loading_indicator_tag(:action => :table) %> </div> <% end %> <h2><%= active_scaffold_config.list.user.label %></h2>
Hide search button when always_show_search is true
Hide search button when always_show_search is true
RHTML
mit
jbogatay/active_scaffold,jbogatay/active_scaffold
Sembunyikan butang carian apabila always_show_search adalah benar
20aabe0e140d88db98093fd9594f4cf3492d63a6
app/views/cms/_textile_article.rhtml
app/views/cms/_textile_article.rhtml
<%= required_fields_message %> <%# TODO add Textile help here %> <%= required labelled_form_field(_('Title'), text_field(:article, 'name', :size => '64')) %> <%= render :partial => 'translatable' %> <%= render :partial => 'shared/lead_and_body' %>
<%= required_fields_message %> <%# TODO add Textile help here %> <%= required labelled_form_field(_('Title'), text_field(:article, 'name', :size => '72')) %> <%= render :partial => 'translatable' %> <%= render :partial => 'shared/lead_and_body' %>
USe 72 columns when editing textile text
USe 72 columns when editing textile text
RHTML
agpl-3.0
hackathon-oscs/rede-osc,rafamanzo/mezuro-travis,samasti/noosfero,joenio/noosfero,danielafeitosa/noosfero,alexandreab/noosfero,hackathon-oscs/cartografias,CIRANDAS/noosfero-ecosol,tallysmartins/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,EcoAlternative/noosfero-ecosol,larissa/noosfero,coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero-ecosol,rafamanzo/mezuro-travis,marcosronaldo/noosfero,joenio/noosfero,pr-snas/noosfero-sgpr,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,hebertdougl/noosfero,ludaac/noosfero-mx,cesarfex/noosfero,blogoosfero/noosfero,larissa/noosfero,joenio/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero-ecosol,danielafeitosa/noosfero,hackathon-oscs/rede-osc,marcosronaldo/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,evandrojr/noosfero,alexandreab/noosfero,uniteddiversity/noosfero,LuisBelo/tccnoosfero,evandrojr/noosfero,marcosronaldo/noosfero,larissa/noosfero,cesarfex/noosfero,alexandreab/noosfero,hebertdougl/noosfero,arthurmde/noosfero,larissa/noosfero,danielafeitosa/noosfero,danielafeitosa/noosfero,AlessandroCaetano/noosfero,samasti/noosfero,abner/noosfero,cesarfex/noosfero,uniteddiversity/noosfero,uniteddiversity/noosfero,cesarfex/noosfero,samasti/noosfero,coletivoEITA/noosfero,joenio/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosfero,hackathon-oscs/cartografias,blogoosfero/noosfero,evandrojr/noosferogov,rafamanzo/mezuro-travis,vfcosta/noosfero,abner/noosfero,LuisBelo/tccnoosfero,joenio/noosfero,evandrojr/noosfero,pr-snas/noosfero-sgpr,LuisBelo/tccnoosfero,rafamanzo/mezuro-travis,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,hebertdougl/noosfero,AlessandroCaetano/noosfero,coletivoEITA/noosfero,hebertdougl/noosfero,blogoosfero/noosfero,ludaac/noosfero-mx,evandrojr/noosfero,alexandreab/noosfero,danielafeitosa/noosfero,tallysmartins/noosfero,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,marcosronaldo/noosfero,macartur/noosfero,arthurmde/noosfero,evandrojr/noosfero,evandrojr/noosferogov,AlessandroCaetano/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,vfcosta/noosfero,blogoosfero/noosfero,larissa/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,tallysmartins/noosfero,samasti/noosfero,abner/noosfero,evandrojr/noosferogov,EcoAlternative/noosfero-ecosol,LuisBelo/tccnoosfero,blogoosfero/noosfero,arthurmde/noosfero,macartur/noosfero,arthurmde/noosfero,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,vfcosta/noosfero,samasti/noosfero,danielafeitosa/noosfero,samasti/noosfero,hebertdougl/noosfero,macartur/noosfero,vfcosta/noosfero,arthurmde/noosfero,hackathon-oscs/cartografias,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero-ecosol,vfcosta/noosfero,evandrojr/noosferogov,vfcosta/noosfero,alexandreab/noosfero,macartur/noosfero,coletivoEITA/noosfero,ludaac/noosfero-mx,blogoosfero/noosfero,coletivoEITA/noosfero,CIRANDAS/noosfero-ecosol,macartur/noosfero,ludaac/noosfero-mx,hackathon-oscs/rede-osc,cesarfex/noosfero,evandrojr/noosfero,coletivoEITA/noosfero-ecosol,rafamanzo/mezuro-travis,marcosronaldo/noosfero,alexandreab/noosfero,abner/noosfero,hackathon-oscs/cartografias,tallysmartins/noosfero,macartur/noosfero,CIRANDAS/noosfero-ecosol,cesarfex/noosfero,EcoAlternative/noosfero-ecosol,abner/noosfero,larissa/noosfero,hackathon-oscs/cartografias,arthurmde/noosfero,hackathon-oscs/cartografias,LuisBelo/tccnoosfero,coletivoEITA/noosfero,hackathon-oscs/cartografias,blogoosfero/noosfero,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,joenio/noosfero,hackathon-oscs/rede-osc,marcosronaldo/noosfero,macartur/noosfero,abner/noosfero,evandrojr/noosferogov,evandrojr/noosferogov,cesarfex/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,tallysmartins/noosfero,abner/noosfero,marcosronaldo/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero,pr-snas/noosfero-sgpr,arthurmde/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,ludaac/noosfero-mx,evandrojr/noosferogov
Gunakan 72 lajur semasa mengedit teks tekstil
cb346435ce16fbc809c9ef66e15d411d4962cb90
lib/views/admin_request/_incoming_message_actions.rhtml
lib/views/admin_request/_incoming_message_actions.rhtml
<% form_tag '../redeliver_incoming', :class => "form form-inline" do %> <div> id or url_title of request: <% if @info_requests && @info_requests.size == 1 %> <%= text_field_tag 'url_title', @info_requests[0].url_title, { :size => 20 } %> <% else %> <%= text_field_tag 'url_title', "", { :size => 20 } %> <% end %> <%= hidden_field_tag 'redeliver_incoming_message_id', incoming_message.id %> <%= submit_tag "Redeliver to another request", :class => "btn btn-warning" %> </div> <% end %> <p> <%= link_to 'Generate FOI officer upload URL', "../generate_upload_url/#{incoming_message.info_request.id}?incoming_message_id=#{incoming_message.id}", :class => "btn" %> </p> <% form_tag '../destroy_incoming', :class => "form form-inline" do %> <%= hidden_field_tag 'incoming_message_id', incoming_message.id %> <span class="label label-important"> Warning, this is permanent! &nbsp; </span> <%= submit_tag "Destroy message", :class => "btn btn-danger" %> <% end %>
<% form_tag '../redeliver_incoming', :class => "form form-inline" do %> <div> id or url_title of request: <% if @info_requests && @info_requests.size == 1 %> <%= text_field_tag 'url_title', @info_requests[0].url_title, { :size => 20 } %> <% else %> <%= text_field_tag 'url_title', "", { :size => 20 } %> <% end %> <%= hidden_field_tag 'redeliver_incoming_message_id', incoming_message.id %> <%= submit_tag "Redeliver to another request", :class => "btn btn-warning" %> </div> <% end %> <p> <%= link_to 'Generate FOI officer upload URL', "../generate_upload_url/#{incoming_message.info_request.id}?incoming_message_id=#{incoming_message.id}", :class => "btn" %> </p> <% form_tag '../destroy_incoming', :class => "form form-inline" do %> <%= hidden_field_tag 'incoming_message_id', incoming_message.id %> <%= submit_tag "Destroy message", :class => "btn btn-danger" %> Warning, this is permanent! <% end %>
Make the "warning, this is permanent" message a bit less ugly (the button is red, anyway)
Make the "warning, this is permanent" message a bit less ugly (the button is red, anyway)
RHTML
mit
mysociety/adminbootstraptheme,sebbacon/adminbootstraptheme,mysociety/adminbootstraptheme,sebbacon/adminbootstraptheme
Jadikan mesej "amaran, ini kekal" agak kurang hodoh (butang berwarna merah, bagaimanapun)
a06664854e252bf8ac9426e5f5dffc93eb721a16
app/views/cms/_enterprise_homepage.rhtml
app/views/cms/_enterprise_homepage.rhtml
<%= render :file => 'shared/tiny_mce' %> <%= labelled_form_field(_('Text'), text_area(:article, 'body', :cols => 40, :style => 'width:99%')) %>
<%= render :file => 'shared/tiny_mce' %> <%= labelled_form_field(_('Text'), text_area(:article, 'body', :cols => 40, :style => 'width:99%', :class => 'mceEditor')) %>
Fix use of tinymce on enterprise homepage
Fix use of tinymce on enterprise homepage
RHTML
agpl-3.0
uniteddiversity/noosfero,EcoAlternative/noosfero-ecosol,samasti/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,arthurmde/noosfero,macartur/noosfero,arthurmde/noosfero,EcoAlternative/noosfero-ecosol,LuisBelo/tccnoosfero,alexandreab/noosfero,macartur/noosfero,AlessandroCaetano/noosfero,arthurmde/noosfero,samasti/noosfero,coletivoEITA/noosfero-ecosol,uniteddiversity/noosfero,marcosronaldo/noosfero,samasti/noosfero,marcosronaldo/noosfero,AlessandroCaetano/noosfero,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,larissa/noosfero,abner/noosfero,tallysmartins/noosfero,hebertdougl/noosfero,hackathon-oscs/cartografias,coletivoEITA/noosfero-ecosol,hebertdougl/noosfero,uniteddiversity/noosfero,macartur/noosfero,marcosronaldo/noosfero,EcoAlternative/noosfero-ecosol,vfcosta/noosfero,alexandreab/noosfero,hackathon-oscs/rede-osc,abner/noosfero,macartur/noosfero,hackathon-oscs/rede-osc,abner/noosfero,macartur/noosfero,larissa/noosfero,marcosronaldo/noosfero,hebertdougl/noosfero,macartur/noosfero,coletivoEITA/noosfero-ecosol,alexandreab/noosfero,evandrojr/noosfero,evandrojr/noosfero,evandrojr/noosferogov,blogoosfero/noosfero,tallysmartins/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosfero,hackathon-oscs/rede-osc,abner/noosfero,uniteddiversity/noosfero,AlessandroCaetano/noosfero,uniteddiversity/noosfero,larissa/noosfero,samasti/noosfero,hebertdougl/noosfero,evandrojr/noosferogov,tallysmartins/noosfero,hackathon-oscs/cartografias,alexandreab/noosfero,evandrojr/noosferogov,evandrojr/noosfero,blogoosfero/noosfero,vfcosta/noosfero,arthurmde/noosfero,coletivoEITA/noosfero,hackathon-oscs/cartografias,arthurmde/noosfero,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,marcosronaldo/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosferogov,evandrojr/noosferogov,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,samasti/noosfero,alexandreab/noosfero,tallysmartins/noosfero,marcosronaldo/noosfero,coletivoEITA/noosfero-ecosol,larissa/noosfero,hackathon-oscs/cartografias,vfcosta/noosfero,blogoosfero/noosfero,arthurmde/noosfero,abner/noosfero,marcosronaldo/noosfero,uniteddiversity/noosfero,coletivoEITA/noosfero-ecosol,AlessandroCaetano/noosfero,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,coletivoEITA/noosfero,evandrojr/noosfero,AlessandroCaetano/noosfero,abner/noosfero,arthurmde/noosfero,samasti/noosfero,CIRANDAS/noosfero-ecosol,CIRANDAS/noosfero-ecosol,tallysmartins/noosfero,hackathon-oscs/rede-osc,vfcosta/noosfero,LuisBelo/tccnoosfero,EcoAlternative/noosfero-ecosol,hebertdougl/noosfero,alexandreab/noosfero,coletivoEITA/noosfero-ecosol,hackathon-oscs/rede-osc,larissa/noosfero,vfcosta/noosfero,tallysmartins/noosfero,coletivoEITA/noosfero,AlessandroCaetano/noosfero,abner/noosfero,evandrojr/noosfero,hackathon-oscs/cartografias,hackathon-oscs/rede-osc,LuisBelo/tccnoosfero,hackathon-oscs/cartografias,larissa/noosfero,macartur/noosfero,vfcosta/noosfero,LuisBelo/tccnoosfero,hackathon-oscs/cartografias,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,blogoosfero/noosfero,evandrojr/noosferogov,blogoosfero/noosfero,tallysmartins/noosfero,hebertdougl/noosfero,alexandreab/noosfero,evandrojr/noosferogov,uniteddiversity/noosfero,evandrojr/noosfero,LuisBelo/tccnoosfero,coletivoEITA/noosfero
Betulkan penggunaan tinymce pada halaman utama perusahaan
c3424e9cfb2542dedbf545a76d4ddb591c59df3d
app/views/notifier/message_notification.rhtml
app/views/notifier/message_notification.rhtml
Hi <%= @to_user %>, <%= @from_user %> has sent you a message through OpenStreetMap with the subject "<%= @subject %>": == <%= @body %> == You can also read the message at <%= @readurl %> and you can reply at <%= @replyurl %>
*************************************************************************** Please do not reply to this email. Use the OpenStreetMap web site to reply. *************************************************************************** Hi <%= @to_user %>, <%= @from_user %> has sent you a message through OpenStreetMap with the subject "<%= @subject %>": == <%= @body %> == You can also read the message at <%= @readurl %> and you can reply at <%= @replyurl %> *************************************************************************** Please do not reply to this email. Use the OpenStreetMap web site to reply. ***************************************************************************
Add warnings not to reply to message notifications directly.
Add warnings not to reply to message notifications directly.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Tambahkan amaran untuk tidak membalas pemberitahuan mesej secara langsung.
766c3c1fa75a7aed981447a9a83cb45542c6b4a1
app/views/request_mailer/new_response.rhtml
app/views/request_mailer/new_response.rhtml
You have a new response to the <%= @info_request.law_used_full %> request '<%= @info_request.title %>' that you made to <%= @info_request.public_body.name %>. To view the response, click on the link below. <%=@url%> When you get there, let us know if the response contains any useful information. Although all responses are automatically published, we depend on you, the original requester, to evaluate them. -- the WhatDoTheyKnow team
You have a new response to the <%= @info_request.law_used_full %> request '<%= @info_request.title %>' that you made to <%= @info_request.public_body.name %>. To view the response, click on the link below. <%=@url%> When you get there, please update the status to say if the response contains any useful information. Although all responses are automatically published, we depend on you, the original requester, to evaluate them. -- the WhatDoTheyKnow team
Fix text to make it clear the status update is on the website not in the email.
Fix text to make it clear the status update is on the website not in the email.
RHTML
agpl-3.0
kuahyeow/foi,kuahyeow/foi
Betulkan teks untuk menjelaskan kemas kini status berada di tapak web bukan dalam e-mel.
93be2b4c203cb24064c4248432cfcadc3d832c49
app/views/user/bad_token.rhtml
app/views/user/bad_token.rhtml
<p id="bad_token"> Please check the URL (i.e. the long code of letters and numbers) is copied correctly from your email. </p> <p id="bad_token"> If you can't click on it in the email, you'll have to select and copy it from the email. Then paste it into your browser, into the place you would type the address of any other webpage. </p> <p id="bad_token"> If you got the email more than a year ago, then this login link won't work any more. Please try doing what you were doing from the beginning. </p>
<h1> Please check the URL (i.e. the long code of letters and numbers) is copied correctly from your email. </h1> <p> If you can't click on it in the email, you'll have to select and copy it from the email. Then paste it into your browser, into the place you would type the address of any other webpage. </p> <p> If you got the email more than six months ago, then this login link won't work any more. Please try doing what you were doing from the beginning. </p>
Update quite old out of date bad token text
Update quite old out of date bad token text
RHTML
agpl-3.0
TEDICpy/QueremoSaber,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,TEDICpy/QueremoSaber,petterreinholdtsen/alaveteli,datauy/alaveteli,petterreinholdtsen/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,hasadna/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,sarhane/alaveteli-test,andreicristianpetcu/alaveteli,sarhane/alaveteli-test,10layer/alaveteli,Br3nda/alaveteli,datauy/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,codeforcroatia/alaveteli,nzherald/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,petterreinholdtsen/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,10layer/alaveteli,codeforcroatia/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,petterreinholdtsen/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,codeforcroatia/alaveteli,10layer/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,4bic/alaveteli,datauy/alaveteli,sarhane/alaveteli-test,4bic/alaveteli,4bic/alaveteli
Kemas kini teks token buruk yang agak lapuk
269a43249ca031b2710d90d90be20ce8aa1ba25a
app/views/request_mailer/initial_request.rhtml
app/views/request_mailer/initial_request.rhtml
<%= @outgoing_message.body.strip %> ------------------------------------------------------------------- Is <%= @info_request.public_body.request_email%> the wrong address for Freedom of Information requests to <%= @info_request.public_body.name%>? If so please let us know by emailing <%=@contact_email%>. We'll make sure future ones go to the right place. -------------------------------------------------------------------
<%= @outgoing_message.body.strip %> ------------------------------------------------------------------- Is <%= @info_request.public_body.request_email%> the wrong address for Freedom of Information requests to <%= @info_request.public_body.name%>? If so please let us know by emailing <%=@contact_email%> - we'll make sure future ones go to the right place. -------------------------------------------------------------------
Make sure there isn't a full stop immediately after our email, in case some mail clients include it in the address
Make sure there isn't a full stop immediately after our email, in case some mail clients include it in the address
RHTML
agpl-3.0
sarhane/alaveteli-test,codeforcroatia/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,andreicristianpetcu/alaveteli,codeforcroatia/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,hasadna/alaveteli,sarhane/alaveteli-test,10layer/alaveteli,nzherald/alaveteli,hasadna/alaveteli,hasadna/alaveteli,TEDICpy/QueremoSaber,4bic/alaveteli,Br3nda/alaveteli,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,sarhane/alaveteli-test,andreicristianpetcu/alaveteli,petterreinholdtsen/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,petterreinholdtsen/alaveteli,Br3nda/alaveteli,petterreinholdtsen/alaveteli,petterreinholdtsen/alaveteli,4bic/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,datauy/alaveteli,andreicristianpetcu/alaveteli_old,10layer/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli,10layer/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,nzherald/alaveteli,codeforcroatia/alaveteli,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria
Pastikan tiada noktah sejurus selepas e-mel kami, sekiranya sesetengah pelanggan mel memasukkannya ke dalam alamat
1bba82647b826fc543024eedb2d8a5de9d8b74e4
app/views/admin/pages/_form.rhtml
app/views/admin/pages/_form.rhtml
<%= error_messages_for 'page' %> <!--[form:pages]--> <p> <label for="page_name">Location:</label><br /> /page/ <%= text_field 'page', 'name', :size => 16 %> </p> <p> <label for="page_title">Title:</label><br /> <%= text_field 'page', 'title', :size => 20 %> </p> <p> <label for="page_body">Content:</label><br /> <%= text_area 'page', 'body', :rows => 25, :cols => 65 %> </p> <label for="page_text_filter">Textfilter: </label><%= select 'page', 'text_filter', text_filter_options %><br/> <br clear="all"/> <!--[eoform:pages]-->
<%= error_messages_for 'page' %> <!--[form:pages]--> <p> <label for="page_name">Location:</label><br /> /pages/ <%= text_field 'page', 'name', :size => 16 %> </p> <p> <label for="page_title">Title:</label><br /> <%= text_field 'page', 'title', :size => 20 %> </p> <p> <label for="page_body">Content:</label><br /> <%= text_area 'page', 'body', :rows => 25, :cols => 65 %> </p> <label for="page_text_filter">Textfilter: </label><%= select 'page', 'text_filter', text_filter_options %><br/> <br clear="all"/> <!--[eoform:pages]-->
Fix minor typo on pages admin page
Fix minor typo on pages admin page git-svn-id: 70ab0960c3db1cbf656efd6df54a8f3de72dc710@516 820eb932-12ee-0310-9ca8-eeb645f39767
RHTML
mit
waruboy/publify,lbiedinger/cs_typo,saasbook/typo,ndueber/cs-169_hw5,tedfrazier/saas_typo,zsstor/Typo,pr0d1r2/typo,babaa/foodblog,K-and-R/publify,nvgit/typo1,nvgit/typo1,mrfosip/typo,mozzan/publify,leminhtuan2015/test_temona,sf-wdi-25/publify_debugging_lab,natesholland/typo,nguyenduyta/deploy-test,lbiedinger/cs_typo,leminhtuan2015/temona_staging,gvaquez/typo,mplstar/blog,moneyadviceservice/publify,shrayus/hw-refactoring-legecy-code,agiamas/publify,alexhuang91/typo,arramos84/cs169-hw5,jcfausto/publify,solanolabs/publify,natesholland/typo,Endymion1977/typo,jcfausto/publify,amba178/legacy_code,sbstn-jmnz/typo,Juuro/publify,robinparadise/typo,bikmaeff/CS169.2_hw12,telekomatrix/publify,LOSDev/CS169-Homework-5,khlumzeemee/typo,solanolabs/publify,K-and-R/publify,boostsup/HW5_typo,ashrob/typo,edgarpng/typo-blog,backpackerhh/typo,xwang191/-edX.CS169.2x.hw1,silygose/typo,sf-wdi-25/publify_debugging_lab,blairanderson/that-music-blog,framgia/publify,mrfosip/typo,bsiebz/legacyhw,congchen5/typo,shaomingtan/publify,matthewliu/saas_hw5,K-and-R/publify,ashleymichal/typo,seyedrazavi/publify,mozzan/publify,boostsup/HW5_typo,shrayus/hw-refactoring-legecy-code,McWild/psdtohtml,randyramadhana/typo,ndueber/cs-169_hw5,gvaquez/typo,pr0d1r2/typo,blairanderson/that-music-blog,faraazkhan/myblog,leminhtuan2015/test_temona,natesholland/typo,matthewliu/saas_hw5,P5hil/typo,burakicel/Burakicel.com,saasbook/typo,Endymion1977/typo,jcfausto/publify,nvgit/typo1,P5hil/typo,vincenttian/cs169hw5,felixitous/typoo,kryptykfysh/saas_typo,mozzan/publify,publify/publify,LOSDev/CS169-Homework-5,ACPK/typo,leminhtuan2015/test_temona,pr0d1r2/typo,ashrob/typo,ACPK/typo,drakontia/publify,bsiebz/legacyhw,drakontia/publify,McWild/psdtohtml,Chickey2/typo,vivekv009/inuni-blog,Juuro/publify,leminhtuan2015/temona_staging,moneyadviceservice/publify,seyedrazavi/publify,kildem/blog,totzYuta/coding-diary-of-totz,vivekv009/inuni-blog,whithajess/publify,bsiebz/legacyhw,waruboy/publify,SF-WDI-LABS/publify_debugging_lab,kildem/blog,wizzro/CS169.2x-hw1-2,bikmaeff/CS169.2_hw12,vincenttian/cs169hw5,agiamas/publify,leminhtuan2015/temona_staging,nguyenduyta/deploy-test,zsstor/Typo,shaomingtan/publify,McWild/psdtohtml,saasbook/typo,shimolshah/typo-backup,publify/publify,shimolshah/typo-backup,seyedrazavi/publify,pr0d1r2/typo,arramos84/cs169-hw5,sf-wdi-25/publify_debugging_lab,nguyenduyta/deploy-test,aren19/HW_5,kryptykfysh/saas_typo,leminhtuan2015/nginx_capuchino_rails,telekomatrix/publify,shrayus/hw-refactoring-legecy-code,pr0d1r2/typo,leminhtuan2015/portal_staging,nvgit/typo1,publify/publify,hmallett/publify,framgia/publify,arramos84/cs169-hw5,tinnywang/typo,wizzro/CS169.2x-hw1-2,P5hil/typo,amba178/legacy_code,burakicel/Burakicel.com,kmathew96/typo,freeranger/typo,kildem/blog,bikmaeff/CS169.2_hw12,silygose/typo,hmallett/publify,agiamas/publify,kmathew96/typo,McWild/psdtohtml,shimolshah/typo-backup,freeranger/typo,boostsup/HW5_typo,vincenttian/cs169hw5,robinparadise/typo,pr0d1r2/typo,totzYuta/coding-diary-of-totz,leminhtuan2015/portal_staging,telekomatrix/publify,felixitous/typoo,LOSDev/CS169-Homework-5,pr0d1r2/typo,kmathew96/typo,ndueber/cs-169_hw5,mplstar/blog,silygose/typo,randyramadhana/typo,Juuro/publify,whithajess/publify,McWild/psdtohtml,ACPK/typo,pr0d1r2/typo,SF-WDI-LABS/publify_debugging_lab,ashleymichal/typo,leminhtuan2015/portal_staging,alexhuang91/typo,backpackerhh/typo,congchen5/typo,sbstn-jmnz/typo,moneyadviceservice/publify,tedfrazier/saas_typo,mplstar/blog,edgarpng/typo-blog,vivekv009/inuni-blog,SF-WDI-LABS/publify_debugging_lab,solanolabs/publify,sbstn-jmnz/typo,freeranger/typo,felixitous/typoo,leminhtuan2015/portal_staging,khlumzeemee/typo,whithajess/publify,ashleymichal/typo,blairanderson/that-music-blog,zsstor/Typo,freibuis/publify,Chickey2/typo,freibuis/publify,lbiedinger/cs_typo,leminhtuan2015/nginx_capuchino_rails,faraazkhan/myblog,leminhtuan2015/nginx_capuchino_rails,freibuis/publify,leminhtuan2015/nginx_capuchino_rails,kildem/blog,backpackerhh/typo,tinnywang/typo,xwang191/-edX.CS169.2x.hw1,waruboy/publify,moneyadviceservice/publify,babaa/foodblog,hmallett/publify,randyramadhana/typo,LOSDev/CS169-Homework-5,aren19/HW_5
Betulkan kesilapan kesilapan kecil pada halaman pentadbir halaman
2da1c3f258dfe2d8eac26cc82390b9f4f4c1265b
frontends/default/views/_form_association_header.rhtml
frontends/default/views/_form_association_header.rhtml
<thead> <tr> <% active_scaffold_config_for(@record.class).subform.columns.each :for => @record, :flatten => true do |column| next unless in_subform?(column, parent_record) -%> <th><%= column.label %></th> <% end -%> </tr> </thead>
<thead> <tr> <% active_scaffold_config_for(@record.class).subform.columns.each :for => @record, :flatten => true do |column| next unless in_subform?(column, parent_record) and column_renders_as(column) != :hidden -%> <th><%= column.label %></th> <% end -%> </tr> </thead>
Hide hidden column header labels - like lock_version - in sub-forms.
Hide hidden column header labels - like lock_version - in sub-forms.
RHTML
mit
PiRSquared17/activescaffold,PiRSquared17/activescaffold,PiRSquared17/activescaffold
Sembunyikan label pengepala lajur tersembunyi - seperti lock_version - dalam sub-borang.
0a334787f1a789817d52fc2503e3056cb9a7bfca
app/views/browse/_way_details.rhtml
app/views/browse/_way_details.rhtml
<table> <%= render :partial => "common_details", :object => way_details %> <tr valign="top"> <th><%= t'browse.way_details.nodes' %></th> <td> <table cellpadding="0"> <% way_details.way_nodes.each do |wn| %> <tr><td> <%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %> <% if wn.node.ways.size > 1 then %> (also part of <%= wn.node.ways.reject { |w| w.id == way_details.id }.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.join(", ") %>) <% end %> </td></tr> <% end %> </table> </td> </tr> <% unless way_details.containing_relation_members.empty? %> <tr valign="top"> <th><%= t'browse.way_details.part_of' %></th> <td> <table cellpadding="0"> <%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %> </table> </td> </tr> <% end %> </table>
<table> <%= render :partial => "common_details", :object => way_details %> <tr valign="top"> <th><%= t'browse.way_details.nodes' %></th> <td> <table cellpadding="0"> <% way_details.way_nodes.each do |wn| %> <tr><td> <%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %> <% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %> <% if related_ways.size > 0 then %> (also part of <%= related_ways.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.join(", ") %>) <% end %> </td></tr> <% end %> </table> </td> </tr> <% unless way_details.containing_relation_members.empty? %> <tr valign="top"> <th><%= t'browse.way_details.part_of' %></th> <td> <table cellpadding="0"> <%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %> </table> </td> </tr> <% end %> </table>
Handle nodes which are in the same way multiple times.
Handle nodes which are in the same way multiple times.
RHTML
agpl-3.0
tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam,tillmo/do-roam
Mengendalikan nod yang dalam cara yang sama beberapa kali.
297ad5e95f3d238cd6efc1b2259f0b416514b012
app/views/cms/publish.rhtml
app/views/cms/publish.rhtml
<h1><%= _('Select the groups where you want to publish your article') %></h1> <% if !@failed.blank? %> <div class="errorExplanation" id="errorExplanation"> <p><%=_("There were errors with the following communities: ")%></p> <% @failed.each do |error, communities|%> <strong> <%= error %>: </strong> <ul> <% communities.each do |community| %> <li> <%= community %> </li> <% end %> </ul> <% end %> </div> <% end %> <!-- Workaroud while the publish feature isn't ready for Events --> <% if @article.type != "Event" %> <% form_tag do%> <%= hidden_field_tag :back_to, @back_to %> <% @groups.each do |group| %> <%= labelled_check_box group.name, 'marked_groups[][group_id]', group.id, @marked_groups.include?(group) %><br /> <%= labelled_text_field _('Title') + ': ', 'marked_groups[][name]', @article.name, :style => 'width: 100%' %> <hr /> <% end %> <% button_bar do %> <%= submit_button 'spread', _('Publish') %> <% end %> <% end %> <% else %> <div class='atention'> <%= _("This option is temporarily disabled.") %> </div> <% end %>
<h1><%= _('Select the groups where you want to publish your article') %></h1> <% if !@failed.blank? %> <div class="errorExplanation" id="errorExplanation"> <p><%=_("There were errors with the following communities: ")%></p> <% @failed.each do |error, communities|%> <strong> <%= error %>: </strong> <ul> <% communities.each do |community| %> <li> <%= community %> </li> <% end %> </ul> <% end %> </div> <% end %> <!-- Workaroud while the publish feature isn't ready for Events --> <% unless @article.is_a?(Event) %> <% form_tag do%> <%= hidden_field_tag :back_to, @back_to %> <% @groups.each do |group| %> <%= labelled_check_box group.name, 'marked_groups[][group_id]', group.id, @marked_groups.include?(group) %><br /> <%= labelled_text_field _('Title') + ': ', 'marked_groups[][name]', @article.name, :style => 'width: 100%' %> <hr /> <% end %> <% button_bar do %> <%= submit_button 'spread', _('Publish') %> <% end %> <% end %> <% else %> <div class='atention'> <%= _("This option is temporarily disabled.") %> </div> <% end %>
Replace checking of type attribute with is_a? call
Replace checking of type attribute with is_a? call
RHTML
agpl-3.0
coletivoEITA/noosfero-ecosol,coletivoEITA/noosfero,LuisBelo/tccnoosfero,hebertdougl/noosfero,alexandreab/noosfero,macartur/noosfero,pr-snas/noosfero-sgpr,hackathon-oscs/rede-osc,blogoosfero/noosfero,abner/noosfero,danielafeitosa/noosfero,marcosronaldo/noosfero,CIRANDAS/noosfero-ecosol,tallysmartins/noosfero,LuisBelo/tccnoosfero,EcoAlternative/noosfero-ecosol,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,coletivoEITA/noosfero,hebertdougl/noosfero,LuisBelo/tccnoosfero,uniteddiversity/noosfero,alexandreab/noosfero,uniteddiversity/noosfero,coletivoEITA/noosfero-ecosol,hackathon-oscs/cartografias,blogoosfero/noosfero,marcosronaldo/noosfero,pr-snas/noosfero-sgpr,marcosronaldo/noosfero,larissa/noosfero,evandrojr/noosferogov,ludaac/noosfero-mx,joenio/noosfero,tallysmartins/noosfero,AlessandroCaetano/noosfero,vfcosta/noosfero,macartur/noosfero,AlessandroCaetano/noosfero,CIRANDAS/noosfero-ecosol,vfcosta/noosfero,coletivoEITA/noosfero,larissa/noosfero,tallysmartins/noosfero,alexandreab/noosfero,larissa/noosfero,coletivoEITA/noosfero-ecosol,LuisBelo/tccnoosfero,tallysmartins/noosfero,pr-snas/noosfero-sgpr,joenio/noosfero,hackathon-oscs/cartografias,uniteddiversity/noosfero,samasti/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,larissa/noosfero,abner/noosfero,hackathon-oscs/cartografias,ludaac/noosfero-mx,coletivoEITA/noosfero,alexandreab/noosfero,arthurmde/noosfero,AlessandroCaetano/noosfero,macartur/noosfero,EcoAlternative/noosfero-ecosol,blogoosfero/noosfero,cesarfex/noosfero,evandrojr/noosfero,cesarfex/noosfero,tallysmartins/noosfero,joenio/noosfero,evandrojr/noosferogov,hackathon-oscs/rede-osc,pr-snas/noosfero-sgpr,rafamanzo/mezuro-travis,vfcosta/noosfero,hackathon-oscs/cartografias,cesarfex/noosfero,danielafeitosa/noosfero,evandrojr/noosfero,hackathon-oscs/rede-osc,macartur/noosfero,cesarfex/noosfero,arthurmde/noosfero,cesarfex/noosfero,macartur/noosfero,arthurmde/noosfero,hackathon-oscs/cartografias,alexandreab/noosfero,rafamanzo/mezuro-travis,arthurmde/noosfero,blogoosfero/noosfero,samasti/noosfero,ludaac/noosfero-mx,hebertdougl/noosfero,EcoAlternative/noosfero-ecosol,abner/noosfero,joenio/noosfero,abner/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosferogov,cesarfex/noosfero,CIRANDAS/noosfero-ecosol,evandrojr/noosfero,LuisBelo/tccnoosfero,tallysmartins/noosfero,abner/noosfero,alexandreab/noosfero,evandrojr/noosferogov,EcoAlternative/noosfero-ecosol,pr-snas/noosfero-sgpr,pr-snas/noosfero-sgpr,cesarfex/noosfero,marcosronaldo/noosfero,marcosronaldo/noosfero,evandrojr/noosferogov,uniteddiversity/noosfero,hackathon-oscs/rede-osc,hebertdougl/noosfero,larissa/noosfero,danielafeitosa/noosfero,samasti/noosfero,rafamanzo/mezuro-travis,larissa/noosfero,ludaac/noosfero-mx,AlessandroCaetano/noosfero,AlessandroCaetano/noosfero,coletivoEITA/noosfero,samasti/noosfero,marcosronaldo/noosfero,hackathon-oscs/rede-osc,tallysmartins/noosfero,alexandreab/noosfero,hackathon-oscs/rede-osc,coletivoEITA/noosfero,EcoAlternative/noosfero-ecosol,larissa/noosfero,coletivoEITA/noosfero-ecosol,evandrojr/noosferogov,hebertdougl/noosfero,danielafeitosa/noosfero,CIRANDAS/noosfero-ecosol,arthurmde/noosfero,vfcosta/noosfero,joenio/noosfero,danielafeitosa/noosfero,abner/noosfero,uniteddiversity/noosfero,coletivoEITA/noosfero-ecosol,evandrojr/noosfero,arthurmde/noosfero,uniteddiversity/noosfero,abner/noosfero,blogoosfero/noosfero,rafamanzo/mezuro-travis,AlessandroCaetano/noosfero,ludaac/noosfero-mx,hackathon-oscs/cartografias,hackathon-oscs/rede-osc,hackathon-oscs/cartografias,AlessandroCaetano/noosfero,evandrojr/noosferogov,marcosronaldo/noosfero,uniteddiversity/noosfero,macartur/noosfero,samasti/noosfero,LuisBelo/tccnoosfero,coletivoEITA/noosfero-ecosol,samasti/noosfero,joenio/noosfero,rafamanzo/mezuro-travis,macartur/noosfero,vfcosta/noosfero,vfcosta/noosfero,arthurmde/noosfero,evandrojr/noosfero,evandrojr/noosfero,hebertdougl/noosfero,blogoosfero/noosfero,CIRANDAS/noosfero-ecosol,danielafeitosa/noosfero,evandrojr/noosfero
Gantikan penyemakan atribut jenis dengan is_a? panggil
6da7385c952e21e9f63f19a11efdd33f5d559a68
app/views/templates/_custom_field.rhtml
app/views/templates/_custom_field.rhtml
<% case opt[2] when 'string': -%> <%= f.text_field opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "image": -%> <%= f.filemanager_image opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "src": -%> <%= f.filemanager_file opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "url": -%> <%= f.select opt[0].to_sym, [['--Select Page--'.t,'']] + SiteNode.page_url_options, :label => opt[1], :description => opt[3] %> <% when "color": -%> <%= f.color_field opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% else -%> <% f.custom_field opt[0], :description => opt[3] do -%> <%= opt[0] %> - <%= opt[2] %> <% end -%> <% end -%>
<% if opt[0].to_sym == :test '' else case opt[2] when 'string': -%> <%= raise opt.inspect %> <%= f.text_field opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "image": -%> <%= f.filemanager_image opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "src": -%> <%= f.filemanager_file opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% when "url": -%> <%= f.select opt[0].to_sym, [['--Select Page--'.t,'']] + SiteNode.page_url_options, :label => opt[1], :description => opt[3] %> <% when "color": -%> <%= f.color_field opt[0].to_sym, :label => opt[1], :description => opt[3] %> <% else -%> <% f.custom_field opt[0], :description => opt[3] do -%> <%= opt[0] %> - <%= opt[2] %> <% end -%> <% end -%> <% end -%>
Fix to remove variables named test
Fix to remove variables named test
RHTML
mit
treybean/Webiva-lis,treybean/Webiva-lis,treybean/Webiva-lis,cykod/Webiva,cykod/Webiva,cykod/Webiva,treybean/Webiva-lis,cykod/Webiva,cykod/Webiva,treybean/Webiva-lis
Betulkan untuk mengalih keluar pembolehubah bernama ujian
3f60f2b3a6a13fa52913dc4817f093b471c4ef75
lib/views/outgoing_mailer/initial_request.rhtml
lib/views/outgoing_mailer/initial_request.rhtml
<%= @outgoing_message.body.strip %> ------------------------------------------------------------------- This is a request for access to information under XXX law of the Czech Republic, or Regulation X of Law Y, which has been sent via <%= site_name %> on behalf of: <%-# !!!IF YOU CHANGE THE FORMAT OF THE BLOCK BELOW, ADD A NEW CENSOR RULE!!! -%> =================================================================== # Name: <%= @outgoing_message.info_request.user.name %> # DOB: <%= @outgoing_message.info_request.user.dob %> <%= @outgoing_message.info_request.user.address.gsub(/^/, "# Address: ") %> =================================================================== <%= render :partial => 'followup_footer' %> -------------------------------------------------------------------
Žádost o zpřístupnění informace ve smyslu zákona č. 106/1999 Sb., o svobodném přístupu k informacím. Povinný subjekt: <%= @outgoing_message.info_request.public_body.name %> Žadatel: <%-# !!!IF YOU CHANGE THE FORMAT OF THE BLOCK BELOW, ADD A NEW CENSOR RULE!!! -%> =================================================================== # Name: <%= @outgoing_message.info_request.user.name %> # DOB: <%= @outgoing_message.info_request.user.dob %> <%= @outgoing_message.info_request.user.address.gsub(/^/, "# Address: ") %> =================================================================== Žádám o následující informaci: <%= @outgoing_message.body.strip %> Informaci poskytněte elektronicky na email: <%= @outgoing_message.info_request.incoming_email %> Řádným a včasným zpřístupněním informace na základě této žádosti nebo jiným posouzením žádosti podle zákona č. 106/1999 Sb., o svobodném přístupu k informacím, beru na vědomí, že jste splnili svou povinnosti podle výše uvedeného zákona. Datum podání: <%= simple_date(Time.now) %> ------------------------------------------------------------------- <%= render :partial => 'followup_footer' %> -------------------------------------------------------------------
Add more custom text to the outgoing message view.
Add more custom text to the outgoing message view.
RHTML
mit
mysociety/ipvtheme,mysociety/ipvtheme
Tambahkan lebih banyak teks tersuai pada paparan mesej keluar.
7ad0518841c494c9a037b77f7d55e6c501a639b4
plugins/mezuro/views/content_viewer/_project_result.rhtml
plugins/mezuro/views/content_viewer/_project_result.rhtml
<% unless @content.errors[:base].nil? %> <%= @content.errors[:base] %> <% else %> <p> Choose a date to see specific project results: </p> <div id="datepicker"> <input id="datepicker_field" style="display:none"/> </div> <h4><%= _('Last Result') %></h4> <table> <tr> <td><%= _('Date') %></td> <td><%= @project_result.date %></td> </tr> <tr> <td><%= _('Load time') %></td> <td><%= @project_result.formatted_load_time %></td> </tr> <tr> <td><%= _('Analysis time') %></td> <td><%= @project_result.formatted_analysis_time %></td> </tr> </table> <script> jQuery(document).ready(function($) { $("#datepicker").datepicker({ altField: '#datepicker_field', showOn: 'button', dateFormat: "yy-mm-dd", buttonImageOnly: true, buttonImage: '/images/calendar_date_select/calendar.png', onSelect: function(dateText, inst) { reloadProjectWithDate(dateText) } }); }); </script> <% end %>
<% unless @content.errors[:base].nil? %> <%= @content.errors[:base] %> <% else %> <p> Choose a date to see specific project results: </p> <div id="datepicker" data-date="<%= @project_result.date %>"> <input id="datepicker_field" style="display:none"/> </div> <h4><%= _('Last Result') %></h4> <table> <tr> <td><%= _('Date') %></td> <td><%= @project_result.date %></td> </tr> <tr> <td><%= _('Load time') %></td> <td><%= @project_result.formatted_load_time %></td> </tr> <tr> <td><%= _('Analysis time') %></td> <td><%= @project_result.formatted_analysis_time %></td> </tr> </table> <script> jQuery(document).ready(function($) { $("#datepicker").datepicker({ altField: '#datepicker_field', showOn: 'button', dateFormat: "yy-mm-dd", buttonImageOnly: true, buttonImage: '/images/calendar_date_select/calendar.png', onSelect: function(dateText, inst) { reloadProjectWithDate(dateText) } }); var date = jQuery("#datepicker").attr('data-date').substr(0,10); $("#datepicker").datepicker( "setDate" , date ); }); </script> <% end %>
Set default date to project result date.
[Mezuro] Set default date to project result date.
RHTML
agpl-3.0
alexandreab/noosfero,rafamanzo/mezuro-travis,coletivoEITA/noosfero,larissa/noosfero,CIRANDAS/noosfero-ecosol,uniteddiversity/noosfero,evandrojr/noosferogov,samasti/noosfero,rafamanzo/mezuro-travis,marcosronaldo/noosfero,abner/noosfero,hackathon-oscs/cartografias,CIRANDAS/noosfero-ecosol,abner/noosfero,EcoAlternative/noosfero-ecosol,vfcosta/noosfero,arthurmde/noosfero,samasti/noosfero,hackathon-oscs/rede-osc,samasti/noosfero,AlessandroCaetano/noosfero,hebertdougl/noosfero,coletivoEITA/noosfero,coletivoEITA/noosfero-ecosol,abner/noosfero,larissa/noosfero,EcoAlternative/noosfero-ecosol,evandrojr/noosferogov,macartur/noosfero,pr-snas/noosfero-sgpr,rafamanzo/mezuro-travis,tallysmartins/noosfero,CIRANDAS/noosfero-ecosol,hebertdougl/noosfero,hebertdougl/noosfero,evandrojr/noosferogov,rafamanzo/mezuro-travis,coletivoEITA/noosfero,vfcosta/noosfero,hackathon-oscs/cartografias,pr-snas/noosfero-sgpr,coletivoEITA/noosfero-ecosol,tallysmartins/noosfero,marcosronaldo/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,coletivoEITA/noosfero,pr-snas/noosfero-sgpr,coletivoEITA/noosfero-ecosol,cesarfex/noosfero,hebertdougl/noosfero,marcosronaldo/noosfero,hackathon-oscs/cartografias,evandrojr/noosferogov,tallysmartins/noosfero,hackathon-oscs/cartografias,abner/noosfero,larissa/noosfero,uniteddiversity/noosfero,abner/noosfero,larissa/noosfero,tallysmartins/noosfero,rafamanzo/mezuro-travis,coletivoEITA/noosfero-ecosol,arthurmde/noosfero,coletivoEITA/noosfero,arthurmde/noosfero,evandrojr/noosfero,hackathon-oscs/rede-osc,uniteddiversity/noosfero,arthurmde/noosfero,samasti/noosfero,uniteddiversity/noosfero,marcosronaldo/noosfero,evandrojr/noosfero,vfcosta/noosfero,EcoAlternative/noosfero-ecosol,hackathon-oscs/rede-osc,tallysmartins/noosfero,blogoosfero/noosfero,EcoAlternative/noosfero-ecosol,AlessandroCaetano/noosfero,hackathon-oscs/cartografias,evandrojr/noosfero,LuisBelo/tccnoosfero,cesarfex/noosfero,cesarfex/noosfero,danielafeitosa/noosfero,CIRANDAS/noosfero-ecosol,alexandreab/noosfero,hackathon-oscs/rede-osc,danielafeitosa/noosfero,hebertdougl/noosfero,AlessandroCaetano/noosfero,larissa/noosfero,coletivoEITA/noosfero-ecosol,tallysmartins/noosfero,vfcosta/noosfero,uniteddiversity/noosfero,LuisBelo/tccnoosfero,marcosronaldo/noosfero,LuisBelo/tccnoosfero,hackathon-oscs/rede-osc,hackathon-oscs/cartografias,macartur/noosfero,alexandreab/noosfero,coletivoEITA/noosfero,evandrojr/noosferogov,vfcosta/noosfero,danielafeitosa/noosfero,blogoosfero/noosfero,danielafeitosa/noosfero,blogoosfero/noosfero,larissa/noosfero,cesarfex/noosfero,tallysmartins/noosfero,arthurmde/noosfero,coletivoEITA/noosfero,alexandreab/noosfero,EcoAlternative/noosfero-ecosol,LuisBelo/tccnoosfero,evandrojr/noosfero,cesarfex/noosfero,blogoosfero/noosfero,marcosronaldo/noosfero,hebertdougl/noosfero,alexandreab/noosfero,larissa/noosfero,uniteddiversity/noosfero,evandrojr/noosfero,LuisBelo/tccnoosfero,samasti/noosfero,blogoosfero/noosfero,hackathon-oscs/rede-osc,pr-snas/noosfero-sgpr,danielafeitosa/noosfero,evandrojr/noosferogov,AlessandroCaetano/noosfero,pr-snas/noosfero-sgpr,evandrojr/noosfero,AlessandroCaetano/noosfero,macartur/noosfero,evandrojr/noosferogov,coletivoEITA/noosfero-ecosol,CIRANDAS/noosfero-ecosol,hackathon-oscs/rede-osc,evandrojr/noosfero,vfcosta/noosfero,AlessandroCaetano/noosfero,blogoosfero/noosfero,abner/noosfero,macartur/noosfero,macartur/noosfero,LuisBelo/tccnoosfero,macartur/noosfero,AlessandroCaetano/noosfero,cesarfex/noosfero,EcoAlternative/noosfero-ecosol,alexandreab/noosfero,danielafeitosa/noosfero,samasti/noosfero,arthurmde/noosfero,cesarfex/noosfero,marcosronaldo/noosfero,pr-snas/noosfero-sgpr,uniteddiversity/noosfero,hebertdougl/noosfero,arthurmde/noosfero,hackathon-oscs/cartografias,macartur/noosfero,blogoosfero/noosfero,abner/noosfero
Tetapkan tarikh lalai kepada tarikh hasil projek.
8de6681453b6f1cbc57e7c86cd07d0258e5b25ad
app/views/problem_mailer/update_confirmation.rhtml
app/views/problem_mailer/update_confirmation.rhtml
Hi<%= raw " #{@recipient.name}" %>, Please click on the link below to confirm the update you just added to FixMyTransport: <%= raw @link %> If your email program does not let you click on this link, copy and paste it into your web browser and press return. Your update reads: <%= raw @update.text %> Yours, The FixMyTransport team
Hi<%= raw " #{@update.reporter_name}" %>, Please click on the link below to confirm the update you just added to FixMyTransport: <%= raw @link %> If your email program does not let you click on this link, copy and paste it into your web browser and press return. Your update reads: <%= raw @update.text %> Your name will be shown on the site as: <%= @update.reporter_name %> Yours, The FixMyTransport team
Use reporter name in update confirmation email. Warn that it will be public.
Use reporter name in update confirmation email. Warn that it will be public.
RHTML
agpl-3.0
mysociety/fixmytransport,mysociety/fixmytransport,mysociety/fixmytransport,mysociety/fixmytransport,mysociety/fixmytransport,mysociety/fixmytransport
Gunakan nama wartawan dalam e-mel pengesahan kemas kini. Beri amaran bahawa ia akan diketahui umum.
66e1d693320519ce3c402d7652af0af41831ade9
app/views/request_mailer/new_response.rhtml
app/views/request_mailer/new_response.rhtml
You have a new response to the <%= @info_request.law_used_full %> request '<%= @info_request.title %>' that you made to <%= @info_request.public_body.name %>. To view the response, click on the link below. <%=@url%> When you get there, let us know if the response contains any useful information. Although all responses are automatically published, we depend on you, the original requester, to evaluate them. -- the WhatDoTheyKnow team
You have a new response to the <%= @info_request.law_used_full %> request '<%= @info_request.title %>' that you made to <%= @info_request.public_body.name %>. To view the response, click on the link below. <%=@url%> When you get there, please update the status to say if the response contains any useful information. Although all responses are automatically published, we depend on you, the original requester, to evaluate them. -- the WhatDoTheyKnow team
Fix text to make it clear the status update is on the website not in the email.
Fix text to make it clear the status update is on the website not in the email.
RHTML
agpl-3.0
andreicristianpetcu/alaveteli,petterreinholdtsen/alaveteli,obshtestvo/alaveteli-bulgaria,codeforcroatia/alaveteli,datauy/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,obshtestvo/alaveteli-bulgaria,10layer/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,datauy/alaveteli,hasadna/alaveteli,nzherald/alaveteli,Br3nda/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,10layer/alaveteli,4bic/alaveteli,codeforcroatia/alaveteli,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,sarhane/alaveteli-test,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli_old,Br3nda/alaveteli,hasadna/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,10layer/alaveteli,sarhane/alaveteli-test,4bic/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,nzherald/alaveteli,hasadna/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,hasadna/alaveteli,hasadna/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,petterreinholdtsen/alaveteli,4bic/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,nzherald/alaveteli,hasadna/alaveteli
Betulkan teks untuk menjelaskan kemas kini status berada di tapak web bukan dalam e-mel.
d0d0880aadfe477db75739cf08b51443c43c7bbd
app/views/user/_change_receive_email.rhtml
app/views/user/_change_receive_email.rhtml
<% form_tag(:controller=>"user", :action=>"set_receive_email_alerts") do %> <% if @user.receive_email_alerts %> <%= _('You are currently receiving notification of new activity on your wall by email.', :wall_url => show_user_wall_path) %> <%= hidden_field_tag 'receive_email_alerts', 'false' %> <%= submit_tag _("Turn off email alerts") %> <% else %> <%= _('Items matching the following conditions are currently displayed on your wall.') %> <%= hidden_field_tag 'receive_email_alerts', 'true' %> <%= submit_tag _("Also send me alerts by email") %> <% end %> <% end %>
<% form_tag(:controller=>"user", :action=>"set_receive_email_alerts") do %> <div> <% if @user.receive_email_alerts %> <%= _('You are currently receiving notification of new activity on your wall by email.', :wall_url => show_user_wall_path) %> <%= hidden_field_tag 'receive_email_alerts', 'false' %> <%= submit_tag _("Turn off email alerts") %> <% else %> <%= _('Items matching the following conditions are currently displayed on your wall.') %> <%= hidden_field_tag 'receive_email_alerts', 'true' %> <%= submit_tag _("Also send me alerts by email") %> <% end %> </div> <% end %>
Fix "follow" toolbox HTML to be valid 4.01 transitional
Fix "follow" toolbox HTML to be valid 4.01 transitional
RHTML
agpl-3.0
4bic/alaveteli,hasadna/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,nzherald/alaveteli,hasadna/alaveteli,codeforcroatia/alaveteli,TEDICpy/QueremoSaber,petterreinholdtsen/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,4bic/alaveteli,10layer/alaveteli,obshtestvo/alaveteli-bulgaria,TEDICpy/QueremoSaber,4bic/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,sarhane/alaveteli-test,petterreinholdtsen/alaveteli,datauy/alaveteli,hasadna/alaveteli,petterreinholdtsen/alaveteli,datauy/alaveteli,nzherald/alaveteli,petterreinholdtsen/alaveteli,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,10layer/alaveteli,datauy/alaveteli,andreicristianpetcu/alaveteli,nzherald/alaveteli,Br3nda/alaveteli,Br3nda/alaveteli,4bic/alaveteli,Br3nda/alaveteli,codeforcroatia/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,Br3nda/alaveteli,TEDICpy/QueremoSaber,nzherald/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,andreicristianpetcu/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,10layer/alaveteli,obshtestvo/alaveteli-bulgaria,hasadna/alaveteli,sarhane/alaveteli-test,codeforcroatia/alaveteli
Betulkan HTML kotak alat "ikut" menjadi peralihan 4.01 yang sah
033a5987fe7d80cf5d3565c31345da42743ccd69
app/views/admin/articles/new.rhtml
app/views/admin/articles/new.rhtml
<% content_for :action_nav do -%> <div id="page-nav"></div> <% end %> <% content_for :sidebar do %> <%= render :partial => 'shared_options' %> <div class="sgroup"> <h3>Optional settings</h3> <dl class="sform"> <% fields_for :article do |f| -%> <dt><label for="article_filters">Format with: </label></dt> <dd> <select name="article[filters][]" id="article_filters"> <%= options_for_select(filter_options, (@article.filters || []).first.to_s) %> </select> <p><%= f.check_box :parse_macros %><label>Use macro filters</label></p> </dd> <dt><label for="article_permalink">Permanent link:</label></dt> <dd><%= f.text_field :permalink %></dd> <% end -%> </div> <% end %> <% content_for :form do -%> <%= start_form_tag({:action => 'create'}, {:id => 'article-form'}) %> <% end -%> <% fields_for :article do |f| -%> <%= render :partial => 'form', :object => f %> <p class="btns"> <%= submit_tag 'Save Article' %> or <%= link_to "cancel", :controller => "articles" %> </p> <% end -%>
<% content_for :action_nav do -%> <div id="page-nav"></div> <% end %> <% content_for :sidebar do %> <%= render :partial => 'shared_options' %> <div class="sgroup"> <h3>Optional settings</h3> <dl class="sform"> <% fields_for :article do |f| -%> <dt><label for="article_filters">Format with: </label></dt> <dd> <select name="article[filters][]" id="article_filters"> <%= options_for_select(filter_options, (@article.filters || []).first.to_s) %> </select> <p><%= f.check_box :parse_macros %><label>Use macro filters</label></p> </dd> <dt><label for="article_permalink">Permanent link:</label></dt> <dd><%= f.text_field :permalink %></dd> <% end -%> </dl> </div> <% end %> <% content_for :form do -%> <%= start_form_tag({:action => 'create'}, {:id => 'article-form'}) %> <% end -%> <% fields_for :article do |f| -%> <%= render :partial => 'form', :object => f %> <p class="btns"> <%= submit_tag 'Save Article' %> or <%= link_to "cancel", :controller => "articles" %> </p> <% end -%>
Fix an invalid html error
Fix an invalid html error git-svn-id: 4158f9403e16ea83fe8a6e07a45f1f3b56a747ab@1527 567b1171-46fb-0310-a4c9-b4bef9110e78
RHTML
mit
jgoggles/mephisto,mephistorb/mephisto,technoweenie/mephisto,emk/mephisto,cultofmetatron/mephisto,mephistorb/mephisto,jgoggles/mephisto,cultofmetatron/mephisto,technoweenie/mephisto,mat/mephisto,mico/Mephisto-fork,rwdaigle/old.ryandaigle.com,emk/mephisto,mat/mephisto,mico/Mephisto-fork,rwdaigle/old.ryandaigle.com
Betulkan ralat html yang tidak sah
a07cf92be4aa705b6cf92d891bb05698d2b25240
lib/views/outgoing_mailer/_followup_footer.rhtml
lib/views/outgoing_mailer/_followup_footer.rhtml
<%= _('Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:')%> <%= help_officers_url %> <%= _('If you find this service useful as an FOI officer, please ask your web manager to link to us from your organisation\'s FOI page.')%>
<%= _('Write your response as plain text. Only send PDF documents as a last resort. Government guidelines make it clear that PDF is not an acceptable format for you to use in the delivery of government information.') %> <%= help_officers_url(:anchor => "pdf") %> <%= _('Disclaimer: This message and any reply that you make will be published on the internet. Our privacy and copyright policies:')%> <%= help_officers_url %> <%= _('If you find this service useful as an FOI officer, please ask your web manager to link to us from your organisation\'s FOI page.')%>
Add first pass at wording in email footer
Add first pass at wording in email footer
RHTML
mit
openaustralia/righttoknow,openaustralia/righttoknow,openaustralia/righttoknow
Tambahkan laluan pertama pada perkataan dalam pengaki e-mel
70a7275ec69746f57f9fde33975459b80ba61b43
lib/views/general/_before_head_end.rhtml
lib/views/general/_before_head_end.rhtml
<%= stylesheet_link_tag "/alavetelitheme/stylesheets/custom" %> <link href='http://fonts.googleapis.com/css?family=Maven+Pro|Actor' rel='stylesheet' type='text/css'>
<%= stylesheet_link_tag "/alavetelitheme/stylesheets/custom" %> <link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,700|Actor' rel='stylesheet' type='text/css'>
Add bold version of Maven Pro
Add bold version of Maven Pro
RHTML
mit
openaustralia/righttoknow,openaustralia/righttoknow,openaustralia/righttoknow
Tambahkan versi berani Maven Pro
6b76cf73ea7b4ea683376813a50f592c89bd36b4
lib/views/general/_before_head_end.rhtml
lib/views/general/_before_head_end.rhtml
<%= stylesheet_link_tag "/alavetelitheme/stylesheets/custom" %> <link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,700|Actor' rel='stylesheet' type='text/css'>
<%= stylesheet_link_tag "/alavetelitheme/stylesheets/custom" %> <% if request.ssl? %> <link href='https://fonts.googleapis.com/css?family=Maven+Pro:400,700|Actor' rel='stylesheet' type='text/css'> <% else %> <link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,700|Actor' rel='stylesheet' type='text/css'> <% end %>
Use ssl connection for fonts when page is secured with ssl
Use ssl connection for fonts when page is secured with ssl
RHTML
mit
openaustralia/righttoknow,openaustralia/righttoknow,openaustralia/righttoknow
Gunakan sambungan ssl untuk fon apabila halaman dilindungi dengan ssl
bf7e8c64a9649dff11eeaa43b83137e3c0ad81fb
frontends/default/views/_list_inline_adapter.rhtml
frontends/default/views/_list_inline_adapter.rhtml
<%= update_page_tag { |page| page.replace_html active_scaffold_messages_id, :partial => 'core/messages' } %> <tr class="inline-adapter" id="<%= nested_id %>"> <td colspan="99" class="inline-adapter-cell"> <div class="<%= "#{params[:action]}-view" if params[:action] %> <%= "#{params[:associations] ? params[:associations] : params[:controller]}-view" %> view"> <a href="" class="inline-adapter-close" title="<%= as_(:close) %>"><%= as_(:close) %></a> <%= payload -%> </div> </td> </tr>
<%= update_page_tag { |page| page.replace_html active_scaffold_messages_id, :partial => 'core/messages' } %> <tr class="inline-adapter" id="<%= nested_id %>"> <td colspan="99" class="inline-adapter-cell"> <div class="<%= "#{params[:action]}-view" if params[:action] %> <%= "#{params[:associations] ? params[:associations] : params[:controller]}-view" %> view"> <a href="" class="inline-adapter-close" title="<%= as_(:close) %>"><%= as_(:close) unless active_scaffold_config.left_handed %></a> <%= payload -%> </div> </td> </tr>
Fix close on left handed.
Fix close on left handed.
RHTML
mit
nberger/active_scaffold,nberger/active_scaffold
Betulkan rapat di sebelah kiri.
86a61fe7de90aaa1187c5b1d7b390c6991e7f165
app/views/user/_signin.rhtml
app/views/user/_signin.rhtml
<div id="signin"> <% form_tag({:action => "signin"}, {:id => "signin_form"}) do %> <%= foi_error_messages_for :user_signin %> <h2>If you've used WhatDoTheyKnow before</h2> <p> <label class="form_label" for="user_signin_email">Your e-mail:</label> <%= text_field 'user_signin', 'email', { :size => 20 } %> </p> <p> <label class="form_label" for="user_signin_password">Password:</label> <%= password_field 'user_signin', 'password', { :size => 15 } %> </p> <p class="form_note"> <%= link_to "Forgotten your password?", signchange_url + "?pretoken=" + h(params[:token]) %> </p> <p class="form_note"> <%= check_box_tag 'remember_me', "1" %> <label for="remember_me">Remember me</label> </p> <div class="form_button"> <%= hidden_field_tag 'token', params[:token], { :id => 'signin_token' } %> <%= submit_tag "Sign in" %> </div> <% end %> </div>
<div id="signin"> <% form_tag({:action => "signin"}, {:id => "signin_form"}) do %> <%= foi_error_messages_for :user_signin %> <h2>If you've used WhatDoTheyKnow before</h2> <p> <label class="form_label" for="user_signin_email">Your e-mail:</label> <%= text_field 'user_signin', 'email', { :size => 20 } %> </p> <p> <label class="form_label" for="user_signin_password">Password:</label> <%= password_field 'user_signin', 'password', { :size => 15 } %> </p> <p class="form_note"> <%= link_to "Forgotten your password?", signchange_url + "?pretoken=" + h(params[:token]) %> </p> <p class="form_checkbox"> <%= check_box_tag 'remember_me', "1" %> <label for="remember_me">Remember me</label> (keeps you signed in longer; do not use on a public computer) </p> <div class="form_button"> <%= hidden_field_tag 'token', params[:token], { :id => 'signin_token' } %> <%= submit_tag "Sign in" %> </div> <% end %> </div>
Add wording to rememeber me box
Add wording to rememeber me box
RHTML
agpl-3.0
Br3nda/alaveteli,TEDICpy/QueremoSaber,sarhane/alaveteli-test,Br3nda/alaveteli,TEDICpy/QueremoSaber,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,datauy/alaveteli,TEDICpy/QueremoSaber,datauy/alaveteli,codeforcroatia/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,petterreinholdtsen/alaveteli,hasadna/alaveteli,obshtestvo/alaveteli-bulgaria,obshtestvo/alaveteli-bulgaria,petterreinholdtsen/alaveteli,hasadna/alaveteli,petterreinholdtsen/alaveteli,nzherald/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,sarhane/alaveteli-test,andreicristianpetcu/alaveteli_old,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,4bic/alaveteli,4bic/alaveteli,codeforcroatia/alaveteli,10layer/alaveteli,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,10layer/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli,petterreinholdtsen/alaveteli,nzherald/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,TEDICpy/QueremoSaber,TEDICpy/QueremoSaber,datauy/alaveteli,petterreinholdtsen/alaveteli,hasadna/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,sarhane/alaveteli-test,10layer/alaveteli,4bic/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli,andreicristianpetcu/alaveteli,obshtestvo/alaveteli-bulgaria,4bic/alaveteli,nzherald/alaveteli,codeforcroatia/alaveteli,nzherald/alaveteli
Tambah perkataan untuk mengingati saya kotak