mine_shaft 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ module MineShaft
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,31 @@
1
+ module MineShaft
2
+ # Provides convenient interface for pulling content from a page parsed with
3
+ # either mechanize or nokogiri.
4
+ # web page.
5
+ class WebPage
6
+ # Public: Creates new instance of WebPage class.
7
+ #
8
+ # parsed_page - A Mechanize::Page or Nokogiri::HTML::Document object.
9
+ #
10
+ # Returns new instance of WebPage class.
11
+ def initialize(parsed_page)
12
+ @page = parsed_page
13
+ end
14
+
15
+ # Public: Parses the page for a table with the specified HTML ID.
16
+ #
17
+ # table_id - The HTML table ID as a String.
18
+ #
19
+ # Examples
20
+ #
21
+ # page.find_table('my-table-id')
22
+ #
23
+ # Returns an instance of HTMLTable class if a table with the specified ID
24
+ # is found on the page.
25
+ # Raises InvalidPage if a table with the specified ID is not found.
26
+ def find_table(table_id)
27
+ table_content = @page.search("table##{table_id}").first
28
+ table_content.nil? ? raise(InvalidPage) : HTMLTable.new(table_content)
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,118 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <!-- saved from url=(0053)http://ec2-67-202-60-18.compute-1.amazonaws.com/login -->
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+
5
+ <title>Redmine</title>
6
+ <meta name="description" content="Redmine">
7
+ <meta name="keywords" content="issue,bug,tracker">
8
+ <link rel="shortcut icon" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/favicon.ico?1290314546">
9
+ <link href="./failed_login_files/application.css" media="all" rel="stylesheet" type="text/css">
10
+
11
+ <script src="./failed_login_files/prototype.js" type="text/javascript"></script>
12
+ <script src="./failed_login_files/effects.js" type="text/javascript"></script>
13
+ <script src="./failed_login_files/dragdrop.js" type="text/javascript"></script>
14
+ <script src="./failed_login_files/controls.js" type="text/javascript"></script>
15
+ <script src="./failed_login_files/application.js" type="text/javascript"></script>
16
+ <link href="./failed_login_files/jstoolbar.css" media="screen" rel="stylesheet" type="text/css">
17
+ <!--[if IE]>
18
+ <style type="text/css">
19
+ * html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
20
+ body {behavior: url(/stylesheets/csshover.htc?1290314546);}
21
+ </style>
22
+ <![endif]-->
23
+
24
+ <!-- page specific tags -->
25
+ </head>
26
+ <body class="controller-account action-login">
27
+ <div id="wrapper">
28
+ <div id="wrapper2">
29
+ <div id="top-menu">
30
+ <div id="account">
31
+ <ul><li><a href="./failed_login_files/failed_login.html" class="login">Sign in</a></li>
32
+ <li><a href="http://ec2-67-202-60-18.compute-1.amazonaws.com/account/register" class="register">Register</a></li></ul> </div>
33
+
34
+ <ul><li><a href="http://ec2-67-202-60-18.compute-1.amazonaws.com/" class="home">Home</a></li>
35
+ <li><a href="http://ec2-67-202-60-18.compute-1.amazonaws.com/projects" class="projects">Projects</a></li>
36
+ <li><a href="http://www.redmine.org/guide" class="help">Help</a></li></ul></div>
37
+
38
+ <div id="header">
39
+ <div id="quick-search">
40
+ <form action="http://ec2-67-202-60-18.compute-1.amazonaws.com/search" method="get">
41
+
42
+ <a href="http://ec2-67-202-60-18.compute-1.amazonaws.com/search" accesskey="4">Search</a>:
43
+ <input accesskey="f" class="small" id="q" name="q" size="20" type="text">
44
+ </form>
45
+
46
+ </div>
47
+
48
+ <h1>Redmine</h1>
49
+
50
+
51
+ </div>
52
+
53
+ <div class="nosidebar" id="main">
54
+ <div id="sidebar">
55
+
56
+
57
+ </div>
58
+
59
+ <div id="content">
60
+ <div class="flash error">Invalid user or password</div>
61
+
62
+ <div id="login-form">
63
+ <form action="/login" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="MJ1KEMqWApfwtlEuXrniRA/rvfYsdT0OJ5X3aFb5Y2c="></div>
64
+ <input id="back_url" name="back_url" type="hidden" value="http%3A%2F%2Fec2-67-202-60-18.compute-1.amazonaws.com%2F">
65
+ <table>
66
+ <tbody><tr>
67
+ <td align="right"><label for="username">Login:</label></td>
68
+ <td align="left"><input id="username" name="username" tabindex="1" type="text"></td>
69
+ </tr>
70
+ <tr>
71
+ <td align="right"><label for="password">Password:</label></td>
72
+ <td align="left"><input id="password" name="password" tabindex="2" type="password"></td>
73
+ </tr>
74
+
75
+ <tr>
76
+ <td></td>
77
+ <td align="left">
78
+
79
+ </td>
80
+ </tr>
81
+ <tr>
82
+ <td align="left">
83
+
84
+ <a href="http://ec2-67-202-60-18.compute-1.amazonaws.com/account/lost_password">Lost password</a>
85
+
86
+ </td>
87
+ <td align="right">
88
+ <input type="submit" name="login" value="Login »" tabindex="5">
89
+ </td>
90
+ </tr>
91
+ </tbody></table>
92
+ <script type="text/javascript">
93
+ //<![CDATA[
94
+ Form.Element.focus('username');
95
+ //]]>
96
+ </script>
97
+ </form>
98
+ </div>
99
+
100
+
101
+
102
+ <div style="clear:both;"></div>
103
+ </div>
104
+ </div>
105
+
106
+ <div id="ajax-indicator" style="display:none;"><span>Loading...</span></div>
107
+
108
+ <div id="footer">
109
+ <div class="bgl"><div class="bgr">
110
+ Powered by <a href="http://www.redmine.org/">Redmine</a> © 2006-2010 Jean-Philippe Lang
111
+ </div></div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+
117
+
118
+ </body></html>
@@ -0,0 +1,3 @@
1
+
2
+ <!-- saved from url=(0048)http://ec2-67-202-60-18.compute-1.amazonaws.com/ -->
3
+ <html><body><div class="webkit-line-gutter-backdrop"></div><table><tbody><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-doctype">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;html <span class="webkit-html-attribute-name">xmlns</span>="<span class="webkit-html-attribute-value">http://www.w3.org/1999/xhtml</span>" <span class="webkit-html-attribute-name">xml:lang</span>="<span class="webkit-html-attribute-value">en</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;head&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;meta <span class="webkit-html-attribute-name">http-equiv</span>="<span class="webkit-html-attribute-value">content-type</span>" <span class="webkit-html-attribute-name">content</span>="<span class="webkit-html-attribute-value">text/html; charset=utf-8</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;title&gt;</span>Redmine&lt;/title&gt;<span class="webkit-html-tag"></span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;meta <span class="webkit-html-attribute-name">name</span>="<span class="webkit-html-attribute-value">description</span>" <span class="webkit-html-attribute-name">content</span>="<span class="webkit-html-attribute-value">Redmine</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;meta <span class="webkit-html-attribute-name">name</span>="<span class="webkit-html-attribute-value">keywords</span>" <span class="webkit-html-attribute-name">content</span>="<span class="webkit-html-attribute-value">issue,bug,tracker</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">rel</span>='<span class="webkit-html-attribute-value">shortcut icon</span>' <span class="webkit-html-attribute-name">href</span>='<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/favicon.ico?1290314546">/favicon.ico?1290314546</a>' /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/stylesheets/application.css?1290314546">/stylesheets/application.css?1290314546</a>" <span class="webkit-html-attribute-name">media</span>="<span class="webkit-html-attribute-value">all</span>" <span class="webkit-html-attribute-name">rel</span>="<span class="webkit-html-attribute-value">stylesheet</span>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/css</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/javascripts/prototype.js?1290314546">/javascripts/prototype.js?1290314546</a>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/javascript</span>"&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/javascripts/effects.js?1290314546">/javascripts/effects.js?1290314546</a>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/javascript</span>"&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/javascripts/dragdrop.js?1290314546">/javascripts/dragdrop.js?1290314546</a>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/javascript</span>"&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/javascripts/controls.js?1290314546">/javascripts/controls.js?1290314546</a>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/javascript</span>"&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">src</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/javascripts/application.js?1290314546">/javascripts/application.js?1290314546</a>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/javascript</span>"&gt;</span><span class="webkit-html-tag">&lt;/script&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/stylesheets/jstoolbar.css?1290314546">/stylesheets/jstoolbar.css?1290314546</a>" <span class="webkit-html-attribute-name">media</span>="<span class="webkit-html-attribute-value">screen</span>" <span class="webkit-html-attribute-name">rel</span>="<span class="webkit-html-attribute-value">stylesheet</span>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text/css</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment">&lt;!--[if IE]&gt;</span></td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment"> &lt;style type="text/css"&gt;</span></td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment"> * html body{ width: expression( document.documentElement.clientWidth &lt; 900 ? '900px' : '100%' ); }</span></td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment"> body {behavior: url(/stylesheets/csshover.htc?1290314546);}</span></td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment"> &lt;/style&gt;</span></td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment">&lt;![endif]--&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-comment">&lt;!-- page specific tags --&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/news.atom?key=f025091ffc169a8794d07bc1cc4f1139b5e714b1">http://ec2-67-202-60-18.compute-1.amazonaws.com/news.atom?key=f025091ffc169a8794d07bc1cc4f1139b5e714b1</a>" <span class="webkit-html-attribute-name">rel</span>="<span class="webkit-html-attribute-value">alternate</span>" <span class="webkit-html-attribute-name">title</span>="<span class="webkit-html-attribute-value">Redmine: Latest news</span>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">application/atom+xml</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-resource-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/activity.atom?key=f025091ffc169a8794d07bc1cc4f1139b5e714b1">http://ec2-67-202-60-18.compute-1.amazonaws.com/activity.atom?key=f025091ffc169a8794d07bc1cc4f1139b5e714b1</a>" <span class="webkit-html-attribute-name">rel</span>="<span class="webkit-html-attribute-value">alternate</span>" <span class="webkit-html-attribute-name">title</span>="<span class="webkit-html-attribute-value">Redmine: Activity</span>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">application/atom+xml</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/head&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;body <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">controller-welcome action-index</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">wrapper</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">wrapper2</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">top-menu</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">account</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;ul&gt;</span><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/my/account">/my/account</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">my-account</span>"&gt;</span>My account<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/logout">/logout</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">logout</span>"&gt;</span>Sign out<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span><span class="webkit-html-tag">&lt;/ul&gt;</span> <span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">loggedas</span>"&gt;</span>Logged in as <span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/users/1">/users/1</a>"&gt;</span>admin<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;ul&gt;</span><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="./home_page_files/home_page.html">/</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">home</span>"&gt;</span>Home<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/my/page">/my/page</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">my-page</span>"&gt;</span>My page<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/projects">/projects</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">projects</span>"&gt;</span>Projects<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/admin">/admin</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">administration</span>"&gt;</span>Administration<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;li&gt;</span><span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://www.redmine.org/guide">http://www.redmine.org/guide</a>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">help</span>"&gt;</span>Help<span class="webkit-html-tag">&lt;/a&gt;</span><span class="webkit-html-tag">&lt;/li&gt;</span><span class="webkit-html-tag">&lt;/ul&gt;</span><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">header</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">quick-search</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;form <span class="webkit-html-attribute-name">action</span>="<span class="webkit-html-attribute-value">/search</span>" <span class="webkit-html-attribute-name">method</span>="<span class="webkit-html-attribute-value">get</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/search">/search</a>" <span class="webkit-html-attribute-name">accesskey</span>="<span class="webkit-html-attribute-value">4</span>"&gt;</span>Search<span class="webkit-html-tag">&lt;/a&gt;</span>:</td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;input <span class="webkit-html-attribute-name">accesskey</span>="<span class="webkit-html-attribute-value">f</span>" <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">small</span>" <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">q</span>" <span class="webkit-html-attribute-name">name</span>="<span class="webkit-html-attribute-value">q</span>" <span class="webkit-html-attribute-name">size</span>="<span class="webkit-html-attribute-value">20</span>" <span class="webkit-html-attribute-name">type</span>="<span class="webkit-html-attribute-value">text</span>" /&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/form&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;h1&gt;</span>Redmine<span class="webkit-html-tag">&lt;/h1&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">nosidebar</span>" <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">main</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">sidebar</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">content</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;h2&gt;</span>Home<span class="webkit-html-tag">&lt;/h2&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">splitcontentleft</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">splitcontentright</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">projects box</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;h3&gt;</span>Latest projects<span class="webkit-html-tag">&lt;/h3&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;ul&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://ec2-67-202-60-18.compute-1.amazonaws.com/projects/test">/projects/test</a>"&gt;</span>test<span class="webkit-html-tag">&lt;/a&gt;</span> (11/21/2010 07:41 am)</td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/li&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/ul&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">style</span>="<span class="webkit-html-attribute-value">clear:both;</span>"&gt;</span><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">ajax-indicator</span>" <span class="webkit-html-attribute-name">style</span>="<span class="webkit-html-attribute-value">display:none;</span>"&gt;</span><span class="webkit-html-tag">&lt;span&gt;</span>Loading...<span class="webkit-html-tag">&lt;/span&gt;</span><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">id</span>="<span class="webkit-html-attribute-value">footer</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">bgl</span>"&gt;</span><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">class</span>="<span class="webkit-html-attribute-value">bgr</span>"&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> Powered by <span class="webkit-html-tag">&lt;a <span class="webkit-html-attribute-name">href</span>="<a class="webkit-html-attribute-value webkit-html-external-link" target="_blank" href="http://www.redmine.org/">http://www.redmine.org/</a>"&gt;</span>Redmine<span class="webkit-html-tag">&lt;/a&gt;</span> &amp;copy; 2006-2010 Jean-Philippe Lang</td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> <span class="webkit-html-tag">&lt;/div&gt;</span><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/body&gt;</span> </td></tr><tr><td class="webkit-line-number"></td><td class="webkit-line-content"><span class="webkit-html-tag">&lt;/html&gt;</span> </td></tr></tbody></table></body></html>
@@ -0,0 +1,117 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3
+ <head>
4
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
+ <title>Redmine</title>
6
+ <meta name="description" content="Redmine" />
7
+ <meta name="keywords" content="issue,bug,tracker" />
8
+ <link rel='shortcut icon' href='/favicon.ico?1290314546' />
9
+ <link href="/stylesheets/application.css?1290314546" media="all" rel="stylesheet" type="text/css" />
10
+
11
+ <script src="/javascripts/prototype.js?1290314546" type="text/javascript"></script>
12
+ <script src="/javascripts/effects.js?1290314546" type="text/javascript"></script>
13
+ <script src="/javascripts/dragdrop.js?1290314546" type="text/javascript"></script>
14
+ <script src="/javascripts/controls.js?1290314546" type="text/javascript"></script>
15
+ <script src="/javascripts/application.js?1290314546" type="text/javascript"></script>
16
+ <link href="/stylesheets/jstoolbar.css?1290314546" media="screen" rel="stylesheet" type="text/css" />
17
+ <!--[if IE]>
18
+ <style type="text/css">
19
+ * html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
20
+ body {behavior: url(/stylesheets/csshover.htc?1290314546);}
21
+ </style>
22
+ <![endif]-->
23
+
24
+ <!-- page specific tags -->
25
+ </head>
26
+ <body class="controller-account action-login">
27
+ <div id="wrapper">
28
+ <div id="wrapper2">
29
+ <div id="top-menu">
30
+ <div id="account">
31
+ <ul><li><a href="/login" class="login">Sign in</a></li>
32
+ <li><a href="/account/register" class="register">Register</a></li></ul> </div>
33
+
34
+ <ul><li><a href="/" class="home">Home</a></li>
35
+ <li><a href="/projects" class="projects">Projects</a></li>
36
+ <li><a href="http://www.redmine.org/guide" class="help">Help</a></li></ul></div>
37
+
38
+ <div id="header">
39
+ <div id="quick-search">
40
+ <form action="/search" method="get">
41
+
42
+ <a href="/search" accesskey="4">Search</a>:
43
+ <input accesskey="f" class="small" id="q" name="q" size="20" type="text" />
44
+ </form>
45
+
46
+ </div>
47
+
48
+ <h1>Redmine</h1>
49
+
50
+
51
+ </div>
52
+
53
+ <div class="nosidebar" id="main">
54
+ <div id="sidebar">
55
+
56
+
57
+ </div>
58
+
59
+ <div id="content">
60
+
61
+
62
+ <div id="login-form">
63
+ <form action="/login" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="G/aGEP4oI6NAlbL6no2UEwOI9v0hXA89UoRjLNvdJd0=" /></div>
64
+
65
+ <table>
66
+ <tr>
67
+ <td align="right"><label for="username">Login:</label></td>
68
+ <td align="left"><input id="username" name="username" tabindex="1" type="text" /></td>
69
+ </tr>
70
+ <tr>
71
+ <td align="right"><label for="password">Password:</label></td>
72
+ <td align="left"><input id="password" name="password" tabindex="2" type="password" /></td>
73
+ </tr>
74
+
75
+ <tr>
76
+ <td></td>
77
+ <td align="left">
78
+
79
+ </td>
80
+ </tr>
81
+ <tr>
82
+ <td align="left">
83
+
84
+ <a href="/account/lost_password">Lost password</a>
85
+
86
+ </td>
87
+ <td align="right">
88
+ <input type="submit" name="login" value="Login &#187;" tabindex="5"/>
89
+ </td>
90
+ </tr>
91
+ </table>
92
+ <script type="text/javascript">
93
+ //<![CDATA[
94
+ Form.Element.focus('username');
95
+ //]]>
96
+ </script>
97
+ </form>
98
+ </div>
99
+
100
+
101
+
102
+ <div style="clear:both;"></div>
103
+ </div>
104
+ </div>
105
+
106
+ <div id="ajax-indicator" style="display:none;"><span>Loading...</span></div>
107
+
108
+ <div id="footer">
109
+ <div class="bgl"><div class="bgr">
110
+ Powered by <a href="http://www.redmine.org/">Redmine</a> &copy; 2006-2010 Jean-Philippe Lang
111
+ </div></div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ </body>
117
+ </html>
@@ -0,0 +1,212 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <!-- saved from url=(0059)http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data -->
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+
5
+ <title>End User Portal - Seed Data - Speech Banana, Inc.</title>
6
+ <meta name="description" content="Redmine">
7
+ <meta name="keywords" content="issue,bug,tracker">
8
+ <link rel="shortcut icon" href="http://redmine.speechbanana.com/favicon.ico?1283531037">
9
+ <link href="./multiple_tables_files/application.css" media="all" rel="stylesheet" type="text/css">
10
+
11
+ <script src="./multiple_tables_files/prototype.js" type="text/javascript"></script>
12
+ <script src="./multiple_tables_files/effects.js" type="text/javascript"></script>
13
+ <script src="./multiple_tables_files/dragdrop.js" type="text/javascript"></script>
14
+ <script src="./multiple_tables_files/controls.js" type="text/javascript"></script>
15
+ <script src="./multiple_tables_files/application.js" type="text/javascript"></script>
16
+ <link href="./multiple_tables_files/jstoolbar.css" media="screen" rel="stylesheet" type="text/css">
17
+ <!--[if IE]>
18
+ <style type="text/css">
19
+ * html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
20
+ body {behavior: url(/stylesheets/csshover.htc?1283531037);}
21
+ </style>
22
+ <![endif]-->
23
+
24
+ <!-- page specific tags -->
25
+
26
+ <link href="./multiple_tables_files/scm.css" media="screen" rel="stylesheet" type="text/css">
27
+ </head>
28
+ <body class="controller-wiki action-index">
29
+ <div id="wrapper">
30
+ <div id="wrapper2">
31
+ <div id="top-menu">
32
+ <div id="account">
33
+ <ul><li><a href="http://redmine.speechbanana.com/my/account" class="my-account">My account</a></li>
34
+ <li><a href="http://redmine.speechbanana.com/logout" class="logout">Sign out</a></li></ul> </div>
35
+ <div id="loggedas">Logged in as <a href="http://redmine.speechbanana.com/users/3">kerstent</a></div>
36
+ <ul><li><a href="http://redmine.speechbanana.com/" class="home">Home</a></li>
37
+ <li><a href="http://redmine.speechbanana.com/my/page" class="my-page">My page</a></li>
38
+ <li><a href="http://redmine.speechbanana.com/projects" class="projects">Projects</a></li>
39
+ <li><a href="http://redmine.speechbanana.com/admin" class="administration">Administration</a></li>
40
+ <li><a href="http://www.redmine.org/guide" class="help">Help</a></li></ul></div>
41
+
42
+ <div id="header">
43
+ <div id="quick-search">
44
+ <form action="http://redmine.speechbanana.com/search/index/eup" method="get">
45
+ <input name="wiki_pages" type="hidden" value="1">
46
+ <a href="http://redmine.speechbanana.com/search/index/eup" accesskey="4">Search</a>:
47
+ <input accesskey="f" class="small" id="q" name="q" size="20" type="text">
48
+ </form>
49
+ <select onchange="if (this.value != &#39;&#39;) { window.location = this.value; }"><option value="">Jump to a project...</option><option value="" disabled="disabled">---</option><option value="/projects/arlis?jump=wiki">Arlis</option><option value="/projects/crtools?jump=wiki">CRTools</option><option value="/projects/hhm?jump=wiki">Hearing Healthcare Mngmnt SFA</option><option selected="selected" value="/projects/eup?jump=wiki">&nbsp;&nbsp;» End User Portal</option><option value="/projects/libtdt?jump=wiki">LibTdt</option><option value="/projects/real-time-simulation?jump=wiki">Real-Time Simulation Platform</option><option value="/projects/research?jump=wiki">Research Organization</option></select>
50
+ </div>
51
+
52
+ <h1><a href="http://redmine.speechbanana.com/projects/hhm?jump=wiki" class="root">Hearing Healthcare Mngmnt SFA</a> » End User Portal</h1>
53
+
54
+
55
+ <div id="main-menu">
56
+ <ul><li><a href="http://redmine.speechbanana.com/projects/eup" class="overview">Overview</a></li>
57
+ <li><a href="http://redmine.speechbanana.com/projects/eup/activity" class="activity">Activity</a></li>
58
+ <li><a href="http://redmine.speechbanana.com/projects/eup/roadmap" class="roadmap">Roadmap</a></li>
59
+ <li><a href="http://redmine.speechbanana.com/projects/eup/issues" class="issues">Issues</a></li>
60
+ <li><a href="http://redmine.speechbanana.com/projects/eup/issues/new" accesskey="7" class="new-issue">New issue</a></li>
61
+ <li><a href="http://redmine.speechbanana.com/projects/eup/issues/gantt" class="gantt">Gantt</a></li>
62
+ <li><a href="http://redmine.speechbanana.com/projects/eup/news" class="news">News</a></li>
63
+ <li><a href="http://redmine.speechbanana.com/projects/eup/wiki" class="wiki selected">Wiki</a></li>
64
+ <li><a href="http://redmine.speechbanana.com/projects/eup/settings" class="settings">Settings</a></li></ul>
65
+ </div>
66
+
67
+ </div>
68
+
69
+ <div class="" id="main">
70
+ <div id="sidebar">
71
+
72
+
73
+ <h3>Wiki</h3>
74
+
75
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki">Start page</a><br>
76
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Page_index">Index by title</a><br>
77
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Date_index">Index by date</a><br>
78
+
79
+
80
+
81
+ </div>
82
+
83
+ <div id="content">
84
+
85
+ <div class="contextual">
86
+
87
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data/edit" accesskey="e" class="icon icon-edit">Edit</a>
88
+ <span id="watcher"><a class="icon icon-fav-off" href="http://redmine.speechbanana.com/watchers/watch?object_id=27&object_type=wiki_page&replace=watcher" onclick="new Ajax.Request(&#39;/watchers/watch?object_id=27&amp;object_type=wiki_page&amp;replace=watcher&#39;, {asynchronous:true, evalScripts:true, parameters:&#39;authenticity_token=&#39; + encodeURIComponent(&#39;pmsWLp1sw0WmNN7Hmjsti61xcKF8RjucYJEmr3Raypk=&#39;)}); return false;">Watch</a></span>
89
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data/protect?protected=1" class="icon icon-lock" onclick="var f = document.createElement(&#39;form&#39;); f.style.display = &#39;none&#39;; this.parentNode.appendChild(f); f.method = &#39;POST&#39;; f.action = this.href;var s = document.createElement(&#39;input&#39;); s.setAttribute(&#39;type&#39;, &#39;hidden&#39;); s.setAttribute(&#39;name&#39;, &#39;authenticity_token&#39;); s.setAttribute(&#39;value&#39;, &#39;pmsWLp1sw0WmNN7Hmjsti61xcKF8RjucYJEmr3Raypk=&#39;); f.appendChild(s);f.submit();return false;">Lock</a>
90
+
91
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data/rename" class="icon icon-move">Rename</a>
92
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data/destroy" class="icon icon-del" onclick="if (confirm(&#39;Are you sure ?&#39;)) { var f = document.createElement(&#39;form&#39;); f.style.display = &#39;none&#39;; this.parentNode.appendChild(f); f.method = &#39;POST&#39;; f.action = this.href;var s = document.createElement(&#39;input&#39;); s.setAttribute(&#39;type&#39;, &#39;hidden&#39;); s.setAttribute(&#39;name&#39;, &#39;authenticity_token&#39;); s.setAttribute(&#39;value&#39;, &#39;pmsWLp1sw0WmNN7Hmjsti61xcKF8RjucYJEmr3Raypk=&#39;); f.appendChild(s);f.submit(); };return false;">Delete</a>
93
+
94
+
95
+ <a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data/history" class="icon icon-history">History</a>
96
+ </div>
97
+
98
+
99
+
100
+
101
+
102
+ <div class="wiki">
103
+ <h1 id="Seed-Data">Seed Data<a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data#Seed-Data" class="wiki-anchor">¶</a></h1>
104
+
105
+
106
+ <h2 id="Programs">Programs<a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data#Programs" class="wiki-anchor">¶</a></h2>
107
+
108
+
109
+ <p>When filling this out, please <b>do not</b> edit existing names. If you need to edit the name, please talk with Roy or Tom before doing so in order to avoid potential conflicts when we are loading the data. Also, ignore the "Raw_Environments", imagine it is just "environments this program is most-suited for". Also, feel free to put technically duplicate programs that just have different brand names in separate rows (for now). Let Tom know if you have any issues or questions.</p>
110
+
111
+
112
+ <table id="programs">
113
+ <tbody><tr>
114
+ <td>Name</td>
115
+ <td>Brand</td>
116
+ <td>Description</td>
117
+ <td>Raw_Environments</td>
118
+ </tr>
119
+ <tr>
120
+ <td>Noise</td>
121
+ <td>Resound</td>
122
+ <td>The description of noise program here</td>
123
+ <td>coffee shop, restaurant, bar</td>
124
+ </tr>
125
+ <tr>
126
+ <td>Party</td>
127
+ <td>Beltone</td>
128
+ <td>The description of the party program goes here</td>
129
+ <td>cocktail parties, the colosseum, other fun places</td>
130
+ </tr>
131
+ </tbody></table>
132
+
133
+
134
+
135
+
136
+ <h2 id="Devices">Devices<a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data#Devices" class="wiki-anchor">¶</a></h2>
137
+
138
+
139
+ <p>I know this table is not perfect, but let's use it as a start for gathering a few pieces of information about products. Feel free to add columns or talk to Tom if you have questions about this...we may need to change the column names &amp; organization entirely. This is as much about "encouraging" discussion about how to organize this data as it is about the actual data at this point...</p>
140
+
141
+
142
+ <table id="devices">
143
+ <tbody><tr>
144
+ <td>Brand</td>
145
+ <td>Name</td>
146
+ <td>Battery_Size</td>
147
+ <td>Form_Factor</td>
148
+ <td>Picture</td>
149
+ </tr>
150
+ <tr>
151
+ <td>Resound</td>
152
+ <td>Alera 7000</td>
153
+ <td>312</td>
154
+ <td>BTE</td>
155
+ <td><a class="external" href="http://www.resound.com/SiteCollectionImages/hearing-aids/Families/Family_Alera60.png">http://www.resound.com/SiteCollectionImages/hearing-aids/Families/Family_Alera60.png</a></td>
156
+ </tr>
157
+ </tbody></table>
158
+ </div>
159
+
160
+
161
+
162
+
163
+
164
+ <div id="wiki_add_attachment">
165
+ <p><a href="./multiple_tables_files/multiple_tables.html" id="attach_files_link" onclick="Element.show(&#39;add_attachment_form&#39;); Element.hide(this); Element.scrollTo(&#39;add_attachment_form&#39;); return false;">New file</a></p>
166
+ <form action="http://redmine.speechbanana.com/wiki/eup/Seed_Data/add_attachment" enctype="multipart/form-data" id="add_attachment_form" method="post" style="display:none;"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="pmsWLp1sw0WmNN7Hmjsti61xcKF8RjucYJEmr3Raypk="></div>
167
+ <div class="box">
168
+ <p><span id="attachments_fields">
169
+ <input name="attachments[1][file]" size="30" type="file"><label class="inline"><span id="attachment_description_label_content">Optional description</span><input name="attachments[1][description]" size="60" type="text" value="">
170
+ </label>
171
+ </span>
172
+ <br>
173
+ <small><a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data#" onclick="addFileField(); return false;">Add another file</a>
174
+ (Maximum size: 5 MB)
175
+ </small>
176
+ </p>
177
+ </div>
178
+ <input name="commit" type="submit" value="Add">
179
+ <a href="./multiple_tables_files/multiple_tables.html" onclick="Element.hide(&#39;add_attachment_form&#39;); Element.show(&#39;attach_files_link&#39;); return false;">Cancel</a>
180
+ </form>
181
+ </div>
182
+
183
+
184
+ <p class="other-formats">Also available in:
185
+ <span><a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data?format=html&version=16" class="html" rel="nofollow">HTML</a></span>
186
+ <span><a href="http://redmine.speechbanana.com/projects/eup/wiki/Seed_Data?format=txt&version=16" class="txt" rel="nofollow">TXT</a></span>
187
+ </p>
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+ <div style="clear:both;"></div>
197
+ </div>
198
+ </div>
199
+
200
+ <div id="ajax-indicator" style="display:none;"><span>Loading...</span></div>
201
+
202
+ <div id="footer">
203
+ <div class="bgl"><div class="bgr">
204
+ Powered by <a href="http://www.redmine.org/">Redmine</a> © 2006-2010 Jean-Philippe Lang
205
+ </div></div>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+
211
+
212
+ </body></html>