Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
096307e
top level ui from topcoder-app
thabofletcher Oct 9, 2015
b3250e9
nav icons
thabofletcher Oct 10, 2015
7903eda
some angular working in header
thabofletcher Oct 10, 2015
a5ad9bb
nav menu functional
thabofletcher Oct 10, 2015
a71adad
Merge pull request #157 from appirio-tech/sup-1498-onboarding
thabofletcher Oct 12, 2015
b2bb8a6
Merge pull request #158 from appirio-tech/sup-1498-onboarding
thabofletcher Oct 13, 2015
35e6665
Merge branch 'release' of https://github.com/appirio-tech/tc-site int…
thabofletcher Oct 13, 2015
a7d3650
avoid this version of angular resorting the menu object
thabofletcher Oct 13, 2015
4a213dc
don't use default behavior for header link styles
thabofletcher Oct 13, 2015
256fb23
remove env specific links
thabofletcher Oct 13, 2015
c7d61e3
new nav on php pages
thabofletcher Oct 14, 2015
093f47d
Merge pull request #161 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
f78d29d
fix template path
thabofletcher Oct 14, 2015
fd11ef6
Merge pull request #162 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
9bdc0a8
updates from community team
thabofletcher Oct 14, 2015
d7a2c59
Merge pull request #163 from appirio-tech/sup-1498-onboarding
thabofletcher Oct 14, 2015
055a5bd
fix ng-hrefs to topcoder-app
thabofletcher Oct 14, 2015
4230721
fix search icon size
thabofletcher Oct 14, 2015
d203b24
remove existing challenge track navigation (sup-1475)
thabofletcher Oct 14, 2015
fbca3d9
local env nginx for charset utf8
thabofletcher Oct 14, 2015
9a4eb4c
fix active state for menu items
thabofletcher Oct 14, 2015
97afba1
fix links to my profile
thabofletcher Oct 14, 2015
fc679dc
set charset in nginx conf
thabofletcher Oct 14, 2015
18ed179
Merge pull request #165 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
90d5dda
fix profile links (wp)
thabofletcher Oct 14, 2015
932014a
Merge pull request #166 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
2a26441
external links open in new window
thabofletcher Oct 14, 2015
b40b6e0
undo accidental checkin
thabofletcher Oct 14, 2015
71a16ba
Merge pull request #167 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
46b3935
fix mobile view
thabofletcher Oct 14, 2015
7dd282e
undo local checkin
thabofletcher Oct 14, 2015
23114d5
Merge pull request #168 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
f2ca730
sup-1514 smooth animation
thabofletcher Oct 14, 2015
1eb189e
Merge pull request #169 from appirio-tech/sup-1402-new-nav
thabofletcher Oct 14, 2015
99d5be9
updates for community team
thabofletcher Oct 15, 2015
f0a879c
Merge pull request #170 from appirio-tech/sup-1498-onboarding
thabofletcher Oct 15, 2015
03bc68c
added plugin for communtiy
thabofletcher Oct 15, 2015
3036b63
Merge pull request #172 from appirio-tech/sup-1498-onboarding
thabofletcher Oct 15, 2015
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
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ module.exports = function(grunt) {
communityURL: grunt.option('community-url') || '//community.topcoder.com',
reviewAppURL: grunt.option('review-app-url') || 'software.topcoder.com/review',
helpAppURL: grunt.option('help-app-url') || 'help.topcoder.com',
forumsAppURL: grunt.option('forums-app-url') || 'forums.topcoder.com',
forumsAppURL: grunt.option('forums-app-url') || 'apps.topcoder.com/forums/',
swiftProgramId: grunt.option('swift-program-id') || 3445,
swiftProgramURL: grunt.option('swift-program-url') || 'http://ios.topcoder.com',
arenaURL: grunt.option('arena-url') || '//arena.topcoder.com',

// only used on wp setup
useGz: grunt.option('use-gz') || false,
Expand Down
1 change: 1 addition & 0 deletions src/conf/tc-nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ upstream www {
server {
listen 80;
server_name local.topcoder.com local.topcoder-dev.com local.topcoder-qa.com;
charset UTF-8;

set $app_base /home/vagrant; ## CHANGE ME root apps folder reference
set $root_base $app_base/tc-site;
Expand Down
1 change: 1 addition & 0 deletions src/conf/tc-prod-nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ server {
listen 8080 default_server;
listen [::]:80 default_server ipv6only=on;
listen [::]:8080 default_server ipv6only=on;
charset UTF-8;

if ($http_x_forwarded_proto != "https") {
return 301 https://$http_host$request_uri;
Expand Down
Loading