Sha256: 5a1022163987056091ed2654699ec922d31b863646894e9f202d798ad182bbb4

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

<h3>Plugin Manager</h3>

<% jquery_path = File.expand_path(File.join(Redcar.root, %w(plugins html_view assets jquery-1.4.min.js))) %>
<script type="text/javascript" src="file://<%= jquery_path %>"></script>
<% redcar_css = File.expand_path(File.join(Redcar.root, %w(plugins html_view assets redcar.css))) %>
<link rel="stylesheet" href="file://<%= redcar_css %>" type="text/css" media="screen">

<h4>Loaded Plugins</h4>
<%= plugin_table(Redcar.plugin_manager.loaded_plugins) %>

<h4>Unloaded Plugins</h4>
<%= plugin_table(Redcar.plugin_manager.unloaded_plugins) %>

<h4>Unreadable definitions</h4>
<%= plugin_table(Redcar.plugin_manager.unreadable_definitions) %>

<h4>Plugins with Errors</h4>
<%= plugin_table(Redcar.plugin_manager.plugins_with_errors) %>

<script language="javascript">
  $("a").click(function(e) {
    e.preventDefault();
    var pluginName = $(this).parent().parent().find(".plugin-name").text();
    try {
      Controller.reloadPlugin(pluginName);
    } catch(e) {
      alert(e.message);
    }
  });
</script>


<script type="text/javascript">
var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);

document.write("Browser name: "+ browser);
document.write("<br />");
document.write("Browser version: "+ b_version);
</script>
 

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
redcar-0.3.8.4 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.8.3 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.8.2 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.8.1 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.8 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.7.1 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.7 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.6 plugins/plugin_manager_ui/views/index.html.erb
redcar-0.3.5 plugins/plugin_manager_ui/views/index.html.erb