Skip to content

Commit 1700101

Browse files
author
Aditya Athalye
committed
Merge pull request pythonpune#2 from pythonpune/master
Pulling in latest updates
2 parents f6cb74a + 82bf101 commit 1700101

24 files changed

+341
-48
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
_site
2+
*.swp

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pune.python.org.in

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ pythonpune.github.com
33

44
Pune Pythonistas and their discussions and events.
55

6-
This is the content for the pythonpune website.
6+
This is the content for the PythonPune website.
77

88
On pushing any changes to github, the same are automatically processed by jekyll and published.
99

10-
To run locally, checkout the project and run "jekyll --serve".
10+
To run locally, checkout the project and run "jekyll --serve".

_layouts/company.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: default
3+
---
4+
<h1><em>Note: This page and company catalog is still under construction</em></h1>
5+
<h2>{{page.name}}</h2>
6+
<table>
7+
<tr><td>Name</td><td>{{page.name}}</td></tr>
8+
{% if page.company_url %}<tr><td>URL</td><td><a href="{{page.company_url}}">{{page.company_url}}</a></td></tr>{% endif %}
9+
</table>
10+
<br/>
11+
{{ content }}

_layouts/default.html

Lines changed: 39 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,48 @@
88
<link rel="stylesheet" type="text/css" href="/stylesheets/pygment_trac.css" media="screen" />
99
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
1010
<link rel="alternate" type="application/atom+xml" title="Atom Feed for PythonPune" href="/atom.xml" />
11-
<title>PythonPune by pythonpune</title>
11+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
12+
<script type="text/javascript" src="/javascripts/jquery.tinysort.min.js"></script>
13+
<title>PythonPune - Presence of Python Pune Community on Internet</title>
14+
<script type="text/javascript">
15+
function page_callback() {
16+
// do nothing;
17+
}
18+
</script>
1219
</head>
1320

1421
<body>
1522

1623
<header>
17-
<div class="container">
18-
<h1>PythonPune</h1>
19-
<h2>Pune Pythonistas and their discussions and events.</h2>
24+
<div class="container" id="header_menu">
25+
<table border=0 cellspacing=0>
26+
<tr>
27+
<td>
28+
<h1><a href="/">PythonPune</a></h1>
29+
<h2>Pune Pythonistas and their discussions and events.</h2>
30+
</td>
31+
<td>
32+
<div class="subscription-box">
33+
<!-- <img src="https://groups.google.com/forum/my-groups-color.png" alt="Google Groups"> -->
34+
<h4>Subscribe to PythonPune Google Group</h4>
35+
<form action="http://groups.google.com/group/PythonPune/boxsubscribe">
36+
Email: <input type=text name=email>
37+
<input type=submit name="sub" value="Subscribe">
38+
</form>
39+
</div>
40+
</td>
41+
</tr>
42+
</table>
2043
<ul>
21-
<li><a href="/meetings">Meetings</a></li>
22-
<li><a href="/blog">Blog</a></li>
23-
<li><a href="/members">Members</a></li>
24-
<li><a href="http://groups.google.com/group/pythonpune">Google Group</a></li>
44+
<li><a href="/">Home</a></li>
45+
<li><a href="http://groups.google.com/group/pythonpune">Google Group</a></li>
46+
<li><a href="/meetings">Meetings</a></li>
47+
<li><a href="/blog">Blog</a></li>
48+
<li><a href="/members">Members</a></li>
49+
<li><a href="/resources">Resources</a></li>
50+
<br/>
51+
<li><a href="/companies">Company Catalog <em>(Under Construction)</em></a></li>
52+
<li><a href="http://python-india-jobs.github.com">Python India Jobs <em>(Under Construction)</em></a></li>
2553
</ul>
2654
</div>
2755
</header>
@@ -38,9 +66,8 @@ <h2>Pune Pythonistas and their discussions and events.</h2>
3866

3967
</body>
4068
<script type="text/javascript">
41-
document.getElementById("forum_embed").src =
42-
"https://groups.google.com/forum/embed/?place=forum/pythonpune" +
43-
"&theme=default&showtabs=false&hideforumtitle=true&showpopout=true" +
44-
encodeURIComponent(window.location.href);
69+
$(document).ready(function() {
70+
page_callback();
71+
});
4572
</script>
4673
</html>
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
layout: entry
3-
title: Website for pythonpune
3+
title: Website for PythonPune
44
category: blog
55
---
66

7-
We've created a website for pythonpune. Hope this helps put together various information about pythonpune and its activities and discussions in one place from where it can be referred to easily.
7+
We've created a website for PythonPune. Hope this helps put together various information about pythonpune and its activities and discussions in one place from where it can be referred to easily.
88

9-
The website is currently accessible at [http://pythonpune.github.com](http://pythonpune.github.com) (url likely to be changed soon)
9+
The website is accessible at [http://pune.python.org.in](http://pune.python.org.in).
10+
11+
*[Update 2012-12-11]*: updated URL to point to a sub-domain of python.org.in.
1012

atom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ layout: nil
55
<feed xmlns="http://www.w3.org/2005/Atom">
66

77
<title>PythonPune</title>
8-
<link href="http://pythonpune.github.com/"/>
9-
<link type="application/atom+xml" rel="self" href="http://pythonpune.github.com/atom.xml"/>
8+
<link href="http://pune.python.org.in/"/>
9+
<link type="application/atom+xml" rel="self" href="http://pune.python.org.in/atom.xml"/>
1010
<updated>{{ site.time | date_to_xmlschema }}</updated>
11-
<id>http://pythonpune.github.com/</id>
11+
<id>http://pune.python.org.in/</id>
1212
<author>
1313
<name>PythonPune</name>
1414
</author>
1515

1616
{% for post in site.posts %}
1717
<entry>
18-
<id>http://pythonpune.github.com{{ post.id }}</id>
19-
<link type="text/html" rel="alternate" href="http://pythonpune.github.com{{ post.url }}"/>
18+
<id>http://pune.python.org.in{{ post.id }}</id>
19+
<link type="text/html" rel="alternate" href="http://pune.python.org.in{{ post.url }}"/>
2020
<title>{{ post.title }}</title>
2121
<published>{{ post.date | date_to_xmlschema }}</published>
2222
<updated>{{ post.date | date_to_xmlschema }}</updated>

companies/how-to.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
---
4+
### _Note: This is a page primarily for internal communication between pythonpune members. Will eventually be deleted._
5+
6+
### _Note: This page is part of a set of pages still being evolved and thus under construction_
7+
8+
### What companies qualify
9+
10+
* Companies with development centers in Pune using Python, and
11+
* Those who state (and we believe it likely to be true) have at least one full time developer working in/on/with python in Pune
12+
* Note: usage of python could include using it to write test cases or system administration. Does not need to be coding only.
13+
14+
### What information to add about the company
15+
16+
* Some of the projects in python (especially for projects / services companies)
17+
* Nature of product in python (especially for product / saas company)
18+
* What python tools are used
19+
* How is python used
20+
* Any views / opinions about python
21+
* Any python developers and their work you might want to refer to
22+
23+
### How should this information be filled
24+
25+
1. Ideally someone from the company should fill out this information (needs to be a markdown + git + pull request literate person) (Will publish a contact email address soon)
26+
1. Else company can mail information to one of the pythonpune members who can enter it in .md format & issue a pull request
27+
1. Else PythonPune members can add the information about known companies working with python and we can over a period of time replace the information with that received by the company (May be the best way to get started). When information is not provided by the company a link to a email-id/webform where a company can contact the webmasters for corrections must be provided.

companies/index.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: default
3+
---
4+
<h3><em>Note: This page and company catalog is still under construction</em></h3>
5+
<h3>Company Catalog: Companies developing software using Python in Pune</h3>
6+
<em>Note: This page lists information about companies with development centers in Pune using python. The information is from the companies themselves or based on the awareness of pythonpune members. Please feel free to contact the site administrators for any corrections etc.</em><br/>
7+
<table id="companies_table">
8+
<thead>
9+
<tr>
10+
<th>Name</th>
11+
<th>URL</th>
12+
</tr>
13+
</thead>
14+
<tbody>
15+
{% for page in site.pages %}
16+
{% capture prefix %}{{page.url | truncate: 17, ''}}{% endcapture%}
17+
{% if prefix == "/companies/pages/" %}
18+
<tr>
19+
<td><a href="{{page.url}}">{{page.name}}</a></td>
20+
<td><a href="{{page.company_url}}">{{page.company_url}}</a></td>
21+
</tr>
22+
{% endif %}
23+
{% endfor %}
24+
</tbody>
25+
</table>
26+
<script>
27+
function page_callback() {
28+
$("#companies_table tbody tr").tsort();
29+
}
30+
</script>

companies/pages/sample.company.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: company
3+
name: Some company
4+
company_url: http://company.url.dummy
5+
---
6+
7+
## About Python usage in the company
8+
9+
Stuff here.

0 commit comments

Comments
 (0)