Sha256: 9bd54814e52cd6cf3b84353429a6250db3cb637c76f91df8d49f8c0c7ec71c0b

Contents?: true

Size: 1.85 KB

Versions: 20

Compression:

Stored size: 1.85 KB

Contents

<style>
td.red {
  background-color: #FFCCCC;
}
td.yellow {
  background-color: #FFFFCC;
}
</style>


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

<div id="top">
  <img src="file://<%=watermark%>" id="watermark"/>
<h1>Plugin Manager</h1>
</div>

<div class="main">
<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) %>
<h4>Browser Details</h4>
<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("<div class='inset'>");
document.write("<p><b>Browser name:</b> "+ browser);
document.write("<br />");
document.write("<b>Browser version:</b> "+ b_version);
document.write("</p></div>");
</script>
</div>

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
redcar-0.13 plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.5dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.4dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.3dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.2dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.1dev plugins/plugin_manager_ui/views/index.html.erb
redcar-0.12.1 plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.13.0dev plugins/plugin_manager_ui/views/index.html.erb
redcar-0.12 plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.27dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.26dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.25dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.24dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.23dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.22dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.21dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.20dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.19dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.18dev plugins/plugin_manager_ui/views/index.html.erb
redcar-dev-0.12.17dev plugins/plugin_manager_ui/views/index.html.erb