/* ** Copyright (c) 2007 D. Richard Hipp ** ** This program is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public ** License version 2 as published by the Free Software Foundation. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** You should have received a copy of the GNU General Public ** License along with this library; if not, write to the ** Free Software Foundation, Inc., 59 Temple Place - Suite 330, ** Boston, MA 02111-1307, USA. ** ** Author contact information: ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ******************************************************************************* ** ** This file contains code to implement the "info" command. The ** "info" command gives command-line access to information about ** the current tree, or a particular artifact or baseline. */ #include "config.h" #include "info.h" #include /* ** Print common information about a particular record. ** ** * The UUID ** * The record ID ** * mtime and ctime ** * who signed it */ void show_common_info(int rid, const char *zUuidName, int showComment){ Stmt q; char *zComment = 0; db_prepare(&q, "SELECT uuid" " FROM blob WHERE rid=%d", rid ); if( db_step(&q)==SQLITE_ROW ){ /* 01234567890123 */ printf("%-13s %s\n", zUuidName, db_column_text(&q, 0)); } db_finalize(&q); db_prepare(&q, "SELECT uuid FROM plink JOIN blob ON pid=rid " " WHERE cid=%d", rid); while( db_step(&q)==SQLITE_ROW ){ const char *zUuid = db_column_text(&q, 0); printf("parent: %s\n", zUuid); } db_finalize(&q); db_prepare(&q, "SELECT uuid FROM plink JOIN blob ON cid=rid " " WHERE pid=%d", rid); while( db_step(&q)==SQLITE_ROW ){ const char *zUuid = db_column_text(&q, 0); printf("child: %s\n", zUuid); } db_finalize(&q); if( zComment ){ printf("comment:\n%s\n", zComment); free(zComment); } } /* ** COMMAND: info ** ** Usage: %fossil info ?ARTIFACT-ID|FILENAME? ** ** With no arguments, provide information about the current tree. ** If an argument is specified, provide information about the object ** in the respository of the current tree that the argument refers ** to. Or if the argument is the name of a repository, show ** information about that repository. */ void info_cmd(void){ i64 fsize; if( g.argc!=2 && g.argc!=3 ){ usage("?FILENAME|ARTIFACT-ID?"); } if( g.argc==3 && (fsize = file_size(g.argv[2]))>0 && (fsize&0x1ff)==0 ){ db_open_config(); db_record_repository_filename(g.argv[2]); db_open_repository(g.argv[2]); printf("project-code: %s\n", db_get("project-code", "")); printf("project-name: %s\n", db_get("project-name", "")); printf("server-code: %s\n", db_get("server-code", "")); return; } db_must_be_within_tree(); if( g.argc==2 ){ int vid; /* 012345678901234 */ db_record_repository_filename(0); printf("repository: %s\n", db_lget("repository", "")); printf("local-root: %s\n", g.zLocalRoot); printf("project-code: %s\n", db_get("project-code", "")); printf("server-code: %s\n", db_get("server-code", "")); vid = db_lget_int("checkout", 0); if( vid==0 ){ printf("checkout: nil\n"); }else{ show_common_info(vid, "checkout:", 1); } }else{ int rid; rid = name_to_rid(g.argv[2]); if( rid==0 ){ fossil_panic("no such object: %s\n", g.argv[2]); } show_common_info(rid, "uuid:", 1); } } /* ** Show information about descendants of a baseline. Do this recursively ** to a depth of N. Return true if descendants are shown and false if not. */ static int showDescendants(int pid, int depth, const char *zTitle){ Stmt q; int cnt = 0; db_prepare(&q, "SELECT plink.cid, blob.uuid, datetime(plink.mtime, 'localtime')," " coalesce(event.euser,event.user)," " coalesce(event.ecomment,event.comment)" " FROM plink, blob, event" " WHERE plink.pid=%d" " AND blob.rid=plink.cid" " AND event.objid=plink.cid" " ORDER BY plink.mtime ASC", pid ); while( db_step(&q)==SQLITE_ROW ){ int n; int cid = db_column_int(&q, 0); const char *zUuid = db_column_text(&q, 1); const char *zDate = db_column_text(&q, 2); const char *zUser = db_column_text(&q, 3); const char *zCom = db_column_text(&q, 4); cnt++; if( cnt==1 ){ if( zTitle ){ @
%s(zTitle)
} @
    } @
  • hyperlink_to_uuid(zUuid); @ %w(zCom) (by %s(zUser) on %s(zDate)) if( depth ){ n = showDescendants(cid, depth-1, 0); }else{ n = db_int(0, "SELECT 1 FROM plink WHERE pid=%d", cid); } if( n==0 ){ db_multi_exec("DELETE FROM leaves WHERE rid=%d", cid); @ leaf } } db_finalize(&q); if( cnt ){ @
} return cnt; } /* ** Show information about ancestors of a baseline. Do this recursively ** to a depth of N. Return true if ancestors are shown and false if not. */ static void showAncestors(int pid, int depth, const char *zTitle){ Stmt q; int cnt = 0; db_prepare(&q, "SELECT plink.pid, blob.uuid, datetime(event.mtime, 'localtime')," " coalesce(event.euser,event.user)," " coalesce(event.ecomment,event.comment)" " FROM plink, blob, event" " WHERE plink.cid=%d" " AND blob.rid=plink.pid" " AND event.objid=plink.pid" " ORDER BY event.mtime DESC", pid ); while( db_step(&q)==SQLITE_ROW ){ int cid = db_column_int(&q, 0); const char *zUuid = db_column_text(&q, 1); const char *zDate = db_column_text(&q, 2); const char *zUser = db_column_text(&q, 3); const char *zCom = db_column_text(&q, 4); cnt++; if( cnt==1 ){ if( zTitle ){ @
%s(zTitle)
} @
    } @
  • hyperlink_to_uuid(zUuid); @ %w(zCom) (by %s(zUser) on %s(zDate)) if( depth ){ showAncestors(cid, depth-1, 0); } } db_finalize(&q); if( cnt ){ @
} } /* ** Show information about baselines mentioned in the "leaves" table. */ static void showLeaves(void){ Stmt q; int cnt = 0; db_prepare(&q, "SELECT blob.uuid, datetime(event.mtime, 'localtime')," " coalesce(event.euser, event.user)," " coalesce(event.ecomment,event.comment)" " FROM leaves, blob, event" " WHERE blob.rid=leaves.rid" " AND event.objid=leaves.rid" " ORDER BY event.mtime DESC" ); while( db_step(&q)==SQLITE_ROW ){ const char *zUuid = db_column_text(&q, 0); const char *zDate = db_column_text(&q, 1); const char *zUser = db_column_text(&q, 2); const char *zCom = db_column_text(&q, 3); cnt++; if( cnt==1 ){ @
Leaves
@
    } @
  • hyperlink_to_uuid(zUuid); @ %w(zCom) (by %s(zUser) on %s(zDate)) } db_finalize(&q); if( cnt ){ @
} } /* ** Show information about all tags on a given node. */ static void showTags(int rid, const char *zNotGlob){ Stmt q; int cnt = 0; db_prepare(&q, "SELECT tag.tagid, tagname, srcid, blob.uuid, value," " datetime(tagxref.mtime,'localtime'), tagtype" " FROM tagxref JOIN tag ON tagxref.tagid=tag.tagid" " LEFT JOIN blob ON blob.rid=tagxref.srcid" " WHERE tagxref.rid=%d AND tagname NOT GLOB '%s'" " ORDER BY tagname", rid, zNotGlob ); while( db_step(&q)==SQLITE_ROW ){ const char *zTagname = db_column_text(&q, 1); int srcid = db_column_int(&q, 2); const char *zUuid = db_column_text(&q, 3); const char *zValue = db_column_text(&q, 4); const char *zDate = db_column_text(&q, 5); int tagtype = db_column_int(&q, 6); cnt++; if( cnt==1 ){ @
Tags And Properties
@
    } @
  • @ %h(zTagname) if( zValue ){ @ = %h(zValue) }else if( tagtype==0 ){ @ Cancelled }else{ @ } if( srcid==0 ){ @ Inherited }else if( zUuid ){ @ From hyperlink_to_uuid(zUuid); } @ on %s(zDate) } db_finalize(&q); if( cnt ){ @
} } /* ** WEBPAGE: vinfo ** URL: /vinfo?name=RID|ARTIFACTID ** ** Return information about a baseline */ void vinfo_page(void){ Stmt q; int rid; int isLeaf; login_check_credentials(); if( !g.okRead ){ login_needed(); return; } rid = name_to_rid(PD("name","0")); if( rid==0 ){ style_header("Baseline Information Error"); @ No such object: %h(g.argv[2]) style_footer(); return; } isLeaf = !db_exists("SELECT 1 FROM plink WHERE pid=%d", rid); db_prepare(&q, "SELECT uuid, datetime(mtime, 'localtime'), user, comment" " FROM blob, event" " WHERE blob.rid=%d" " AND event.objid=%d", rid, rid ); if( db_step(&q)==SQLITE_ROW ){ const char *zUuid = db_column_text(&q, 0); char *zTitle = mprintf("Baseline [%.10s]", zUuid); char *zEUser, *zEComment; const char *zUser; const char *zComment; style_header(zTitle); login_anonymous_available(); free(zTitle); zEUser = db_text(0, "SELECT value FROM tagxref WHERE tagid=%d AND rid=%d", TAG_USER, rid); zEComment = db_text(0, "SELECT value FROM tagxref WHERE tagid=%d AND rid=%d", TAG_COMMENT, rid); zUser = db_column_text(&q, 2); zComment = db_column_text(&q, 3); @
Overview
@

@ @ if( g.okSetup ){ @ } if( zEUser ){ @ @ }else{ @ } if( zEComment ){ @ @ }else{ @ } @ if( g.okHistory ){ char *zShortUuid = mprintf("%.10s", zUuid); const char *zProjName = db_get("project-name", "unnamed"); @ @ @ @ free(zShortUuid); } @
SHA1 Hash:%s(zUuid)
Date:%s(db_column_text(&q, 1))
Record ID:%d(rid)
Edited User:%h(zEUser)
Original User:%h(zUser)
User:%h(zUser)
Edited Comment:%w(zEComment)
Original Comment:%w(zComment)
Comment:%w(zComment)
Timelines: @ ancestors @ | descendants @ | both @
Commands: @ diff @ | @ ZIP archive @ | manifest if( g.okWrite ){ @ | edit } @

}else{ style_header("Baseline Information"); login_anonymous_available(); } db_finalize(&q); showTags(rid, ""); @
File Changes
@
    db_prepare(&q, "SELECT a.name, b.name" " FROM mlink, filename AS a, filename AS b" " WHERE mid=%d" " AND a.fnid=mlink.fnid" " AND b.fnid=mlink.pfnid", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zName = db_column_text(&q, 0); const char *zPrior = db_column_text(&q, 1); @
  • Renamed: if( g.okHistory ){ @ %h(zPrior) to @ %h(zName)
  • }else{ @ %h(zPrior) to %h(zName) } } db_finalize(&q); db_prepare(&q, "SELECT name, pid, fid " " FROM mlink, filename" " WHERE mid=%d" " AND fid!=pid" " AND filename.fnid=mlink.fnid", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zName = db_column_text(&q, 0); int pid = db_column_int(&q, 1); int fid = db_column_int(&q, 2); if( pid && fid ){ @
  • Modified: }else if( fid ){ @
  • Added: }else if( pid ){ @
  • Deleted: } if( g.okHistory ){ @ %h(zName)
  • }else{ @ %h(zName) } } @
compute_leaves(rid, 0); showDescendants(rid, 2, "Descendants"); showLeaves(); showAncestors(rid, 2, "Ancestors"); style_footer(); } /* ** WEBPAGE: winfo ** URL: /winfo?name=RID ** ** Return information about a wiki page. */ void winfo_page(void){ Stmt q; int rid; login_check_credentials(); if( !g.okRdWiki ){ login_needed(); return; } rid = name_to_rid(PD("name","0")); if( rid==0 ){ style_header("Wiki Page Information Error"); @ No such object: %h(g.argv[2]) style_footer(); return; } db_prepare(&q, "SELECT substr(tagname, 6, 1000), uuid," " datetime(event.mtime, 'localtime'), user" " FROM tagxref, tag, blob, event" " WHERE tagxref.rid=%d" " AND tag.tagid=tagxref.tagid" " AND tag.tagname LIKE 'wiki-%%'" " AND blob.rid=%d" " AND event.objid=%d", rid, rid, rid ); if( db_step(&q)==SQLITE_ROW ){ const char *zName = db_column_text(&q, 0); const char *zUuid = db_column_text(&q, 1); char *zTitle = mprintf("Wiki Page %s", zName); style_header(zTitle); free(zTitle); login_anonymous_available(); @
Overview
@

@ @ if( g.okSetup ){ @ } @ if( g.okHistory ){ @ @ @ } @
Version:%s(zUuid)
Date:%s(db_column_text(&q, 2))
Record ID:%d(rid)
Original User:%s(db_column_text(&q, 3))
Commands: /* @ diff | */ @ history @ | raw-text @

}else{ style_header("Wiki Information"); rid = 0; } db_finalize(&q); showTags(rid, "wiki-*"); if( rid ){ Blob content; Manifest m; memset(&m, 0, sizeof(m)); blob_zero(&m.content); content_get(rid, &content); manifest_parse(&m, &content); if( m.type==CFTYPE_WIKI ){ Blob wiki; blob_init(&wiki, m.zWiki, -1); @
Content
wiki_convert(&wiki, 0, 0); blob_reset(&wiki); } manifest_clear(&m); } style_footer(); } /* ** WEBPAGE: finfo ** URL: /finfo?name=FILENAME ** ** Show the complete change history for a single file. */ void finfo_page(void){ Stmt q; const char *zFilename; char zPrevDate[20]; Blob title; login_check_credentials(); if( !g.okRead ){ login_needed(); return; } style_header("File History"); login_anonymous_available(); zPrevDate[0] = 0; zFilename = PD("name",""); db_prepare(&q, "SELECT a.uuid, substr(b.uuid,1,10), datetime(event.mtime,'localtime')," " coalesce(event.ecomment, event.comment)," " coalesce(event.euser, event.user)," " mlink.pid, mlink.fid, mlink.mid, mlink.fnid" " FROM mlink, blob a, blob b, event" " WHERE mlink.fnid=(SELECT fnid FROM filename WHERE name=%Q)" " AND a.rid=mlink.mid" " AND b.rid=mlink.fid" " AND event.objid=mlink.mid" " ORDER BY event.mtime DESC", zFilename ); blob_zero(&title); blob_appendf(&title, "History of "); hyperlinked_path(zFilename, &title); @

%b(&title)

blob_reset(&title); @ while( db_step(&q)==SQLITE_ROW ){ const char *zVers = db_column_text(&q, 0); const char *zUuid = db_column_text(&q, 1); const char *zDate = db_column_text(&q, 2); const char *zCom = db_column_text(&q, 3); const char *zUser = db_column_text(&q, 4); int fpid = db_column_int(&q, 5); int frid = db_column_int(&q, 6); int mid = db_column_int(&q, 7); int fnid = db_column_int(&q, 8); if( memcmp(zDate, zPrevDate, 10) ){ sprintf(zPrevDate, "%.10s", zDate); @ } @ @ @ } } db_finalize(&q); @
@ @
@ @ @
%s(zPrevDate)
@
@
%s(&zDate[11]) hyperlink_to_uuid(zVers); @ %h(zCom) (By: %h(zUser)) @ Id: %s(zUuid)/%d(frid) if( g.okHistory ){ @ [view] if( fpid ){ @ [diff] } @ @ [annotate] @
style_footer(); } /* ** Append the difference between two RIDs to the output */ static void append_diff(int fromid, int toid){ Blob from, to, out; content_get(fromid, &from); content_get(toid, &to); blob_zero(&out); text_diff(&from, &to, &out, 5); @ %h(blob_str(&out)) blob_reset(&from); blob_reset(&to); blob_reset(&out); } /* ** WEBPAGE: vdiff ** URL: /vdiff?name=RID ** ** Show all differences for a particular check-in. */ void vdiff_page(void){ int rid; Stmt q; char *zUuid; login_check_credentials(); if( !g.okRead ){ login_needed(); return; } style_header("Baseline Changes"); login_anonymous_available(); rid = name_to_rid(PD("name","")); if( rid==0 ){ fossil_redirect_home(); } db_prepare(&q, "SELECT pid, fid, name" " FROM mlink, filename" " WHERE mlink.mid=%d" " AND filename.fnid=mlink.fnid" " ORDER BY name", rid ); zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid); @

All Changes In Baseline hyperlink_to_uuid(zUuid); @

while( db_step(&q)==SQLITE_ROW ){ int pid = db_column_int(&q,0); int fid = db_column_int(&q,1); const char *zName = db_column_text(&q,2); @

%h(zName)

@
    append_diff(pid, fid);
    @ 
} db_finalize(&q); style_footer(); } /* ** Write a description of an object to the www reply. ** ** If the object is a file then mention: ** ** * It's uuid ** * All its filenames ** * The baselines it was checked-in on, with times and users ** ** If the object is a manifest, then mention: ** ** * It's uuid ** * date of check-in ** * Comment & user */ static void object_description( int rid, /* The artifact ID */ int linkToView /* Add viewer link if true */ ){ Stmt q; int cnt = 0; int nWiki = 0; db_prepare(&q, "SELECT filename.name, datetime(event.mtime), substr(a.uuid,1,10)," " coalesce(event.ecomment,event.comment)," " coalesce(event.euser,event.user)," " b.uuid" " FROM mlink, filename, event, blob a, blob b" " WHERE filename.fnid=mlink.fnid" " AND event.objid=mlink.mid" " AND a.rid=mlink.fid" " AND b.rid=mlink.mid" " AND mlink.fid=%d", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zName = db_column_text(&q, 0); const char *zDate = db_column_text(&q, 1); const char *zFuuid = db_column_text(&q, 2); const char *zCom = db_column_text(&q, 3); const char *zUser = db_column_text(&q, 4); const char *zVers = db_column_text(&q, 5); if( cnt>0 ){ @ Also file }else{ @ File } @ %h(zName) @ uuid %s(zFuuid) part of check-in hyperlink_to_uuid(zVers); @ %w(zCom) by %h(zUser) on %s(zDate). cnt++; } db_finalize(&q); db_prepare(&q, "SELECT substr(tagname, 6, 10000), datetime(event.mtime)," " coalesce(event.euser, event.user), uuid" " FROM tagxref, tag, event, blob" " WHERE tagxref.rid=%d" " AND tag.tagid=tagxref.tagid" " AND tag.tagname LIKE 'wiki-%%'" " AND event.objid=tagxref.rid" " AND blob.rid=tagxref.rid", rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zPagename = db_column_text(&q, 0); const char *zDate = db_column_text(&q, 1); const char *zUser = db_column_text(&q, 2); const char *zUuid = db_column_text(&q, 3); if( cnt>0 ){ @ Also wiki page }else{ @ Wiki page } @ [%h(zPagename)] @ uuid %s(zUuid) by %h(zUser) on %s(zDate). nWiki++; cnt++; } db_finalize(&q); if( nWiki==0 ){ db_prepare(&q, "SELECT datetime(mtime), user, comment, uuid, type" " FROM event, blob" " WHERE event.objid=%d" " AND blob.rid=%d", rid, rid ); while( db_step(&q)==SQLITE_ROW ){ const char *zDate = db_column_text(&q, 0); const char *zUuid = db_column_text(&q, 3); const char *zUser = db_column_text(&q, 1); const char *zCom = db_column_text(&q, 2); const char *zType = db_column_text(&q, 4); if( cnt>0 ){ @ Also } if( zType[0]=='w' ){ @ Wiki edit }else if( zType[0]=='t' ){ @ Ticket change }else if( zType[0]=='c' ){ @ Manifest of baseline }else{ @ Control file referencing } hyperlink_to_uuid(zUuid); @ %w(zCom) by %h(zUser) on %s(zDate). cnt++; } db_finalize(&q); } if( cnt==0 ){ char *zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid); @ Control file %s(zUuid). }else if( linkToView ){ @ [view] } } /* ** WEBPAGE: fdiff ** ** Two arguments, v1 and v2, are integers. Show the difference between ** the two records. */ void diff_page(void){ int v1 = name_to_rid(PD("v1","0")); int v2 = name_to_rid(PD("v2","0")); Blob c1, c2, diff; login_check_credentials(); if( !g.okRead ){ login_needed(); return; } style_header("Diff"); @

Differences From:

@
object_description(v1, 1); @
@

To:

@
object_description(v2, 1); @
@
@
  content_get(v1, &c1);
  content_get(v2, &c2);
  blob_zero(&diff);
  text_diff(&c1, &c2, &diff, 4);
  blob_reset(&c1);
  blob_reset(&c2);
  @ %h(blob_str(&diff))
  @ 
blob_reset(&diff); style_footer(); } /* ** WEBPAGE: raw ** URL: /raw?name=ARTIFACTID&m=TYPE ** ** Return the uninterpreted content of an artifact. Used primarily ** to view artifacts that are images. */ void rawartifact_page(void){ int rid; const char *zMime; Blob content; rid = name_to_rid(PD("name","0")); zMime = PD("m","application/x-fossil-artifact"); login_check_credentials(); if( !g.okRead ){ login_needed(); return; } if( rid==0 ){ cgi_redirect("/home"); } content_get(rid, &content); cgi_set_content_type(zMime); cgi_set_content(&content); } /* ** Render a hex dump of a file. */ static void hexdump(Blob *pBlob){ const unsigned char *x; int n, i, j, k; char zLine[100]; static const char zHex[] = "0123456789abcdef"; x = (const unsigned char*)blob_buffer(pBlob); n = blob_size(pBlob); for(i=0; i>24)&0xf]; zLine[1] = zHex[(i>>16)&0xf]; zLine[2] = zHex[(i>>8)&0xf]; zLine[3] = zHex[i&0xf]; zLine[4] = ':'; sprintf(zLine, "%04x: ", i); for(j=0; j<16; j++){ k = 5+j*3; zLine[k] = ' '; if( i+j>4]; zLine[k+2] = zHex[c&0xf]; }else{ zLine[k+1] = ' '; zLine[k+2] = ' '; } } zLine[53] = ' '; zLine[54] = ' '; for(j=0; j<16; j++){ k = j+55; if( i+j=0x20 && c<=0x7e ){ zLine[k] = c; }else{ zLine[k] = '.'; } }else{ zLine[k] = 0; } } zLine[71] = 0; @ %h(zLine) } } /* ** WEBPAGE: hexdump ** URL: /hexdump?name=ARTIFACTID ** ** Show the complete content of a file identified by ARTIFACTID ** as preformatted text. */ void hexdump_page(void){ int rid; Blob content; rid = name_to_rid(PD("name","0")); login_check_credentials(); if( !g.okRead ){ login_needed(); return; } if( rid==0 ){ cgi_redirect("/home"); } if( g.okAdmin ){ const char *zUuid = db_text("", "SELECT uuid FROM blob WHERE rid=%d", rid); if( db_exists("SELECT 1 FROM shun WHERE uuid='%s'", zUuid) ){ style_submenu_element("Unshun","Unshun", "%s/shun?uuid=%s&sub=1", g.zTop, zUuid); }else{ style_submenu_element("Shun","Shun", "%s/shun?shun=%s#addshun", g.zTop, zUuid); } } style_header("Hex Artifact Content"); @

Hexadecimal Content Of:

@
object_description(rid, 0); @
@
content_get(rid, &content); @
  hexdump(&content);
  @ 
style_footer(); } /* ** WEBPAGE: artifact ** URL: /artifact?name=ARTIFACTID ** ** Show the complete content of a file identified by ARTIFACTID ** as preformatted text. */ void artifact_page(void){ int rid; Blob content; const char *zMime; rid = name_to_rid(PD("name","0")); login_check_credentials(); if( !g.okRead ){ login_needed(); return; } if( rid==0 ){ cgi_redirect("/home"); } if( g.okAdmin ){ const char *zUuid = db_text("", "SELECT uuid FROM blob WHERE rid=%d", rid); if( db_exists("SELECT 1 FROM shun WHERE uuid='%s'", zUuid) ){ style_submenu_element("Unshun","Unshun", "%s/shun?uuid=%s&sub=1", g.zTop, zUuid); }else{ style_submenu_element("Shun","Shun", "%s/shun?shun=%s#addshun", g.zTop, zUuid); } } style_header("Artifact Content"); @

Content Of:

@
object_description(rid, 0); @
@
@
content_get(rid, &content); zMime = mimetype_from_content(&content); if( zMime==0 ){ @
    @ %h(blob_str(&content))
    @ 
style_submenu_element("Hex","Hex", "%s/hexdump?name=%d", g.zTop, rid); }else if( strncmp(zMime, "image/", 6)==0 ){ @ style_submenu_element("Hex","Hex", "%s/hexdump?name=%d", g.zTop, rid); }else{ @
    hexdump(&content);
    @ 
} @
style_footer(); } /* ** WEBPAGE: tinfo ** URL: /tinfo?name=ARTIFACTID ** ** Show the details of a ticket change control artifact. */ void tinfo_page(void){ int rid; Blob content; char *zDate; const char *zUuid; char zTktName[20]; Manifest m; login_check_credentials(); if( !g.okRdTkt ){ login_needed(); return; } rid = name_to_rid(PD("name","0")); if( rid==0 ){ fossil_redirect_home(); } zUuid = db_text("", "SELECT uuid FROM blob WHERE rid=%d", rid); if( g.okAdmin ){ if( db_exists("SELECT 1 FROM shun WHERE uuid='%s'", zUuid) ){ style_submenu_element("Unshun","Unshun", "%s/shun?uuid=%s&sub=1", g.zTop, zUuid); }else{ style_submenu_element("Shun","Shun", "%s/shun?shun=%s#addshun", g.zTop, zUuid); } } content_get(rid, &content); if( manifest_parse(&m, &content)==0 ){ fossil_redirect_home(); } if( m.type!=CFTYPE_TICKET ){ fossil_redirect_home(); } style_header("Ticket Change Details"); zDate = db_text(0, "SELECT datetime(%.12f)", m.rDate); memcpy(zTktName, m.zTicketUuid, 10); zTktName[10] = 0; @

Changes to ticket %s(zTktName)

@ @

By %h(m.zUser) on %s(zDate). See also: @ artifact content, and @ ticket history @

@ @
    free(zDate); ticket_output_change_artifact(&m); manifest_clear(&m); style_footer(); } /* ** WEBPAGE: info ** URL: info/ARTIFACTID ** ** The argument is a artifact ID which might be a baseline or a file or ** a ticket changes or a wiki editor or something else. ** ** Figure out what the artifact ID is and jump to it. */ void info_page(void){ const char *zName; Blob uuid; int rid, nName; zName = P("name"); if( zName==0 ) fossil_redirect_home(); nName = strlen(zName); if( nName<4 || nName>UUID_SIZE || !validate16(zName, nName) ){ switch( sym_tag_to_uuid(zName, &uuid) ){ case 1: { /* got one UUID, use it */ zName = blob_str(&uuid); break; } case 2: { /* go somewhere to show the multiple UUIDs */ tagview_page(); return; break; } default: { fossil_redirect_home(); break; } } } if( db_exists("SELECT 1 FROM ticket WHERE tkt_uuid GLOB '%s*'", zName) ){ tktview_page(); return; } rid = db_int(0, "SELECT rid FROM blob WHERE uuid GLOB '%s*'", zName); if( rid==0 ){ style_header("Broken Link"); @

    No such object: %h(zName)

    style_footer(); return; } if( db_exists("SELECT 1 FROM mlink WHERE mid=%d", rid) ){ vinfo_page(); }else if( db_exists("SELECT 1 FROM mlink WHERE fid=%d", rid) ){ finfo_page(); }else if( db_exists("SELECT 1 FROM tagxref JOIN tag USING(tagid)" " WHERE rid=%d AND tagname LIKE 'wiki-%%'", rid) ){ winfo_page(); }else if( db_exists("SELECT 1 FROM tagxref JOIN tag USING(tagid)" " WHERE rid=%d AND tagname LIKE 'tkt-%%'", rid) ){ tinfo_page(); }else if( db_exists("SELECT 1 FROM plink WHERE cid=%d", rid) ){ vinfo_page(); }else { artifact_page(); } } /* ** WEBPAGE: vedit ** URL: vedit?r=RID&c=NEWCOMMENT&u=NEWUSER ** ** Present a dialog for updating properties of a baseline: ** ** * The check-in user ** * The check-in comment ** * The background color. */ void vedit_page(void){ int rid; const char *zComment; const char *zNewComment; const char *zUser; const char *zNewUser; const char *zColor; const char *zNewColor; int fPropagateColor; char *zUuid; Blob comment; static const struct SampleColors { const char *zCName; const char *zColor; } aColor[] = { { "(none)", "" }, { "#c0ffc0", "#c0ffc0" }, { "#c0fff0", "#c0fff0" }, { "#c0f0ff", "#c0f0ff" }, { "#d0c0ff", "#d0c0ff" }, { "#ffc0ff", "#ffc0ff" }, { "#ffc0d0", "#ffc0d0" }, { "#fff0c0", "#fff0c0" }, { "#f0ffc0", "#f0ffc0" }, { "#c0c0c0", "#c0c0c0" }, }; int i; login_check_credentials(); if( !g.okWrite ){ login_needed(); return; } rid = atoi(PD("r","0")); zComment = db_text(0, "SELECT coalesce(ecomment,comment)" " FROM event WHERE objid=%d", rid); if( zComment==0 ) fossil_redirect_home(); zNewComment = PD("c",zComment); zUser = db_text(0, "SELECT coalesce(euser,user)" " FROM event WHERE objid=%d", rid); if( zUser==0 ) fossil_redirect_home(); zNewUser = PD("u",zUser); zColor = db_text("", "SELECT bgcolor" " FROM event WHERE objid=%d", rid); zNewColor = PD("clr",zColor); fPropagateColor = P("pclr")!=0; zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid); if( P("cancel") ){ cgi_redirectf("vinfo?name=%d", rid); } if( P("apply") ){ Blob ctrl; char *zDate; int nChng = 0; login_verify_csrf_secret(); blob_zero(&ctrl); zDate = db_text(0, "SELECT datetime('now')"); zDate[10] = 'T'; blob_appendf(&ctrl, "D %s\n", zDate); if( zNewColor[0] && strcmp(zColor,zNewColor)!=0 ){ nChng++; if( fPropagateColor ){ blob_appendf(&ctrl, "T *bgcolor %s %F\n", zUuid, zNewColor); }else{ blob_appendf(&ctrl, "T +bgcolor %s %F\n", zUuid, zNewColor); } } if( strcmp(zComment,zNewComment)!=0 ){ nChng++; blob_appendf(&ctrl, "T +comment %s %F\n", zUuid, zNewComment); } if( strcmp(zUser,zNewUser)!=0 ){ nChng++; blob_appendf(&ctrl, "T +user %s %F\n", zUuid, zNewUser); } if( zNewColor[0]==0 && zColor[0]!=0 ){ nChng++; blob_appendf(&ctrl, "T -bgcolor %s\n", zUuid); } if( nChng>0 ){ int nrid; Blob cksum; blob_appendf(&ctrl, "U %F\n", g.zLogin); md5sum_blob(&ctrl, &cksum); blob_appendf(&ctrl, "Z %b\n", &cksum); db_begin_transaction(); nrid = content_put(&ctrl, 0, 0); manifest_crosslink(nrid, &ctrl); db_end_transaction(0); } cgi_redirectf("vinfo?name=%d", rid); } blob_zero(&comment); blob_append(&comment, zNewComment, -1); zUuid[10] = 0; style_header("Edit Baseline [%s]", zUuid); if( P("preview") ){ @ Preview: @
    @ if( zNewColor && zNewColor[0] ){ @
    }else{ @
    } wiki_convert(&comment, 0, WIKI_INLINE); @ (user: %h(zNewUser)) @
    @
    @
    } @

    Make changes to attributes of check-in @ [%s(zUuid)]:

    @
    login_insert_csrf_secret(); @ @ @ @ @ @ @ @ @ @
    User: @ @
    Comment: @ @
    Background Color: @ @ for(i=0; i }else{ @ } @ @
    } if( strcmp(zNewColor, aColor[i].zColor)==0 ){ @ }else{ @ } @ %h(aColor[i].zCName)
    if( fPropagateColor ){ @ }else{ @ } @ Propagate color to descendants
    @
    @ @ @ @
    @
    style_footer(); }