Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace all mentions of dodona.ugent.be #4883

Merged
merged 1 commit into from
Aug 10, 2023
Merged
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 .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
custom: https://dodona.ugent.be/en/support-us
custom: https://dodona.be/en/support-us
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@

> Dodona is an online exercise platform for **learning to code**. It wants to teach students how to program in the most meaningful and effective way possible. Dodona acts as an **online co-teacher**, designed to give every student access to high quality education. The focus is on automatic corrections and giving **meaningful feedback** on the submitted solutions from students.

This repository contains the source code of the web application. If you simply want to use Dodona, please go to [https://dodona.ugent.be](https://dodona.ugent.be).
This repository contains the source code of the web application. If you simply want to use Dodona, please go to [https://dodona.be](https://dodona.be).

The documentation for end users can be found at [https://docs.dodona.be](https://docs.dodona.be).

## Supporting Dodona

Dodona is free to use for schools and we would like to keep it that way! Keeping this platform up and running takes a lot of time, just as supporting hundreds of schools and thousands of students. If you would like to fund Dodona, you can find more information on [https://dodona.ugent.be/en/support-us/](https://dodona.ugent.be/en/support-us/) or get in touch by emailing us at [email protected].
Dodona is free to use for schools and we would like to keep it that way! Keeping this platform up and running takes a lot of time, just as supporting hundreds of schools and thousands of students. If you would like to fund Dodona, you can find more information on [https://dodona.be/en/support-us/](https://dodona.be/en/support-us/) or get in touch by emailing us at [email protected].

## Contacting us

There are several ways to contact us:
- To report a bug, please use [GitHub Issues](https://github.com/dodona-edu/dodona/issues).
- If you have a question to which the answer might be of use to others, please use [GitHub Discussions](https://github.com/dodona-edu/dodona/discussions).
- For more specific questions, use [our contact form](https://dodona.ugent.be/nl/contact/), send an email to [[email protected]](mailto:[email protected]) or come chat with us in our [general chat](https://matrix.to/#/#dodona-general:vanpetegem.me?via=vanpetegem.me&via=matrix.org&via=beardhatcode.be) or our [support chat](https://matrix.to/#/#dodona-support:vanpetegem.me?via=vanpetegem.me).
- For more specific questions, use [our contact form](https://dodona.be/nl/contact/), send an email to [[email protected]](mailto:[email protected]) or come chat with us in our [general chat](https://matrix.to/#/#dodona-general:vanpetegem.me?via=vanpetegem.me&via=matrix.org&via=beardhatcode.be) or our [support chat](https://matrix.to/#/#dodona-support:vanpetegem.me?via=vanpetegem.me).

## Local development

Expand Down
2 changes: 1 addition & 1 deletion app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
def email
return self[:email] unless Current.demo_mode && Current.user != self

"#{first_name}.#{last_name}@dodona.ugent.be"
"#{first_name}.#{last_name}@dodona.be"

Check warning on line 253 in app/models/user.rb

View check run for this annotation

Codecov / codecov/patch

app/models/user.rb#L253

Added line #L253 was not covered by tests
end

def short_name
Expand Down
10 changes: 5 additions & 5 deletions app/views/pages/_about.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@
"@context": "https://schema.org/",
"@type": "Organization",
"name": "Dodona",
"url": "https://dodona.ugent.be",
"url": "https://dodona.be",
"sameAs": [
"https://twitter.com/DodonaEdu",
"https://github.com/dodona-edu"
],
"email": "[email protected]",
"logo": "https://dodona.ugent.be/icon.png",
"image": "https://dodona.ugent.be/social-image.png",
"logo": "https://dodona.be/icon.png",
"image": "https://dodona.be/social-image.png",
"slogan": "Learn to code for secondary and higher education."
}
</script>
Expand All @@ -85,8 +85,8 @@
"@context": "https://schema.org/",
"@type": "Website",
"name": "Dodona",
"url": "https://dodona.ugent.be",
"url": "https://dodona.be",
"version": "<%= Dodona::Application::VERSION %>",
"image": "https://dodona.ugent.be/social-image.png"
"image": "https://dodona.be/social-image.png"
}
</script>
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
channel: '#notifications',
username: 'Dodona-server',
additional_parameters: {
icon_url: 'https://dodona.ugent.be/icon.png',
icon_url: 'https://dodona.be/icon.png',
mrkdwn: true
}
}
Expand Down
6 changes: 3 additions & 3 deletions lib/SAML/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,13 @@
el.text = 'UGent - Dodona'
el = org.add_element 'md:OrganizationURL',
'xml:lang' => 'en'
el.text = 'https://dodona.ugent.be'
el.text = 'https://dodona.be'

Check warning on line 150 in lib/SAML/metadata.rb

View check run for this annotation

Codecov / codecov/patch

lib/SAML/metadata.rb#L150

Added line #L150 was not covered by tests
el = org.add_element 'md:OrganizationURL',
'xml:lang' => 'nl'
el.text = 'https://dodona.ugent.be'
el.text = 'https://dodona.be'

Check warning on line 153 in lib/SAML/metadata.rb

View check run for this annotation

Codecov / codecov/patch

lib/SAML/metadata.rb#L153

Added line #L153 was not covered by tests
el = org.add_element 'md:OrganizationURL',
'xml:lang' => 'fr'
el.text = 'https://dodona.ugent.be'
el.text = 'https://dodona.be'

Check warning on line 156 in lib/SAML/metadata.rb

View check run for this annotation

Codecov / codecov/patch

lib/SAML/metadata.rb#L156

Added line #L156 was not covered by tests

cp = root.add_element 'md:ContactPerson',
'contactType' => 'technical'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h3>Voorbeeld</h3>
<h3>Pythia spreekt &#8230;</h3>
<p>In onderstaande video legt Pythia uit hoe je deze opgave kunt aanpakken.
Bekijk de video als opstapje naar het oplossen van de oefeningen over <a
href="https://dodona.ugent.be/nl/exercises/?filter=opgaven/reeks01">variabelen,
href="https://dodona.be/nl/exercises/?filter=opgaven/reeks01">variabelen,
expressies en statements</a>.</p>
<div class="dodona-centered-group"><iframe src="https://www.youtube.com/embed/Ne35kBQNLXg"
allowfullscreen="" frameborder="0" height="315" width="560"></iframe></div>
Expand Down