Changes between Version 13 and Version 14 of TeamCalendarPlugin


Ignore:
Timestamp:
Nov 24, 2015, 9:25:23 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TeamCalendarPlugin

    v13 v14  
    2121== Download
    2222
    23 Download the zipped source from [download:teamcalendarplugin here].
     23Download the zipped source from [export:teamcalendarplugin here].
    2424
    2525== Source
    2626
    27 You can check out TeamCalendarPlugin from [http://trac-hacks.org/svn/teamcalendarplugin here] using Subversion, or [source:teamcalendarplugin browse the source] with Trac.
     27You can check out TeamCalendarPlugin from [/svn/teamcalendarplugin here] using Subversion, or [source:teamcalendarplugin browse the source] with Trac.
    2828
    2929== Installation
    3030
    31 === Prerequisites
    32 
    3331Note that the plugin is currently tied to MySQL. Updates to make it more database agnostic would be welcome. See #4243, MySQL Testers needed!
    3432
    35 === Installation steps
    36 
    37 Install [http://trac.edgewall.org/wiki/TracPlugins#InstallingaTracPlugin as usual].
     33General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    3834
    3935For MySQL, the table can be created as follows:
     
    7369}}}
    7470
    75 == Under the hood
     71== Technical notes
    7672
    77 This plugin adds a new tab, Team Calendar, to users with the `TEAMCALENDAR_VIEW` permission. This shows a simple tables with dates running down the rows and team members across the columns. Users with `TEAMCALENDAR_UPDATE_OWN` permissions can change the state of the tick boxes under their own name, and save the results. Users with `TEAMCALENDAR_UPDATE_OTHERS` permission can update everyone's.
     73This plugin adds a new tab, Team Calendar, to users with the `TEAMCALENDAR_VIEW` permission. This shows a simple table with dates running down the rows and team members across the columns. Users with `TEAMCALENDAR_UPDATE_OWN` permissions can change the state of the tick boxes under their own name, and save the results. Users with `TEAMCALENDAR_UPDATE_OTHERS` permission can update everyone's.
    7874
    79 The table is populated form the team_availability table in the database.
     75The table is populated form the `team_availability` table in the database.
    8076
    8177The 'availability' column will contain 0 or 1 if populated through the GUI.
    82 It is left as a float to make it possible to store more granular availability, e.g. half-day, but there is no UI for this at present.
     78It is left as a float to make it possible to store more granular availability, eg half-day, but there is no business logic for this at present.
    8379
    84 The calendar does not do anything else by itself. However, the team_availability table can be used in reports.
     80The calendar does not do anything else by itself. However, the `team_availability` table can be used in reports.
    8581
    8682== Recent Changes