myexperiment-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myexperiment-hackers] [3067] trunk/app/views/blobs/suggestions.rhtml: a


From: noreply
Subject: [myexperiment-hackers] [3067] trunk/app/views/blobs/suggestions.rhtml: added suggestions page for files
Date: Tue, 31 Jul 2012 15:25:15 +0000 (UTC)

Revision
3067
Author
dgc
Date
2012-07-31 15:25:14 +0000 (Tue, 31 Jul 2012)

Log Message

added suggestions page for files

Added Paths

Diff

Added: trunk/app/views/blobs/suggestions.rhtml (0 => 3067)


--- trunk/app/views/blobs/suggestions.rhtml	                        (rev 0)
+++ trunk/app/views/blobs/suggestions.rhtml	2012-07-31 15:25:14 UTC (rev 3067)
@@ -0,0 +1,58 @@
+<% t "#{contributable_name(@version.id, 'Blob')} (#{h @blob.contributor_name})" -%>
+
+<%= _javascript__include_tag "fckeditor/fckeditor.js" %>
+
+<h1>Suggestions</h1>
+
+<% form_for(:blob_version, :url ="" blob_version_process_suggestions_path(@blob, @version.version), :html => { :method => :post } ) do |f| %>
+
+  <% if @suggestions[:description] %>
+
+    <h2>Enter description</h2>
+
+    <p><em>The file has no description!  By entering a description here, you
+    will increase the chances of others finding your file and help understand
+    its purpose.</em></p>
+
+    <p>
+      <textarea id='description_editor' name='description'></textarea>
+      <script type="text/_javascript_">
+      //<![CDATA[
+      var oFCKeditor = new FCKeditor('description_editor', '600px', '300px', 'Simple');
+      oFCKeditor.BasePath = "/_javascript_s/fckeditor/"
+      oFCKeditor.Config['CustomConfigurationsPath'] = '/_javascript_s/fckcustom.js';
+      oFCKeditor.ReplaceTextarea();
+      //]]>
+      </script>
+    </p>
+
+  <% end %>
+
+  <% if @suggestions[:revision_comments] %>
+
+    <h2>Enter revision comment</h2>
+
+    <p>Please enter a brief comment about the changes that have been made to
+    the file.  This will help others know if they need to update to this
+    version.</p>
+
+    <p>
+      <textarea id='revision_comments_editor' name='revision_comments'></textarea>
+      <script type="text/_javascript_">
+      //<![CDATA[
+      var oFCKeditor = new FCKeditor('revision_comments_editor', '600px', '300px', 'Simple');
+      oFCKeditor.BasePath = "/_javascript_s/fckeditor/"
+      oFCKeditor.Config['CustomConfigurationsPath'] = '/_javascript_s/fckcustom.js';
+      oFCKeditor.ReplaceTextarea();
+      //]]>
+      </script>
+    </p>
+
+  <% end %>
+
+  <p>
+    <%= submit_tag "Continue" %>
+  </p>
+
+<% end %>
+

reply via email to

[Prev in Thread] Current Thread [Next in Thread]