Skip to content

Commit

Permalink
Rename HasGeek to Hasgeek (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
jace authored Jul 30, 2020
1 parent e0592b5 commit a5d746d
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 40 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
HasGeek TV
Hasgeek TV
==========

Source for [HasGeek TV](http://hasgeek.tv).
Source for [Hasgeek TV](http://hasgeek.tv).

This project is a work in progress.
This project is winding down.


Test deployment
Expand Down
2 changes: 1 addition & 1 deletion hgtv/assets/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hgtv",
"version": "1.0.0",
"description": "HasGeek TV",
"description": "Hasgeek TV",
"author": "Vidya Ramakrishnan <[email protected]>",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion hgtv/assets/src/components/ChannelHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="grid">
<div class="grid__col-xs-12 grid__col-lg-6">
<h1 class="mui--text-title">
<router-link :to="{ name: 'Home'}" class="mui--text-dark">HasGeek TV</router-link> <i class="material-icons mui--align-middle mui--text-dark mui--text-title">chevron_right</i> {{ channel.title }}
<router-link :to="{ name: 'Home'}" class="mui--text-dark">Hasgeek TV</router-link> <i class="material-icons mui--align-middle mui--text-dark mui--text-title">chevron_right</i> {{ channel.title }}
</h1>
<div v-html="channel.description" class="mui--text-subhead"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion hgtv/assets/src/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="mui-container">
<div class="page-content">
<div class="grid">
<p class="grid__col-12 site-title">Welcome to HasGeek TV. Watch talks and discussions from past events here.</p>
<p class="grid__col-12 site-title">Welcome to Hasgeek TV. Watch talks and discussions from past events here.</p>
<LiveStream v-if="livestreamOn" :livestreams="livestreams"></LiveStream>
</div>
<FeaturedChannels :channels="channels"></FeaturedChannels>
Expand Down
2 changes: 1 addition & 1 deletion hgtv/assets/src/components/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<i class="material-icons mui--align-middle mui--text-light mui--text-title" data-mui-toggle="dropdown" title="Share">share</i>
<ul class="mui-dropdown__menu mui-dropdown__menu--right">
<li>
<a target="_blank" :href="'//twitter.com/share?url=' + url + '&amp;via=HasGeekTV&amp;text=' + video.title" class="socialite twitter-share mui--text-light mui--text-title" :data-url="url" :data-text="video.title" data-via="HasGeekTV">Twitter</a>
<a target="_blank" :href="'//twitter.com/share?url=' + url + '&amp;via=HasgeekTV&amp;text=' + video.title" class="socialite twitter-share mui--text-light mui--text-title" :data-url="url" :data-text="video.title" data-via="HasgeekTV">Twitter</a>
</li>
<li>
<a target="_blank" :href="'//plus.google.com/share?url=' + url" class="socialite googleplus-share mui--text-light mui--text-title" :data-href="url" data-action="share">Google+</a>
Expand Down
4 changes: 2 additions & 2 deletions hgtv/static/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "HasGeek TV",
"name": "Hasgeek TV",
"short_name": "hgtv",
"description": "Watch talks and discussions from past events on HasGeek TV",
"description": "Watch talks and discussions from past events on Hasgeek TV",
"display": "standalone",
"orientation": "portrait",
"start_url": "/?utm_source=homescreen",
Expand Down
2 changes: 1 addition & 1 deletion hgtv/templates/layout.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
{% endblock %}

{% block footerinner %}
<a href="https://twitter.com/HasGeekTV" class="twitter-follow-button" data-show-count="false">Follow @HasGeekTV</a>
<a href="https://twitter.com/HasgeekTV" class="twitter-follow-button" data-show-count="false">Follow @HasgeekTV</a>
{% endblock %}

{%- block layoutscripts %}
Expand Down
30 changes: 15 additions & 15 deletions instance/settings-sample.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# -*- coding: utf-8 -*-
#: Site title
SITE_TITLE = 'HasGeek.tv'
SITE_TITLE = "Hasgeek.tv"
#: Site id (for network bar)
SITE_ID = 'hgtv'
SITE_ID = "hgtv"
#: Database backend
SQLALCHEMY_DATABASE_URI = 'sqlite:///test.db'
SQLALCHEMY_DATABASE_URI = "sqlite:///test.db"
#: Secret key
SECRET_KEY = 'make this something random'
SECRET_KEY = "make this something random"
#: Allowed Extensions for thumbnails
ALLOWED_EXTENSIONS = ['jpg', 'jpeg', 'png', 'gif']
ALLOWED_EXTENSIONS = ["jpg", "jpeg", "png", "gif"]
#: Timezone
TIMEZONE = 'Asia/Calcutta'
TIMEZONE = "Asia/Calcutta"
#: LastUser server
LASTUSER_SERVER = 'https://auth.hasgeek.com/'
LASTUSER_SERVER = "https://auth.hasgeek.com/"
#: LastUser client id
LASTUSER_CLIENT_ID = ''
LASTUSER_CLIENT_ID = ""
#: LastUser client secret
LASTUSER_CLIENT_SECRET = ''
LASTUSER_CLIENT_SECRET = ""
#: YouTube Data API key for import
YOUTUBE_API_KEY = ''
YOUTUBE_API_KEY = ""
#: Mail settings
#: MAIL_FAIL_SILENTLY : default True
#: MAIL_SERVER : default 'localhost'
Expand All @@ -29,18 +29,18 @@
#: MAIL_PASSWORD : default None
#: DEFAULT_MAIL_SENDER : default None
MAIL_FAIL_SILENTLY = False
MAIL_SERVER = 'localhost'
DEFAULT_MAIL_SENDER = ('HasGeek.tv', '[email protected]')
MAIL_SERVER = "localhost"
DEFAULT_MAIL_SENDER = ("Hasgeek.tv", "[email protected]")
#: Logging: recipients of error emails
ADMINS = []
#: Log file
LOGFILE = 'error.log'
LOGFILE = "error.log"
#: Video view mode (make this 'edit' to prevent autoplay)
VIDEO_VIEW_MODE = 'view'
VIDEO_VIEW_MODE = "view"
#: Are we livestreaming?
#: Previously it was a boolean followed by 2 variables LIVESTREAM_1 and LIVESTREAM_2,
#: which limited us to 2 livestreams at a time. Making this a list so that we can support
#: any number of livestreams
LIVESTREAM = []
#: Ustream key
USTREAM_KEY = ''
USTREAM_KEY = ""
30 changes: 15 additions & 15 deletions instance/testing.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# -*- coding: utf-8 -*-
#: Site title
SITE_TITLE = 'HasGeek.tv'
SITE_TITLE = "Hasgeek.tv"
#: Site id (for network bar)
SITE_ID = 'hgtv'
SITE_ID = "hgtv"
#: Database backend
SQLALCHEMY_DATABASE_URI = 'sqlite:///test.db'
SQLALCHEMY_DATABASE_URI = "sqlite:///test.db"
#: Secret key
SECRET_KEY = 'make this something random'
SECRET_KEY = "make this something random"
#: Allowed Extensions for thumbnails
ALLOWED_EXTENSIONS = ['jpg', 'jpeg', 'png', 'gif']
ALLOWED_EXTENSIONS = ["jpg", "jpeg", "png", "gif"]
#: Timezone
TIMEZONE = 'Asia/Calcutta'
TIMEZONE = "Asia/Calcutta"
#: LastUser server
LASTUSER_SERVER = 'https://auth.hasgeek.com/'
LASTUSER_SERVER = "https://auth.hasgeek.com/"
#: LastUser client id
LASTUSER_CLIENT_ID = ''
LASTUSER_CLIENT_ID = ""
#: LastUser client secret
LASTUSER_CLIENT_SECRET = ''
LASTUSER_CLIENT_SECRET = ""
#: YouTube Data API key for import
YOUTUBE_API_KEY = ''
YOUTUBE_API_KEY = ""
#: Mail settings
#: MAIL_FAIL_SILENTLY : default True
#: MAIL_SERVER : default 'localhost'
Expand All @@ -29,15 +29,15 @@
#: MAIL_PASSWORD : default None
#: DEFAULT_MAIL_SENDER : default None
MAIL_FAIL_SILENTLY = False
MAIL_SERVER = 'localhost'
DEFAULT_MAIL_SENDER = ('HasGeek.tv', '[email protected]')
MAIL_SERVER = "localhost"
DEFAULT_MAIL_SENDER = ("Hasgeek.tv", "[email protected]")
#: Logging: recipients of error emails
ADMINS = []
#: Log file
LOGFILE = 'error.log'
LOGFILE = "error.log"
#: Video view mode (make this 'edit' to prevent autoplay)
VIDEO_VIEW_MODE = 'view'
VIDEO_VIEW_MODE = "view"
#: Are we livestreaming?
LIVESTREAM = []
#: Ustream key
USTREAM_KEY = ''
USTREAM_KEY = ""

0 comments on commit a5d746d

Please sign in to comment.