Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: A Mac OS X preference pane for easily configuring Rails applications with Passenger.
Homepage: http://www.fngtps.com/2008/06/putting-the-pane-back-into-deployment
Clone URL: git://github.com/alloy/passengerpane.git
Search Repo:
Changed name to "Passenger preference pane".
alloy (author)
Tue Jun 24 01:55:26 -0700 2008
commit  9e11aed0bb217f8280de53dd4721bd26fb4138dc
tree    53b0729a84e1a92d8804bb70dd76cb9f78bbb33d
parent  fb4c3665001b78387b18648e0e086602d2461472
...
39
40
41
42
 
43
44
45
...
39
40
41
 
42
43
44
45
0
@@ -39,7 +39,7 @@
0
 </tr>
0
 </table>
0
 
0
-<p>The Apache configuration generated by Passenger preferences can be found in <tt>/etc/apache2/passenger_pane_vhosts/</tt></p>
0
+<p>The Apache configuration generated by Passenger preference pane can be found in <tt>/etc/apache2/passenger_pane_vhosts/</tt></p>
0
 
0
 <p class="footer">Passenger preferences was created by <a href="http://www.fngtps.com">Fingertips</a>. Programming by Eloy Duran, interface design by Thijs van der Vossen. “Phusion Passenger” is a trademark of <a href="http://www.phusion.nl/">Phusion</a>. “Phusion” is a trademark of Hongli Lai &amp; Ninh Bui.</p>
0
   
...
155
156
157
158
 
159
160
161
...
155
156
157
 
158
159
160
161
0
@@ -155,7 +155,7 @@ class PrefPanePassenger < NSPreferencePane
0
     if @dirty_apps and !@applicationsController.content.empty?
0
       alert = OSX::NSAlert.alloc.init
0
       alert.messageText = 'This service has unsaved changes'
0
- alert.informativeText = 'Would you like to apply your changes before closing the Passenger preferences pane?'
0
+ alert.informativeText = 'Would you like to apply your changes before closing the Passenger preference pane?'
0
       alert.addButtonWithTitle 'Apply'
0
       alert.addButtonWithTitle 'Cancel'
0
       alert.addButtonWithTitle 'Don’t Apply'
...
41
42
43
44
 
45
46
47
...
41
42
43
 
44
45
46
47
0
@@ -41,7 +41,7 @@ class ConfigInstaller
0
       File.open(CONF, 'a') do |f|
0
         f << %{
0
 
0
-# Added by the Passenger preferences pane
0
+# Added by the Passenger preference pane
0
 # Make sure to include the Passenger configuration (the LoadModule,
0
 # PassengerRoot, and PassengerRuby directives) before this section.
0
 <IfModule passenger_module>
...
57
58
59
60
 
61
62
63
...
73
74
75
76
 
77
78
79
...
93
94
95
96
 
97
98
99
...
57
58
59
 
60
61
62
63
...
73
74
75
 
76
77
78
79
...
93
94
95
 
96
97
98
99
0
@@ -57,7 +57,7 @@ describe "ConfigInstaller" do
0
     File.expects(:open).with(conf, 'a').yields(file_mock)
0
     file_mock.expects(:<<).with(%{
0
 
0
-# Added by the Passenger preferences pane
0
+# Added by the Passenger preference pane
0
 # Make sure to include the Passenger configuration (the LoadModule,
0
 # PassengerRoot, and PassengerRuby directives) before this section.
0
 <IfModule passenger_module>
0
@@ -73,7 +73,7 @@ describe "ConfigInstaller" do
0
     File.stubs(:read).with(conf).returns(%{
0
 Include /private/etc/apache2/other/*.conf
0
 
0
-# Added by the Passenger preferences pane
0
+# Added by the Passenger preference pane
0
 # Make sure to include the Passenger configuration (the LoadModule,
0
 # PassengerRoot, and PassengerRuby directives) before this section.
0
 <IfModule passenger_module>
0
@@ -93,7 +93,7 @@ Include /private/etc/apache2/other/*.conf
0
     File.expects(:open).with(conf, 'a').yields(file_mock)
0
     file_mock.expects(:<<).with(%{
0
 
0
-# Added by the Passenger preferences pane
0
+# Added by the Passenger preference pane
0
 # Make sure to include the Passenger configuration (the LoadModule,
0
 # PassengerRoot, and PassengerRuby directives) before this section.
0
 <IfModule passenger_module>

Comments

    No one has commented yet.