Skip to content

Commit

Permalink
Item12155: Removed some hard-coded paths, added screenshots to docs
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/TaskManagementContrib@15598 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
AlexisHazell authored and AlexisHazell committed Oct 15, 2012
1 parent bcffd5d commit 1f0c3b3
Show file tree
Hide file tree
Showing 11 changed files with 52 additions and 5 deletions.
40 changes: 40 additions & 0 deletions data/System/TaskManagementContrib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,36 @@ One line description, required for extensions repository catalog.
* UI designed with smartphones in mind.
* Easily modify presentation of particular UI components via CSS.

---++ Screenshots

*Task List page*

<img src="%ATTACHURL%/tms1.png" width="400" /><br>

*Task List page with filtering functionality displayed*

<img src="%ATTACHURL%/tms2.png" width="400" /><br>

*Task Details page - part 1*

<img src="%ATTACHURL%/tms3.png" width="400" /><br>

*Task Details page - part 2*

<img src="%ATTACHURL%/tms4.png" width="200" /><br>

*Task Details page - part 3*

<img src="%ATTACHURL%/tms5.png" width="200" /><br>

*Task Details page with "Create new subtask" functionality displayed*

<img src="%ATTACHURL%/tms6.png" width="400" /><br>

*Task Details page with subtasks of current task displayed*

<img src="%ATTACHURL%/tms7.png" width="400" /><br>

---++ Installation

After installation, information about setup and use can be found in TMS.TMSAdministratorHelp and TMS.TMSUserHelp.
Expand All @@ -31,7 +61,17 @@ After installation, information about setup and use can be found in TMS.TMSAdmin
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | &nbsp; |
| 0.1.1 (16 Oct 2012): | Removed some hard-coded paths, added screenshots to docs |
| 0.1.0 (05 Oct 2012): | Initial version |
| Home: | http://foswiki.org/Extensions/%TOPIC% |
| Support: | http://foswiki.org/Support/%TOPIC% |

%META:FILEATTACHMENT{name="tms1.png" attachment="tms1.png" attr="" comment="TMS screenshot 1" date="1350307182" path="tms1.png" size="27697" version="1"}%
%META:FILEATTACHMENT{name="tms2.png" attachment="tms2.png" attr="" comment="TMS screenshot 2" date="1350307200" path="tms2.png" size="31077" version="1"}%
%META:FILEATTACHMENT{name="tms3.png" attachment="tms3.png" attr="" comment="TMS screenshot 3" date="1350307218" path="tms3.png" size="18843" version="1"}%
%META:FILEATTACHMENT{name="tms4.png" attachment="tms4.png" attr="" comment="TMS screenshot 4" date="1350307234" path="tms4.png" size="15687" version="1"}%
%META:FILEATTACHMENT{name="tms5.png" attachment="tms5.png" attr="" comment="TMS screenshot 5" date="1350307250" path="tms5.png" size="19571" version="1"}%
%META:FILEATTACHMENT{name="tms6.png" attachment="tms6.png" attr="" comment="TMS screenshot 6" date="1350307269" path="tms6.png" size="21140" version="1"}%
%META:FILEATTACHMENT{name="tms7.png" attachment="tms7.png" attr="" comment="TMS screenshot 7" date="1350307286" path="tms7.png" size="27442" version="1"}%
%META:PREFERENCE{name="ALLOWTOPICVIEW" title="ALLOWTOPICVIEW" type="Set" value=""}%
%META:PREFERENCE{name="PERMSET_VIEW" title="PERMSET_VIEW" type="Local" value="details"}%
8 changes: 4 additions & 4 deletions data/TMS/TaskListJavaScript.txt
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@

}

var rowFormat = '<tr><td colspan=\'5\' class=\'task\'><strong>Task:</strong> <a href=\'/foswiki/bin/edit/%TMSWEBNAME%/$topic?t=%GMTIME{"$epoch"}%;template=taskdetails\'>$formfield(Summary)</a></td></tr><tr><td colspan=\'5\'><em>Parent:</em> <span class=\'parent\'>$parent</span></td></tr><tr><td class=\'priority\'><em>Priority:</em><br>$formfield(Priority)</td><td class=\'deadline\'><em>Deadline:</em><br><span class=\'deadline\'>$formfield(Deadline)</span></td><td class=\'status\'><em>Status:</em><br>$formfield(Status)</td><td class=\'lead\'><em>Lead:</em><br><span class=\'lead\'>$formfield(Lead)</span></td><td class=\'tags\'><em>Tags:</em><br>$formfield(Tags)</td></tr>';
var rowFormat = '<tr><td colspan=\'5\' class=\'task\'><strong>Task:</strong> <a href=\'%SCRIPTURLPATH{view}%/%TMSWEBNAME%/$topic?t=%GMTIME{"$epoch"}%;template=taskdetails\'>$formfield(Summary)</a></td></tr><tr><td colspan=\'5\'><em>Parent:</em> <span class=\'parent\'>$parent</span></td></tr><tr><td class=\'priority\'><em>Priority:</em><br>$formfield(Priority)</td><td class=\'deadline\'><em>Deadline:</em><br><span class=\'deadline\'>$formfield(Deadline)</span></td><td class=\'status\'><em>Status:</em><br>$formfield(Status)</td><td class=\'lead\'><em>Lead:</em><br><span class=\'lead\'>$formfield(Lead)</span></td><td class=\'tags\'><em>Tags:</em><br>$formfield(Tags)</td></tr>';

var loadString = '/foswiki/bin/rest/RenderPlugin/tag?name=SEARCH;type=query;web=%TMSWEBNAME%;nonoise=on;format=' + encodeURIComponent(rowFormat) + ';order=' + sortOrder + ';param=' + encodeURIComponent(searchQuery);
var loadString = '%SCRIPTURLPATH{rest}%/RenderPlugin/tag?name=SEARCH;type=query;web=%TMSWEBNAME%;nonoise=on;format=' + encodeURIComponent(rowFormat) + ';order=' + sortOrder + ';param=' + encodeURIComponent(searchQuery);
$('#TaskList').load(loadString, function (response, status, xhr) {

if (status == "error") {
Expand Down Expand Up @@ -168,7 +168,7 @@
} else {
var resultFormat = '$formfield(Summary)';
var searchQuery = 'name="' + storedParent +'"';
$(this).load('/foswiki/bin/rest/RenderPlugin/tag?name=SEARCH;type=query;web=%TMSWEBNAME%;nonoise=on;format=' + encodeURIComponent(resultFormat) + ';param=' + encodeURIComponent(searchQuery));
$(this).load('%SCRIPTURLPATH{rest}%/RenderPlugin/tag?name=SEARCH;type=query;web=%TMSWEBNAME%;nonoise=on;format=' + encodeURIComponent(resultFormat) + ';param=' + encodeURIComponent(searchQuery));
}
});

Expand All @@ -177,4 +177,4 @@
}

</script>

2 changes: 1 addition & 1 deletion lib/Foswiki/Contrib/TaskManagementContrib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ our $VERSION = '$Rev$';
# date - a date in 1 Jun 2009 format. Three letter English month names only.
# Note: it's important that this string is exactly the same in the extension
# topic - if you use %$RELEASE% with BuildContrib this is done automatically.
our $RELEASE = '0.1.0';
our $RELEASE = '0.1.1';

our $SHORTDESCRIPTION = 'A simple Task Management System Wiki App.';;

Expand Down
7 changes: 7 additions & 0 deletions lib/Foswiki/Contrib/TaskManagementContrib/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ data/TMS/WebHome.txt 0664 TMS web home page
data/TMS/WebIndex.txt 0664 TMS web topic index
data/TMS/WebPreferences.txt 0664 TMS web preferences
data/TMS/WebTopicList.txt 0664 TMS web topic list
pub/System/TaskManagementContrib/tms1.png 0664 TMS screenshot 1
pub/System/TaskManagementContrib/tms2.png 0664 TMS screenshot 2
pub/System/TaskManagementContrib/tms3.png 0664 TMS screenshot 3
pub/System/TaskManagementContrib/tms4.png 0664 TMS screenshot 4
pub/System/TaskManagementContrib/tms5.png 0664 TMS screenshot 5
pub/System/TaskManagementContrib/tms6.png 0664 TMS screenshot 6
pub/System/TaskManagementContrib/tms7.png 0664 TMS screenshot 7
templates/taskdetails.tmpl 0664 Template for Task Details page
Binary file added pub/System/TaskManagementContrib/tms1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pub/System/TaskManagementContrib/tms7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1f0c3b3

Please sign in to comment.