diff -r 76c548e4e6e4 -r 93b4cfd3aaaa config/locales/en.yml
--- a/config/locales/en.yml Thu Mar 24 13:58:03 2011 +0000
+++ b/config/locales/en.yml Mon Mar 28 17:30:04 2011 +0100
@@ -863,6 +863,7 @@
version_status_closed: closed
field_active: Active
+ field_current: Current
text_select_mail_notifications: Select actions for which email notifications should be sent.
text_regexp_info: eg. ^[A-Z0-9]+$
@@ -927,12 +928,13 @@
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
text_zoom_in: Zoom in
text_zoom_out: Zoom out
+ text_files_active_change: Click the star to switch active status for a download on or off. Active files will be shown more prominently in the download page.
text_settings_repo_creation: The repository for a project should be set up automatically within a few minutes of the project being created. You should not have to adjust any settings here. Please check again in ten minutes, and contact us if there is any problem.
text_settings_repo_is_internal: The repository for this project is an internal Mercurial Repository, hosted by SoundSoftware.ac.uk.
text_settings_repo_is_external: You are tracking an external repository, with a mirror Mercurial repository hosted by SoundSoftware.ac.uk.
-
+
default_role_manager: Manager
default_role_developer: Developer
default_role_reporter: Reporter
@@ -965,6 +967,12 @@
label_reporter_description: Can submit bug reports; has read access for private projects
label_set_role_plural: Choose roles for new member
+
+ label_manager_description: All powers including adding and removing members and adjusting project settings
+ label_developer_description: Can commit to repository and carry out most project editing tasks
+ label_reporter_description: Can submit bug reports; has read access for private projects
+
+ label_set_role_plural: Choose roles for new member
notice_added_to_project: 'You have been added to the project "{{project_name}}".'
notice_project_homepage: "You can visit the project using the following link: {{project_url}}"
mail_subject_added_to_project: "You've been added to a project on {{value}}"
diff -r 76c548e4e6e4 -r 93b4cfd3aaaa db/migrate/20110303152903_add_active_column_to_attachments.rb
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/db/migrate/20110303152903_add_active_column_to_attachments.rb Mon Mar 28 17:30:04 2011 +0100
@@ -0,0 +1,9 @@
+class AddActiveColumnToAttachments < ActiveRecord::Migration
+ def self.up
+ add_column :attachments, :active, :boolean
+ end
+
+ def self.down
+ remove_column :attachments, :active
+ end
+end
diff -r 76c548e4e6e4 -r 93b4cfd3aaaa public/stylesheets/application.css
--- a/public/stylesheets/application.css Thu Mar 24 13:58:03 2011 +0000
+++ b/public/stylesheets/application.css Mon Mar 28 17:30:04 2011 +0100
@@ -157,7 +157,7 @@
tr.changeset td.committed_on { text-align: center; width: 15%; }
table.files tr.file td { text-align: center; }
-table.files tr.file td.filename { text-align: left; padding-left: 24px; }
+table.files tr.file td.filename { text-align: left; }
table.files tr.file td.digest { font-size: 80%; }
table.members td.roles, table.memberships td.roles { width: 45%; }
diff -r 76c548e4e6e4 -r 93b4cfd3aaaa public/themes/soundsoftware/stylesheets/application.css
--- a/public/themes/soundsoftware/stylesheets/application.css Thu Mar 24 13:58:03 2011 +0000
+++ b/public/themes/soundsoftware/stylesheets/application.css Mon Mar 28 17:30:04 2011 +0100
@@ -37,16 +37,41 @@
body,p,h2,h3,h4,li,table,.wiki h1 {
font-family: DroidSans, 'Liberation Sans', tahoma, verdana, sans-serif;
+ line-height: 1.34;
}
h2,h3,h4,.wiki h1 {
color: #3e442c;
+ font-weight: bold;
+}
+
+.wiki h2,.wiki h3,.wiki h4 {
+ color: #000;
}
h2,.wiki h1 {
- font-size: 1.8em;
+ font-size: 1.8em;
}
+.wiki h2 {
+ margin-top: 1em;
+}
+
+.splitcontentleft p:first-child {
+ margin-top: 0;
+}
+
+div.attachments {
+ margin-top: 2em;
+}
+#wiki_add_attachment {
+ margin-top: 1.5em;
+}
+
+/* Hide these (the paragraph markers that show anchors) -- they confuse more than they help */
+a.wiki-anchor:hover { display: none; }
+h1:hover a.wiki-anchor, h2:hover a.wiki-anchor, h3:hover a.wiki-anchor { display: none; }
+
.box {
padding: 6px;
margin-bottom: 10px;
@@ -81,6 +106,10 @@
ul.projects .public, ul.projects .private { padding-left: 0.5em; color: #3e442c; font-size: 0.95em }
+table.files tr.active td { padding-top: 0.5em; padding-bottom: 0.5em; }
+table.files .file .active { font-weight: bold; }
+table.files .file .description { font-weight: normal; color: #3e442c; }
+
#top-menu { position: absolute; top: 0; z-index: 1; left: 0px; width: 100%; font-size: 90%; /* height: 2em; */ margin: 0; padding: 0; padding-top: 0.5em; background-color: #3e442c; }
#top-menu ul { margin-left: 10px; }
#top-menu a { font-weight: bold; }
@@ -98,7 +127,7 @@
#project-jump-box { float: right; margin-right: 6px; margin-top: 5px; color: #000; }
#project-ancestors-title {
margin-bottom: 0px;
- margin-left: 10px;
+ margin-left: 12px;
margin-top: 6px;
font-family: GilliusADFNo2, 'Gill Sans', Tahoma, sans-serif;
font-weight: normal;