Skip to content

Commit e71377e

Browse files
committed
Convert komodo website to community site, first iteration
1 parent ebdc500 commit e71377e

File tree

589 files changed

+168
-13473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

589 files changed

+168
-13473
lines changed

Gemfile

-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ gem 'middleman-pagination'
1818
gem 'middleman-search_engine_sitemap'
1919
#gem 'middleman-imageoptim', github: 'plasticine/middleman-imageoptim'
2020
gem 'middleman-syntax'
21-
#gem 'contentful_middleman'
22-
gem 'contentful_middleman', github: 'contentful-labs/contentful_middleman'
2321
gem 'net-ssh', '~> 2.6.5'
24-
gem 'middleman-deploy', '~> 1.0'
2522

2623
#gem 'middleman-komodo_resources', path: '/home/nathan/Projects/middleman-komodo_resources'
2724
#gem 'github_api'

Vagrantfile

-21
This file was deleted.

config.rb

+6-50
Original file line numberDiff line numberDiff line change
@@ -3,54 +3,11 @@
33

44
#activate :imageoptim
55

6-
set :url_root, "http://komodoide.com/"
6+
set :url_root, "http://community.komodoide.com/"
77
activate :search_engine_sitemap
88

9-
contentful_space = {cntf: ENV['CONTENTFUL_SPACE']}
10-
contentful_token = ENV['CONTENTFUL_TOKEN']
11-
12-
activate :contentful do |cntf|
13-
cntf.space = contentful_space
14-
cntf.access_token = contentful_token
15-
cntf.cda_query = { limit: 1000 }
16-
cntf.content_types = { posts: '2wKn6yEnZewu2SCCkus4as',
17-
authors: '1kUEViTN4EmGiEaaeC6ouY',
18-
events: '15lufuGEz2oSe24m4eywmi' }
19-
cntf.use_preview_api = ENV["KO_QA"] == "true"
20-
end
21-
229
pageable = {}
2310

24-
if data.has_key? "cntf" and data.cntf.has_key? "posts"
25-
data.cntf.posts.each do |id, post|
26-
if /^\d{4}-\d{2}-/.match(post["slug"])
27-
post["slug"] = post["slug"].sub(/^(\d{4}-\d{2})-/,'\1/')
28-
end
29-
30-
proxy "/blog/#{post["slug"]}/index.html", "templates/proxy/blog.html", :locals => { :post => post, :custom_meta => post, :page_title => post.title }, ignore: true
31-
end
32-
33-
pageable["blog"] = data.cntf.posts
34-
.reject { |k,v| v.tags.include? "press" }
35-
.sort_by { |k,v| v ? v["date"] : false }
36-
.reverse
37-
38-
tags().each() do |name,posts|
39-
proxy "/blog/tagged/#{name}/index.html", "templates/proxy/tag.html", :locals => { :tag_name => name, :posts => posts, :page_title => name }, ignore: true
40-
end
41-
end
42-
43-
if data.has_key? "cntf" and data.cntf.has_key? "events"
44-
data.cntf.events.each do |id, event|
45-
proxy "/events/#{event["slug"]}/index.html", "templates/proxy/event.html", :locals => { :event => event, :custom_meta => event, :page_title => event.title }, ignore: true
46-
end
47-
48-
present = DateTime.now
49-
future = present + (365*10)
50-
pageable["events"] = data.cntf.events
51-
.sort_by { |k,v| v.startDate < present ? future : v.startDate }
52-
end
53-
5411
if data.has_key? "resources"
5512
data.resources.categories.each do |category|
5613
name = category["resource"][0..-5]
@@ -150,7 +107,7 @@
150107
configure :build do
151108
is_qa = ENV["KO_QA"] == "true"
152109
set :is_live, ! is_qa
153-
set :site_url, is_qa ? "http://qa.komodoide.com" : "http://komodoide.com"
110+
set :site_url, is_qa ? "http://qa.komodoide.com" : "http://community.komodoide.com"
154111
end
155112

156113
set :css_dir, 'assets/stylesheets'
@@ -164,13 +121,12 @@
164121
page "json/*", :layout => false
165122
page "assets/*", :layout => false
166123

167-
set :title, "Komodo IDE"
124+
set :title, "Komodo IDE Community"
168125

169-
set :description, "One IDE, All Your Favourite Languages. Komodo is the "\
170-
"professional IDE for major web languages, including Python,"\
171-
"PHP, Ruby, Perl, HTML, CSS and JavaScript."
126+
set :description, "Where the Komodo Community gathers. Participate on our forums,"\
127+
"download or contribute packages, find out how to make Komodo your own."
172128

173-
set :social_description, "Check out @KomodoIDE! One IDE for all major web languages."
129+
set :social_description, "Check out the @KomodoIDE community!"
174130

175131
set :keywords, "komodo,komodo ide,activestate komodo ide,activestate komodo ide 6,"\
176132
"activestate komodo,activestate ide,comodo ide,activestate"\

data/addons.yml

-21
This file was deleted.

data/downloads.yml

-18
This file was deleted.

0 commit comments

Comments
 (0)