| Summary | Allow more intuitive view of repository revisions for non-VCS-aware users |
| Queue | Chora |
| Queue Version | 2.0.1 |
| Type | Enhancement |
| State | Feedback |
| Priority | 1. Low |
| Owners | |
| Requester | jon (at) spriggs (dot) org (dot) uk |
| Created | 05/12/2008 (53 days ago) |
| Due | |
| Updated | 07/04/2008 (today) |
| Assigned | |
| Resolved | |
| Attachments | chora.diff ![]() |
| Milestone | |
| Patch | No |
to the ticket instead of pasting it)?
outlook?
subversion) has lessened interest.
I hope to be in a position to ramp this back up in a few weeks once a
few key people are available.
Do you have other changes/ideas that affect the app because of this
outlook?
the document is the most important aspect of the system, and it's only
the document store administrators who need to know about the version
number, the last person who committed it and the log. The file browser
would be acceptable, if we didn't need to occasionally see the history.
State ⇒ Feedback
and I'm not sure of how much use Chora is for people who don't know
about version control systems? If you want a file browser, use Gollem.
Patch ⇒
Milestone ⇒
Queue ⇒ Chora
Summary ⇒ Allow more intuitive view of repository revisions for non-VCS-aware users
Type ⇒ Enhancement
Priority ⇒ 1. Low
State ⇒ New
===================================================================
RCS file: /repository/chora/config/conf.xml,v
retrieving revision 1.13
diff -r1.13 conf.xml
95a96,104
<configboolean name="show_revision_on_filename_click"
desc="The default action when clicking on a file
in the browse view is to show the revision history of that file,
however, for those who are not used to version control systems, this is
not intuitive. Unticking this box makes the action of clicking on a file
to display the contents of the file, and clicking on the revision number
shows the revision history.">true</configboolean>
===================================================================
RCS file: /repository/chora/templates/directory/file.inc,v
retrieving revision 1.22
diff -r1.22 file.inc
9c9,14
< <a href="<?php echo $url ?>"><?php echo $name ?></a>
---
<a href="<?php echo $url ?>">
<?php else: ?>
<a href="<?php echo Chora::url('co', $fileName, array('r' => $head)) ?>">
<?php endif; ?>
<?php echo $name ?></a>
=> $head)) ?>"><?php echo $head ?></a></strong>
---
<?php if ($conf['show_revision_on_filename_click']): ?>
<a href="<?php echo Chora::url('co', $fileName, array('r' => $head)) ?>">
<?php else: ?>
<a href="<?php echo $url ?>">
<?php endif; ?>
<?php echo $head ?></a></strong>
to do whatever is needed to get this in, as I think this would be a
useful addition.