Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ To update the project balances run this command:
bundle exec rails runner "BalanceUpdater.work"
```

To retreive commits and send tips on project that do not hold tips:
To retrieve commits and send tips on project that do not hold tips:
```
bundle exec rails runner "BitcoinTipper.work"
```
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/distribution.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $(document).on "page:change", ->
form[0].reset()
false
error: ->
form.append($("<div>").addClass("alert alert-danger").text("An error occured."))
form.append($("<div>").addClass("alert alert-danger").text("An error occurred."))
false

$(".commit-autocomplete[data-project-id]").each ->
Expand Down
2 changes: 1 addition & 1 deletion app/models/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def tip_commits
next if commit.commit.message =~ /^(Merge\s|auto\smerge)/
# Filter fake emails
next unless commit.commit.author.email =~ Devise::email_regexp
# Filter commited after t4c project creation
# Filter committed after t4c project creation
next unless commit.commit.committer.date > self.deposits.first.created_at

Project.transaction do
Expand Down
2 changes: 1 addition & 1 deletion app/views/home/faq.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ You can also donate without providing an address. But the fundraiser won't be ab

What's going to happen next?
----------------------------
There are many features planed. Their achievement depends on the willingness of donors, fundraisers and developers.
There are many features planned. Their achievement depends on the willingness of donors, fundraisers and developers.

### Bitcoin support
Adding support for Bitcoin is an important step. We can easily change Peer4commit to support projects either in Bitcoin or in Peercoin. But supporting multiple currecies in the same project will require more work and an external service to automatically convert currencies.
Expand Down
2 changes: 1 addition & 1 deletion features/cold_storage.feature
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Some funds are transfered to cold storage
Feature: Some funds are transferred to cold storage
Background:
Given a project
And our fee is "0.01"
Expand Down
2 changes: 1 addition & 1 deletion features/project_detailed_description.feature
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Feature: Project detailed description is markdown formatted
And I click on "Save"
Then I should not see a link "bar" to "javascript:alert('xss')"

Scenario: Embeded HTML
Scenario: Embedded HTML
When I fill "Detailed description" with:
"""
foo <a href="javascript:alert('xss')">bar</a>
Expand Down