Skip to content

Commit

Permalink
Quick links update
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Aug 30, 2011
1 parent b69c068 commit 14ee271
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contribute.markdown
Expand Up @@ -5,15 +5,15 @@ title: How To Contribute ?

# How To Contribute ? #

You can easily contribute to the Propel project since all projects are hosted by [Github](http://www.github.com).
You just have to _fork_ the Propel project on the [PropelORM organization](http://www.github.com/propelorm) and
You can easily contribute to the Propel project since all projects are hosted by [Github](https://github.com).
You just have to _fork_ the Propel project on the [PropelORM organization](https://github.com/propelorm) and
to provide Pull Requests or to submit issues. Note, we are using [Git](http://git-scm.com) as main Source Code Management.

The Propel organization maintains four projects:

* [Propel](http://www.github.com/propelorm/Propel) : the main project.
* [PropelBundle](http://www.github.com/propelorm/PropelBundle) : a bundle to integrate Propel with [Symfony2](http://www.symfony.com).
* [sfPropelORMPlugin](http://www.github.com/propelorm/sfPropelORMPlugin) : a plugin to integrate Propel with [symfony 1.x](http://www.symfony-project.org);
* [Propel](http://github.com/propelorm/Propel) : the main project.
* [PropelBundle](http://github.com/propelorm/PropelBundle) : a bundle to integrate Propel with [Symfony2](http://www.symfony.com).
* [sfPropelORMPlugin](http://github.com/propelorm/sfPropelORMPlugin) : a plugin to integrate Propel with [symfony 1.x](http://www.symfony-project.org);
* [propel-docs](https://github.com/propelorm/propel-docs) : the Propel documentation (aka this website).

## Submit an issue ##
Expand Down
31 changes: 31 additions & 0 deletions txt2md.sh
@@ -0,0 +1,31 @@
#!/bin/sh

if [ -z $1 ] ; then
echo "Aborted."
exit 1
fi

sed -i 's/======/######/g' $1
sed -i 's/=====/#####/g' $1
sed -i 's/====/####/g' $1
sed -i 's/===/###/g' $1
sed -i 's/^==/##/g' $1
sed -i 's/==$/##/g' $1
sed -i 's/^=/#/g' $1
sed -i 's/=$/#/g' $1

sed -i "s/'''Tip''': />\*\*Tip\*\*<br \/>/g" $1

sed -i -e 's/{{{\n#!/{% highlight /g' $1
sed -i 's/}}}/{% endhighlight %}/g' $1

sed -i -e 's/\[\[PageOutline\]\]\n//' $1

sed -i "s/''/_/g" $1

sed -i 's/highlight php$/highlight php %}/' $1
sed -i 's/highlight sh$/highlight bash %}/' $1
sed -i 's/highlight bash$/highlight bash %}/' $1
sed -i 's/highlight ini$/highlight ini %}/' $1
sed -i 's/highlight sql$/highlight sql %}/' $1
sed -i 's/highlight xml$/highlight xml %}/' $1

0 comments on commit 14ee271

Please sign in to comment.