muck-comments 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. data/.gitignore +4 -0
  2. data/MIT-LICENSE +1 -1
  3. data/Rakefile +27 -11
  4. data/VERSION +1 -1
  5. data/locales/ar.yml +2 -0
  6. data/locales/bg.yml +3 -1
  7. data/locales/ca.yml +2 -0
  8. data/locales/cs.yml +2 -0
  9. data/locales/da.yml +2 -0
  10. data/locales/de.yml +2 -0
  11. data/locales/el.yml +2 -0
  12. data/locales/en.yml +3 -1
  13. data/locales/es.yml +2 -0
  14. data/locales/et.yml +12 -0
  15. data/locales/fa.yml +12 -0
  16. data/locales/fi.yml +12 -0
  17. data/locales/fr.yml +2 -0
  18. data/locales/gl.yml +12 -0
  19. data/locales/hi.yml +12 -0
  20. data/locales/hr.yml +12 -0
  21. data/locales/hu.yml +12 -0
  22. data/locales/id.yml +12 -0
  23. data/locales/it.yml +3 -1
  24. data/locales/iw.yml +2 -0
  25. data/locales/ja.yml +3 -1
  26. data/locales/ko.yml +2 -0
  27. data/locales/lt.yml +2 -0
  28. data/locales/lv.yml +2 -0
  29. data/locales/mt.yml +12 -0
  30. data/locales/nl.yml +2 -0
  31. data/locales/no.yml +2 -0
  32. data/locales/pl.yml +2 -0
  33. data/locales/pt-PT.yml +12 -0
  34. data/locales/ro.yml +2 -0
  35. data/locales/ru.yml +2 -0
  36. data/locales/sk.yml +2 -0
  37. data/locales/sl.yml +2 -0
  38. data/locales/sq.yml +12 -0
  39. data/locales/sr.yml +2 -0
  40. data/locales/sv.yml +2 -0
  41. data/locales/th.yml +12 -0
  42. data/locales/tl.yml +2 -0
  43. data/locales/tr.yml +12 -0
  44. data/locales/uk.yml +2 -0
  45. data/locales/vi.yml +2 -0
  46. data/locales/zh-CN.yml +2 -0
  47. data/locales/zh-TW.yml +2 -0
  48. data/locales/zh.yml +2 -0
  49. data/muck-comments.gemspec +17 -78
  50. metadata +16 -28
  51. data/pkg/muck-comments-0.1.2.gem +0 -0
  52. data/pkg/muck-comments-0.1.3.gem +0 -0
  53. data/rdoc/classes/ActionController.html +0 -107
  54. data/rdoc/classes/ActionController/Routing.html +0 -107
  55. data/rdoc/classes/ActionController/Routing/RouteSet.html +0 -148
  56. data/rdoc/classes/ActiveRecord.html +0 -105
  57. data/rdoc/classes/ActiveRecord/Acts/MuckComment/ClassMethods.html +0 -160
  58. data/rdoc/classes/ActiveRecord/Acts/MuckComment/InstanceMethods.html +0 -178
  59. data/rdoc/classes/ActiveRecord/Acts/MuckComment/SingletonMethods.html +0 -212
  60. data/rdoc/classes/Acts/CommentableWithThreading/ClassMethods.html +0 -149
  61. data/rdoc/classes/Acts/CommentableWithThreading/InstanceMethods.html +0 -234
  62. data/rdoc/classes/Acts/CommentableWithThreading/SingletonMethods.html +0 -189
  63. data/rdoc/classes/MuckComments.html +0 -111
  64. data/rdoc/classes/MuckComments/Tasks.html +0 -146
  65. data/rdoc/created.rid +0 -1
  66. data/rdoc/files/README_rdoc.html +0 -182
  67. data/rdoc/files/lib/active_record/acts/muck_comment_rb.html +0 -101
  68. data/rdoc/files/lib/acts_as_commentable_with_threading_rb.html +0 -107
  69. data/rdoc/files/lib/muck_comments/initialize_routes_rb.html +0 -101
  70. data/rdoc/files/lib/muck_comments/tasks_rb.html +0 -110
  71. data/rdoc/files/lib/muck_comments_rb.html +0 -115
  72. data/rdoc/fr_class_index.html +0 -38
  73. data/rdoc/fr_file_index.html +0 -32
  74. data/rdoc/fr_method_index.html +0 -41
  75. data/rdoc/index.html +0 -24
  76. data/rdoc/rdoc-style.css +0 -208
@@ -1,101 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>File: initialize_routes.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="fileHeader">
50
- <h1>initialize_routes.rb</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>lib/muck_comments/initialize_routes.rb
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Sat Jun 13 12:36:26 -0600 2009</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
-
72
-
73
- </div>
74
-
75
-
76
- </div>
77
-
78
-
79
- <!-- if includes -->
80
-
81
- <div id="section">
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
- <!-- if method_list -->
91
-
92
-
93
- </div>
94
-
95
-
96
- <div id="validator-badges">
97
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
98
- </div>
99
-
100
- </body>
101
- </html>
@@ -1,110 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>File: tasks.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="fileHeader">
50
- <h1>tasks.rb</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>lib/muck_comments/tasks.rb
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Sat Jun 13 17:16:34 -0600 2009</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
-
72
- <div id="requires-list">
73
- <h3 class="section-bar">Required files</h3>
74
-
75
- <div class="name-list">
76
- rake&nbsp;&nbsp;
77
- rake/tasklib&nbsp;&nbsp;
78
- fileutils&nbsp;&nbsp;
79
- </div>
80
- </div>
81
-
82
- </div>
83
-
84
-
85
- </div>
86
-
87
-
88
- <!-- if includes -->
89
-
90
- <div id="section">
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
- <!-- if method_list -->
100
-
101
-
102
- </div>
103
-
104
-
105
- <div id="validator-badges">
106
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
107
- </div>
108
-
109
- </body>
110
- </html>
@@ -1,115 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>File: muck_comments.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="fileHeader">
50
- <h1>muck_comments.rb</h1>
51
- <table class="header-table">
52
- <tr class="top-aligned-row">
53
- <td><strong>Path:</strong></td>
54
- <td>lib/muck_comments.rb
55
- </td>
56
- </tr>
57
- <tr class="top-aligned-row">
58
- <td><strong>Last Update:</strong></td>
59
- <td>Sat Jun 13 16:24:11 -0600 2009</td>
60
- </tr>
61
- </table>
62
- </div>
63
- <!-- banner header -->
64
-
65
- <div id="bodyContent">
66
-
67
-
68
-
69
- <div id="contextContent">
70
-
71
-
72
- <div id="requires-list">
73
- <h3 class="section-bar">Required files</h3>
74
-
75
- <div class="name-list">
76
- acts_as_commentable_with_threading&nbsp;&nbsp;
77
- </div>
78
- </div>
79
-
80
- </div>
81
-
82
-
83
- </div>
84
-
85
-
86
- <!-- if includes -->
87
- <div id="includes">
88
- <h3 class="section-bar">Included Modules</h3>
89
-
90
- <div id="includes-list">
91
- <span class="include-name">ActiveRecord::Acts::MuckComment</span>
92
- </div>
93
- </div>
94
-
95
- <div id="section">
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
- <!-- if method_list -->
105
-
106
-
107
- </div>
108
-
109
-
110
- <div id="validator-badges">
111
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
112
- </div>
113
-
114
- </body>
115
- </html>
@@ -1,38 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Classes
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Classes</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Classes</h1>
22
- <div id="index-entries">
23
- <a href="classes/ActionController.html">ActionController</a><br />
24
- <a href="classes/ActionController/Routing.html">ActionController::Routing</a><br />
25
- <a href="classes/ActionController/Routing/RouteSet.html">ActionController::Routing::RouteSet</a><br />
26
- <a href="classes/ActiveRecord.html">ActiveRecord</a><br />
27
- <a href="classes/ActiveRecord/Acts/MuckComment/ClassMethods.html">ActiveRecord::Acts::MuckComment::ClassMethods</a><br />
28
- <a href="classes/ActiveRecord/Acts/MuckComment/InstanceMethods.html">ActiveRecord::Acts::MuckComment::InstanceMethods</a><br />
29
- <a href="classes/ActiveRecord/Acts/MuckComment/SingletonMethods.html">ActiveRecord::Acts::MuckComment::SingletonMethods</a><br />
30
- <a href="classes/Acts/CommentableWithThreading/ClassMethods.html">Acts::CommentableWithThreading::ClassMethods</a><br />
31
- <a href="classes/Acts/CommentableWithThreading/InstanceMethods.html">Acts::CommentableWithThreading::InstanceMethods</a><br />
32
- <a href="classes/Acts/CommentableWithThreading/SingletonMethods.html">Acts::CommentableWithThreading::SingletonMethods</a><br />
33
- <a href="classes/MuckComments.html">MuckComments</a><br />
34
- <a href="classes/MuckComments/Tasks.html">MuckComments::Tasks</a><br />
35
- </div>
36
- </div>
37
- </body>
38
- </html>
@@ -1,32 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Files
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Files</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Files</h1>
22
- <div id="index-entries">
23
- <a href="files/README_rdoc.html">README.rdoc</a><br />
24
- <a href="files/lib/active_record/acts/muck_comment_rb.html">lib/active_record/acts/muck_comment.rb</a><br />
25
- <a href="files/lib/acts_as_commentable_with_threading_rb.html">lib/acts_as_commentable_with_threading.rb</a><br />
26
- <a href="files/lib/muck_comments_rb.html">lib/muck_comments.rb</a><br />
27
- <a href="files/lib/muck_comments/initialize_routes_rb.html">lib/muck_comments/initialize_routes.rb</a><br />
28
- <a href="files/lib/muck_comments/tasks_rb.html">lib/muck_comments/tasks.rb</a><br />
29
- </div>
30
- </div>
31
- </body>
32
- </html>
@@ -1,41 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Methods
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Methods</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Methods</h1>
22
- <div id="index-entries">
23
- <a href="classes/Acts/CommentableWithThreading/ClassMethods.html#M000004">acts_as_commentable (Acts::CommentableWithThreading::ClassMethods)</a><br />
24
- <a href="classes/ActiveRecord/Acts/MuckComment/ClassMethods.html#M000013">acts_as_muck_comment (ActiveRecord::Acts::MuckComment::ClassMethods)</a><br />
25
- <a href="classes/Acts/CommentableWithThreading/InstanceMethods.html#M000007">add_comment (Acts::CommentableWithThreading::InstanceMethods)</a><br />
26
- <a href="classes/Acts/CommentableWithThreading/InstanceMethods.html#M000008">can_comment? (Acts::CommentableWithThreading::InstanceMethods)</a><br />
27
- <a href="classes/ActiveRecord/Acts/MuckComment/InstanceMethods.html#M000015">can_edit? (ActiveRecord::Acts::MuckComment::InstanceMethods)</a><br />
28
- <a href="classes/Acts/CommentableWithThreading/InstanceMethods.html#M000006">comments_ordered_by_submitted (Acts::CommentableWithThreading::InstanceMethods)</a><br />
29
- <a href="classes/ActiveRecord/Acts/MuckComment/SingletonMethods.html#M000012">find_commentable (ActiveRecord::Acts::MuckComment::SingletonMethods)</a><br />
30
- <a href="classes/Acts/CommentableWithThreading/SingletonMethods.html#M000003">find_comments_by_user (Acts::CommentableWithThreading::SingletonMethods)</a><br />
31
- <a href="classes/ActiveRecord/Acts/MuckComment/SingletonMethods.html#M000010">find_comments_by_user (ActiveRecord::Acts::MuckComment::SingletonMethods)</a><br />
32
- <a href="classes/Acts/CommentableWithThreading/SingletonMethods.html#M000002">find_comments_for (Acts::CommentableWithThreading::SingletonMethods)</a><br />
33
- <a href="classes/ActiveRecord/Acts/MuckComment/SingletonMethods.html#M000011">find_comments_for_commentable (ActiveRecord::Acts::MuckComment::SingletonMethods)</a><br />
34
- <a href="classes/ActiveRecord/Acts/MuckComment/InstanceMethods.html#M000014">has_children? (ActiveRecord::Acts::MuckComment::InstanceMethods)</a><br />
35
- <a href="classes/ActionController/Routing/RouteSet.html#M000001">load_routes_with_muck_comments! (ActionController::Routing::RouteSet)</a><br />
36
- <a href="classes/MuckComments/Tasks.html#M000009">new (MuckComments::Tasks)</a><br />
37
- <a href="classes/Acts/CommentableWithThreading/InstanceMethods.html#M000005">root_comments (Acts::CommentableWithThreading::InstanceMethods)</a><br />
38
- </div>
39
- </div>
40
- </body>
41
- </html>
data/rdoc/index.html DELETED
@@ -1,24 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
5
-
6
- <!--
7
-
8
- MuckComments
9
-
10
- -->
11
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12
- <head>
13
- <title>MuckComments</title>
14
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
- </head>
16
- <frameset rows="20%, 80%">
17
- <frameset cols="25%,35%,45%">
18
- <frame src="fr_file_index.html" title="Files" name="Files" />
19
- <frame src="fr_class_index.html" name="Classes" />
20
- <frame src="fr_method_index.html" name="Methods" />
21
- </frameset>
22
- <frame src="files/README_rdoc.html" name="docwin" />
23
- </frameset>
24
- </html>