Skip to content

Commit 5dc65a7

Browse files
committed
Merge branch 'fix-suggestotron-alt-text'
2 parents ac46e41 + ecfacf4 commit 5dc65a7

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

sites/en/intro-to-rails/CRUD_with_scaffolding.step

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@ steps {
2121

2222
step {
2323
message "Point your browser to [http://localhost:3000/topics](http://localhost:3000/topics)"
24-
message "You should see a page listing topics that looks something like this:"
24+
message "You should see the 'Listing Topics' page with headers for title and description, and a link to add a new topic:"
2525

26-
img src: "img/Seattle_topic_list_page.png", alt: "Topic List Page"
26+
img src: "img/Seattle_topic_list_page.png", alt: "Screenshot of topic list page"
2727
}
2828

2929
step {
3030
message <<-MARKDOWN
3131
* Click on "New Topic"
3232
* Fill in the form and click "Create Topic"
33-
* You should see a confirmation page like this:
33+
* You should see a page showing your new topic with a message that your topic was successfully created:
3434
MARKDOWN
3535

36-
img alt: "topic created", src: "img/Seattle_topic_created.png"
36+
img alt: "Screenshot of topic detail page with confirmation message", src: "img/Seattle_topic_created.png"
3737
}
3838

3939
step {
4040
message <<-MARKDOWN
4141
* Click on "back"
4242
* You should see the topic list again, this time with your new topic listed:
4343

44-
![list with topic](img/Seattle_list_with_topic.png)
44+
![Screenshot of topic list with new topic](img/Seattle_list_with_topic.png)
4545

4646
* Try the 'show', 'edit', and 'destroy' links to see what they do
4747
* You've created a basic database driven web site, congrats!

sites/en/intro-to-rails/deploying_to_heroku.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ explanation do
101101
MARKDOWN
102102

103103
message "You should be able to deploy your application any time it's in a good, working state. Your typical workflow will look like:"
104-
img src: "img/workflow.png", alt: "workflow", style: "border: none"
104+
img src: "img/workflow.png", alt: "Diagram showing git workflow of making changes, committing them, and pushing to Heroku.", style: "border: none"
105105
ol do
106106
li { message "Add or change some code" }
107107
li { message "Commit your changes (`git commit`)" }

sites/en/intro-to-rails/getting_started.step

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
img src: "img/Start_page.png", alt: "Start Page"
1+
img src: "img/Start_page.png", alt: "Screenshot of a Ruby on Rails default home page"
22

33
goals do
44
goal "Create Your New Application"
@@ -53,11 +53,11 @@ Open the suggestotron folder as a project in your text editor.
5353

5454
In **Sublime Text 2**, you can use the `Project > Add Folder to Project...` menu option:
5555

56-
<img src='img/sublime_add_folder_to_project.png' />
56+
![Sublime Text Project menu screenshot](img/sublime_add_folder_to_project.png)
5757

58-
Select your `suggestotron` folder from the file picker that opens. If everything works out Sublime should look something like this:
58+
Select your `suggestotron` folder from the file picker that opens. If everything works out Sublime should show the directories of your app in a tree structure on the left:
5959

60-
<img src='img/sublime_project_as_folder.png' />
60+
![Screenshot of Suggestotron project folder tree in Sublime Text](img/sublime_project_as_folder.png)
6161
MARKDOWN
6262
end
6363

sites/en/intro-to-rails/intro-to-rails.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ allow users to:
1212

1313
You've sketched up an initial screenshot of what you want it to look like:
1414

15-
![screenshot](img/finished_app.png)
15+
![Browser window with topic titles that can be voted on, ordered by number of votes](img/finished_app.png)
1616

1717
### Meta-Goal
1818

sites/en/intro-to-rails/setting_the_default_page.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ explanation {
7070

7171
In Rails 4, you can also get this information on your site in development. Go to <a href="http://localhost:3000/rails/info">http://localhost:3000/rails/info</a> and you'll see something like this:
7272

73-
<img src='img/rails4_rails_info_routing.png'>
73+
<img src='img/rails4_rails_info_routing.png' alt='Screenshot of browser-based Rails routing info page'>
7474

7575
You'll also see that table in Rails 4 whenever you try to access an invalid route (try <a href="http://localhost:3000/sandwich">http://localhost:3000/sandwich</a>)
7676

0 commit comments

Comments
 (0)