ktec-subtrac 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/lib/subtrac.rb +6 -0
- data/lib/subtrac/templates/location.erb +1 -1
- data/lib/subtrac/templates/projects/blank/trac/wiki/WikiStart +4 -4
- data/lib/subtrac/templates/projects/new/svn/trunk/trac/wiki/WikiStart +9 -24
- data/lib/subtrac/templates/projects/new/trac/wiki/WikiStart +14 -6
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/subtrac.rb
CHANGED
@@ -143,6 +143,12 @@ module Subtrac
|
|
143
143
|
def locations_dir
|
144
144
|
@locations_dir ||= File.join(install_dir,@APP_CONFIG[:dirs][:locations])
|
145
145
|
end
|
146
|
+
|
147
|
+
# Urls
|
148
|
+
|
149
|
+
def svn_url
|
150
|
+
@svn_url ||= "http://#{server_hostname}#{@APP_CONFIG[:urls][:svn]}"
|
151
|
+
end
|
146
152
|
|
147
153
|
# LDAP
|
148
154
|
|
@@ -1,19 +1,19 @@
|
|
1
1
|
[[PageOutline]]
|
2
|
-
= Welcome to the
|
2
|
+
= Welcome to the <%= server_name %> for <%= project_name %> =
|
3
3
|
|
4
4
|
This is the home of development for <%= client %>. This page is editable by design. That means YOU. If something is missing, fix it. This is what you make of it so get involved.
|
5
5
|
|
6
6
|
== Starting Points ==
|
7
7
|
|
8
|
-
* [<%=
|
9
|
-
* [<%=
|
8
|
+
* [<%= svn_url %>/<%= client_name %> Browse all <%= client_name %> SVN Repositories]
|
9
|
+
* [<%= svn_url %>/<%= client_name %>/<%= project_name %> Browse the <%= project_name %> repository]
|
10
10
|
|
11
11
|
=== How to check this project out ===
|
12
12
|
|
13
13
|
Make sure you have subversion client installed, then you can check the project out using:
|
14
14
|
|
15
15
|
{{{
|
16
|
-
svn checkout
|
16
|
+
svn checkout <%= svn_url %>/<%= client_name %>/<%= project_name %>/trunk <%= project_name %>
|
17
17
|
}}}
|
18
18
|
|
19
19
|
=== Using SVN ===
|
@@ -1,41 +1,26 @@
|
|
1
1
|
[[PageOutline]]
|
2
|
-
= Welcome to the
|
2
|
+
= Welcome to the <%= server_name %> for <%= project_name %> =
|
3
3
|
|
4
|
-
This is the home of development for
|
4
|
+
This is the home of development for <%= client %>. This page is editable by design. That means YOU. If something is missing, fix it. This is what you make of it so get involved.
|
5
5
|
|
6
6
|
== Starting Points ==
|
7
7
|
|
8
|
-
* [
|
9
|
-
* [
|
8
|
+
* [<%= svn_url %>/<%= client_name %> Browse all <%= client_name %> SVN Repositories]
|
9
|
+
* [<%= svn_url %>/<%= client_name %>/<%= project_name %> Browse the <%= project_name %> repository]
|
10
10
|
|
11
11
|
=== How to check this project out ===
|
12
12
|
|
13
13
|
Make sure you have subversion client installed, then you can check the project out using:
|
14
14
|
|
15
15
|
{{{
|
16
|
-
svn checkout
|
16
|
+
svn checkout <%= svn_url %>/<%= client_name %>/<%= project_name %>/trunk <%= project_name %>
|
17
17
|
}}}
|
18
18
|
|
19
|
-
|
19
|
+
=== Using SVN ===
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
All aspects of Trac have been designed with the single goal to
|
25
|
-
'''help developers write great software''' while '''staying out of the way'''
|
26
|
-
and imposing as little as possible on a team's established process and
|
27
|
-
culture.
|
28
|
-
|
29
|
-
As all Wiki pages, this page is editable, this means that you can
|
30
|
-
modify the contents of this page simply by using your
|
31
|
-
web-browser. Simply click on the "Edit this page" link at the bottom
|
32
|
-
of the page. WikiFormatting will give you a detailed description of
|
33
|
-
available Wiki formatting commands.
|
34
|
-
|
35
|
-
TracGuide is a good place to start.
|
36
|
-
|
37
|
-
Enjoy! [[BR]]
|
38
|
-
''The Saint Team''
|
21
|
+
* [http://tortoisesvn.tigris.org/ For Windows use Tortoise SVN]
|
22
|
+
* [http://scplugin.tigris.org/ For OS X use SCPlugin]
|
23
|
+
* [http://theappleblog.com/2009/02/23/12-subversion-apps-for-os-x/ There's loads more if you don't like these]
|
39
24
|
|
40
25
|
== Starting Points ==
|
41
26
|
|
@@ -1,23 +1,31 @@
|
|
1
|
-
|
1
|
+
[[PageOutline]]
|
2
|
+
= Welcome to the <%= server_name %> for <%= project_name %> =
|
2
3
|
|
3
|
-
This is the home of development for
|
4
|
+
This is the home of development for <%= client %>. This page is editable by design. That means YOU. If something is missing, fix it. This is what you make of it so get involved.
|
4
5
|
|
5
6
|
== Starting Points ==
|
6
7
|
|
7
|
-
* [
|
8
|
-
* [
|
8
|
+
* [<%= svn_url %>/<%= client_name %> Browse all <%= client_name %> SVN Repositories]
|
9
|
+
* [<%= svn_url %>/<%= client_name %>/<%= project_name %> Browse the <%= project_name %> repository]
|
9
10
|
|
10
11
|
=== How to check this project out ===
|
11
12
|
|
12
13
|
Make sure you have subversion client installed, then you can check the project out using:
|
13
14
|
|
14
15
|
{{{
|
15
|
-
svn checkout
|
16
|
+
svn checkout <%= svn_url %>/<%= client_name %>/<%= project_name %>/trunk <%= project_name %>
|
16
17
|
}}}
|
17
18
|
|
18
|
-
|
19
19
|
=== Using SVN ===
|
20
20
|
|
21
21
|
* [http://tortoisesvn.tigris.org/ For Windows use Tortoise SVN]
|
22
22
|
* [http://scplugin.tigris.org/ For OS X use SCPlugin]
|
23
23
|
* [http://theappleblog.com/2009/02/23/12-subversion-apps-for-os-x/ There's loads more if you don't like these]
|
24
|
+
|
25
|
+
== Starting Points ==
|
26
|
+
|
27
|
+
* TracGuide -- Built-in Documentation
|
28
|
+
* [http://trac.edgewall.org/wiki/TracFaq Trac FAQ] -- Frequently Asked Questions
|
29
|
+
* TracSupport -- Trac Support
|
30
|
+
|
31
|
+
For a complete list of local wiki pages, see TitleIndex.
|