Changes between Initial Version and Version 1 of Recent Changes All


Ignore:
Timestamp:
Apr 29, 2014, 12:11:12 PM (10 years ago)
Author:
YT Hwang
Comment:

Trac 전체 변경 사항 나열 페이지

Legend:

Unmodified
Added
Removed
Modified
  • Recent Changes All

    v1 v1  
     1{{{#!div class="trac-recent-changes"
     2{{{#!SQLTable
     3SELECT name as '항목', author as '작성자', DATE_FORMAT(FROM_UNIXTIME(time / 1000000), '%Y-%m-%d %H:%i') as '시간', description as '설명'
     4FROM (
     5(SELECT CONCAT('[', type, ':"', id, '"]의 첨부 파일 [attachment:"', filename, ':', type, ':', id, '" ', filename, ']') as name, author, time, description
     6FROM attachment)
     7UNION
     8(SELECT CONCAT('[milestone:"', name, '"]') as name, '' as author, completed as time, description
     9FROM milestone
     10WHERE completed != 0)
     11UNION
     12(SELECT CONCAT(repository.value, '의 변경사항 [changeset:', rev * 1, '/', repository.value, ' "[', rev * 1, ']"]') as name, author, time, message as description
     13FROM revision
     14JOIN repository ON repos = id AND name='name')
     15UNION
     16(SELECT CONCAT('티켓 #', id) as name, reporter as author, time, summary as description
     17FROM ticket)
     18UNION
     19(SELECT CONCAT('티켓 #', ticket) as name, author, time, newvalue as description
     20FROM ticket_change
     21WHERE field = 'comment')
     22UNION
     23(SELECT CONCAT('[wiki:', name, ']') as name, author, time, comment as description
     24FROM wiki
     25WHERE author != 'trac')
     26ORDER BY (UNIX_TIMESTAMP() * 1000000 - time)
     27) AS X
     28LIMIT 5
     29}}}
     30}}}