mariuscoto / github-connect

Github-connect is the app that quantifies your contributions to the open-source world, helps you engage with other projects and bake new project ideas.
http://github-connect.herokuapp.com/
MIT License
2 stars 12 forks source link

More programming languages #72

Closed mariuscoto closed 10 years ago

mariuscoto commented 10 years ago

Add more programming languages to lists.

mateioprea commented 10 years ago

added more here

mariuscoto commented 10 years ago

There are also these files that need to me modified:

It also may be a good idea to have them all stored in one place, so we can easily add/remove more. Check this file (https://github.com/cmarius02/github-connect/blob/master/model/points.js) for macros.

While at it, please set a selected value in places where we have one, like (https://github.com/cmarius02/github-connect/blob/master/views/idea.jade#L134). You can get the selected value with #{idea.lang} and set value in selectpicker with 'selected' atribute.

In the end it should look like this:

select.selectpicker.span5(name='lang', type='text')
- each o in POINTS.LANG
  - if (o == idea.lang)
    option(selected)= o
  - else
    option= o
mateioprea commented 10 years ago

ok. i'll modify that tonight.