Skip to content

Commit 2c76d60

Browse files
author
S Rose
committed
Some files in the top-level didn't include the correct library, display the
header image, or use the container needed to apply styles. Also, added text to README.md.
1 parent 3531fe4 commit 2c76d60

File tree

5 files changed

+73
-7
lines changed

5 files changed

+73
-7
lines changed

Diff for: README.md

+53-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,53 @@
1-
# ps
2-
Pattern Sphere application, part of the Public Sphere Project.
1+
# Pattern Sphere
2+
3+
This is part of the [Public Sphere Project](https://publicsphereproject.org).
4+
5+
The purpose of the Pattern Sphere (PS) is to support the use of
6+
patterns and languages to help address difficult social and
7+
environmental problems collaboratively. In fact, the user covenant
8+
that registered users agree to stipulates that they use it that way.
9+
10+
Each "pattern" is a structured description of successful ideas and
11+
actions. Patterns are general, not recipes with precise
12+
instructions. They're intended to be adapted to meet the needs of the
13+
people using them. This approach is not a cure-all and it's not
14+
intended to replace other approaches. And the online approach that we
15+
need hasn't been developed.
16+
17+
The pattern language approach was first presented in A Pattern
18+
Language, a book devoted to human structures that promote beauty and
19+
life that contains 253 patterns. The Liberating Voices book has 136
20+
patterns and each pattern, from Civic Intelligence to Retreat and
21+
Reflection, focuses on positive social change.
22+
23+
The PS is intended to support people throughout the entire life-cycle
24+
of social change activities from creating new patterns and commenting
25+
on existing patterns to using patterns to develop new projects. As the
26+
PS provides more services, people, working individually or on teams,
27+
will be able to find patterns, select patterns to use, annotate
28+
patterns (for their own use or to help others), create new patterns,
29+
brainstorm with patterns, join teams, etc. etc. We also plan to offer
30+
alternative ways for people to perform each of these tasks — knowing
31+
that people have different styles and take different approaches.
32+
33+
Our work thus far on the PS system has been to develop services on an
34+
as-needed basis. Currently, individuals and teams can select patterns
35+
and comment on them which is translated into a group assessment. We
36+
have worked with the two groups listed below, the Limits Workshops
37+
community and the Poetry and Permaculture class of the Comparative
38+
History of Ideas (CHID) department at the University of Washington.
39+
40+
If patterns and pattern languages are to have any lasting and tangible
41+
effects, many capabilities need to be further developed, including
42+
federated pattern language repositories, support for collaboration,
43+
team workspaces, search capabilities, pattern sharing, etc. Developing
44+
this system will require the work of many people: UI/UX designers, PHP
45+
/ MySQL programmers, testers, pattern and pattern language experts,
46+
community development, outreach, and others. Specific tasks include:
47+
48+
- User interface — to replace what you see here
49+
- Importing patterns or pattern info
50+
- Designing and implementing process flows for pattern uses
51+
- Experimenting with and testing new approaches
52+
- Involving various communities in pattern deployment and development
53+
- Helping to manage the development effort

Diff for: activate.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
header("Pragma: no-cache");
2626

2727
set_include_path(get_include_path() . PATH_SEPARATOR . 'project');
28-
require "lib/nps.php";
28+
require "lib/ps.php";
2929

3030
DataStoreConnect();
3131
Initialize();
@@ -50,7 +50,10 @@
5050
5151
<body>
5252
53-
<h1>$title</h1>
53+
<header><h1>$title</h1></header>
54+
55+
<div id=\"poutine\">
56+
<img src=\"images/pattern-sphere-band.png\" id=\"gravy\">
5457
";
5558

5659
if(isset($_POST['submit']) || isset($key)) {
@@ -79,6 +82,7 @@
7982
<?php
8083
}
8184
?>
85+
</div>
8286
<?=FOOT?>
8387
</body>
8488
</html>

Diff for: register.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
header("Pragma: no-cache");
2222

2323
set_include_path(get_include_path() . PATH_SEPARATOR . 'project');
24-
require "lib/nps.php";
24+
require "lib/ps.php";
2525

2626
DataStoreConnect();
2727
Initialize();
@@ -39,8 +39,12 @@
3939
4040
<body>
4141
42+
<header>
4243
<h1>$title</h1>
44+
</header>
4345
46+
<div id=\"poutine\">
47+
<img src=\"images/pattern-sphere-band.png\" id=\"gravy\">
4448
";
4549

4650
// Form data.
@@ -172,6 +176,7 @@
172176
<?php
173177
}
174178
?>
179+
</div>
175180
<?=FOOT?>
176181
</body>
177182
</html>

Diff for: reset.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
header("Pragma: no-cache");
5858

5959
set_include_path(get_include_path() . PATH_SEPARATOR . 'project');
60-
require "lib/nps.php";
60+
require "lib/ps.php";
6161

6262
DataStoreConnect();
6363
Initialize();
@@ -113,7 +113,12 @@
113113

114114
<body>
115115

116+
<header>
116117
<h1><?=$title?></h1>
118+
</header>
119+
120+
<div id=poutine">
121+
<img src="images/pattern-sphere-band.png" id="gravy">
117122

118123
<?php
119124

@@ -184,6 +189,7 @@
184189
<?php
185190
}
186191
?>
192+
</div>
187193
<?=FOOT?>
188194
</body>
189195
</html>

Diff for: test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
set_include_path(get_include_path() . PATH_SEPARATOR . 'project');
3-
require 'lib/nps.php';
3+
require 'lib/ps.php';
44
DataStoreConnect();
55
Initialize();
66
?>

0 commit comments

Comments
 (0)