Switch to unified view

a/pyforge/docs/install.rst b/pyforge/docs/install.rst
...
...
36
    ~$ . anvil/bin/activate
36
    ~$ . anvil/bin/activate
37
    (anvil)~$ 
37
    (anvil)~$ 
38
38
39
Now that that's out of the way, we'll go ahead and install turbogears::
39
Now that that's out of the way, we'll go ahead and install turbogears::
40
40
41
    (anvil)~$ easy_install pylons==0.9.7 # TurboGears 2 doesn't work with Pylons 1.0
41
    (anvil)~$ easy_install -i http://www.turbogears.org/2.1/downloads/current/index tg.devtools TurboGears2
42
    (anvil)~$ easy_install -i http://www.turbogears.org/2.1/downloads/current/index tg.devtools TurboGears2
43
44
And the tip of easywidgets::
45
46
    (anvil)~$ cd ~/src
47
    (anvil)~/src$ hg clone http://bitbucket.org/rick446/easywidgets
48
    (anvil)~/src$ cd easywidgets
49
    (anvil)~/src/easywidgets$ python setup.py develop
42
50
43
Installing the code
51
Installing the code
44
-------------------------
52
-------------------------
45
53
46
.. sidebar:: System Required Packages
54
.. sidebar:: System Required Packages
...
...
65
<http://merciless.sourceforge.net>`_.  To do this, we'll check out the source
73
<http://merciless.sourceforge.net>`_.  To do this, we'll check out the source
66
from git::
74
from git::
67
75
68
    (anvil)~$ mkdir src
76
    (anvil)~$ mkdir src
69
    (anvil)~$ cd src
77
    (anvil)~$ cd src
70
    (anvil)~/src$ git clone ssh://merciless.git.sourceforge.net/gitroot/merciless/merciless Ming
78
    (anvil)~/src$ git clone git://merciless.git.sourceforge.net/gitroot/merciless/merciless Ming
71
79
72
Now, we'll need to set up Ming for development work::
80
Now, we'll need to set up Ming for development work::
73
81
74
    (anvil)~/src$ cd Ming
82
    (anvil)~/src$ cd Ming
75
    (anvil)~/src/Ming$ python setup.py develop
83
    (anvil)~/src/Ming$ python setup.py develop
...
...
136
144
137
SOLR server
145
SOLR server
138
  This is our search and indexing server.  We have a custom config in
146
  This is our search and indexing server.  We have a custom config in
139
  ~/src/forge/solr_config::
147
  ~/src/forge/solr_config::
140
148
141
      (anvil)~/<path_to_solr>/example$ java -Dsolr.solr.home=~/src/forge/solr_config -jar start.jar
149
      (anvil)~/<path_to_solr>/example$ java -Dsolr.solr.home=$(cd;pwd)/src/forge/solr_config -jar start.jar
142
150
143
TurboGears application server
151
TurboGears application server
144
  This is the main application that will respond to web requests.  We'll get into
152
  This is the main application that will respond to web requests.  We'll get into
145
  details later.
153
  details later.
146
154