public
Description: The ultra-lightweight ultra-flexible blogging engine with a fetish for birds and misspellings.
Homepage: http://chyrp.net/
Clone URL: git://github.com/vito/chyrp.git
Click here to lend your support to: chyrp and make a donation at www.pledgie.com !
* Tweaked the user creation form.
* Documentation fix in Model.php.
vito (author)
Sun Nov 02 07:40:28 -0800 2008
commit  88fcd86d2385c9a7f307dab9b58c0dd64d2b8902
tree    15fe2c20dd1b2189bdb1651c2605721435574b5c
parent  c3d2b2820162af5a9c669aa12b460c7913d82791
...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
...
35
36
37
38
 
39
40
41
42
43
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
46
47
...
6
7
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
10
11
...
21
22
23
 
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
0
@@ -6,20 +6,6 @@
0
             <h1>${ "Add User" | translate }</h1>
0
             <form id="new_user" class="split" action="{% admin "add_user" %}" method="post" accept-charset="utf-8" enctype="multipart/form-data">
0
                 <fieldset>
0
-                    <h2>${ "Information" | translate }</h2>
0
-                    <p>
0
-                        <label for="full_name">${ "Full Name" | translate }</label>
0
-                        <input class="text" type="text" name="full_name" value="" id="full_name" />
0
-                    </p>
0
-                    <p>
0
-                        <label for="email">${ "E-Mail" | translate }</label>
0
-                        <input class="text" type="text" name="email" value="" id="email" />
0
-                    </p>
0
-                    <p>
0
-                        <label for="website">${ "Website" | translate }</label>
0
-                        <input class="text" type="text" name="website" value="" id="website" />
0
-                    </p>
0
-
0
                     <h2>${ "Settings" | translate }</h2>
0
                     <p>
0
                         <label for="login">${ "Login" | translate }</label>
0
@@ -35,13 +21,29 @@
0
                         </select>
0
                     </p>
0
                     <p>
0
-                        <label for="password1">${ "Password?" | translate }</label>
0
+                        <label for="password1">${ "Password" | translate }</label>
0
                         <input class="text" type="password" name="password1" value="" id="password1" />
0
                     </p>
0
                     <p>
0
                         <label for="password2">${ "Confirm" | translate }</label>
0
                         <input class="text" type="password" name="password2" value="" id="password2" />
0
                     </p>
0
+
0
+                    <h2>${ "Information" | translate }</h2>
0
+                    <p>
0
+                        <label for="full_name">${ "Full Name" | translate }</label>
0
+                        <input class="text" type="text" name="full_name" value="" id="full_name" />
0
+                    </p>
0
+                    <p>
0
+                        <label for="email">${ "E-Mail" | translate }</label>
0
+                        <input class="text" type="text" name="email" value="" id="email" />
0
+                    </p>
0
+                    <p>
0
+                        <label for="website">${ "Website" | translate }</label>
0
+                        <input class="text" type="text" name="website" value="" id="website" />
0
+                    </p>
0
+
0
+
0
                     ${ trigger.call("new_user_fields") }
0
 
0
                     <br />
...
364
365
366
 
367
368
369
...
383
384
385
 
386
387
388
...
364
365
366
367
368
369
370
...
384
385
386
387
388
389
390
0
@@ -364,6 +364,7 @@
0
          *     $text - The text to show for the link.
0
          *     $before - If the link can be shown, show this before it.
0
          *     $after - If the link can be shown, show this after it.
0
+         *     $classes - Extra CSS classes for the link, space-delimited.
0
          */
0
         public function edit_link($text = null, $before = null, $after = null, $classes = "") {
0
             if (!$this->editable())
0
@@ -383,6 +384,7 @@
0
          *     $text - The text to show for the link.
0
          *     $before - If the link can be shown, show this before it.
0
          *     $after - If the link can be shown, show this after it.
0
+         *     $classes - Extra CSS classes for the link, space-delimited.
0
          */
0
         public function delete_link($text = null, $before = null, $after = null, $classes = "") {
0
             if (!$this->deletable())

Comments