Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch tree-view-work Excluding Merge-Ins
This is equivalent to a diff from cdab54ed to 8489e297
2014-01-17
| ||
13:35 | Tree-view expand/collapse enhancements. Press "Reload" after upgraded in order to reload CSS. ... (check-in: 0647dd38 user: drh tags: trunk) | |
12:47 | unbreak win/Makefile.mingw for modified SRCDIR ... (check-in: 7b30a7c7 user: jan.nijtmans tags: trunk) | |
09:07 | Call toggleAll() if expandMap['*'] exists, even if its false (for when the expand query string parameter is used). ... (Closed-Leaf check-in: 8489e297 user: joel tags: tree-view-work) | |
00:07 | Recognize old IE event object to make tree-view expand/collapse work in IE8. This breaks expand/collapse on FF. ... (check-in: 21426d01 user: joel tags: tree-view-work) | |
2014-01-16
| ||
23:43 | Set/unset new "collapsed" class on tree-view lists instead of setting display property. This breaks collapse/expand on Chrome. ... (check-in: 75b96a29 user: joel tags: tree-view-work) | |
22:15 | Avoid superfluous variable assignment. ... (check-in: cdab54ed user: mistachkin tags: trunk) | |
22:02 | Fix harmless compiler warning. ... (check-in: 79eac9a1 user: mistachkin tags: trunk) | |
Changes to src/browse.c.
︙ | ︙ | |||
610 611 612 613 614 615 616 | if( p->isDir ){ const char *zSubdirClass = p->nFullName==nD-1 ? " subdir" : ""; @ <li class="dir%s(zSubdirClass)%s(zLastClass)"> @ %z(href("%s",url_render(&sURI,"name",p->zFullName,0,0)))%h(p->zName)</a> if( startExpanded || p->nFullName<=nD ){ @ <ul id="dir%d(nDir)"> }else{ | | | 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | if( p->isDir ){ const char *zSubdirClass = p->nFullName==nD-1 ? " subdir" : ""; @ <li class="dir%s(zSubdirClass)%s(zLastClass)"> @ %z(href("%s",url_render(&sURI,"name",p->zFullName,0,0)))%h(p->zName)</a> if( startExpanded || p->nFullName<=nD ){ @ <ul id="dir%d(nDir)"> }else{ @ <ul id="dir%d(nDir)" class="collapsed"> } nDir++; }else if( !showDirOnly ){ const char *zFileClass = fileext_class(p->zName); char *zLink; if( zCI ){ zLink = href("%R/artifact/%S",p->zUuid); |
︙ | ︙ | |||
634 635 636 637 638 639 640 | } } } @ </ul> @ </ul></div> @ <script>(function(){ @ function isExpanded(ul){ | < < | | | | | > | | 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | } } } @ </ul> @ </ul></div> @ <script>(function(){ @ function isExpanded(ul){ @ return ul.className==''; @ } @ @ function toggleDir(ul, useInitValue){ @ if( !useInitValue ){ @ expandMap[ul.id] = !isExpanded(ul); @ history.replaceState(expandMap, ''); @ } @ ul.className = expandMap[ul.id] ? '' : 'collapsed'; @ } @ @ function toggleAll(tree, useInitValue){ @ var lists = tree.querySelectorAll('.subdir > ul > li ul'); @ if( !useInitValue ){ @ var expand = true; /* Default action: make all sublists visible */ @ for( var i=0; lists[i]; i++ ){ @ if( isExpanded(lists[i]) ){ @ expand = false; /* Any already visible - make them all hidden */ @ break; @ } @ } @ expandMap = {'*': expand}; @ history.replaceState(expandMap, ''); @ } @ var className = expandMap['*'] ? '' : 'collapsed'; @ for( var i=0; lists[i]; i++ ){ @ lists[i].className = className; @ } @ } @ @ function checkState(){ @ expandMap = history.state || {}; @ if( '*' in expandMap ) toggleAll(outer_ul, true); @ for( var id in expandMap ){ @ if( id!=='*' ) toggleDir(gebi(id), true); @ } @ } @ @ function belowSubdir(node){ @ do{ @ node = node.parentNode; @ if( node==subdir ) return true; @ } while( node && node!=outer_ul ); @ return false; @ } @ @ var history = window.history || {}; @ if( !history.replaceState ) history.replaceState = function(){}; @ var outer_ul = document.querySelector('.filetree > ul'); @ var subdir = outer_ul.querySelector('.subdir'); @ var expandMap = {}; @ checkState(); @ outer_ul.onclick = function(e){ @ e = e || window.event; @ var a = e.target || e.srcElement; @ if( a.nodeName!='A' ) return true; @ if( a.parentNode==subdir ){ @ toggleAll(outer_ul); @ return false; @ } @ if( !belowSubdir(a) ) return true; @ var ul = a.nextSibling; |
︙ | ︙ |
Changes to src/style.c.
︙ | ︙ | |||
779 780 781 782 783 784 785 786 787 788 789 790 791 792 | @ line-height: 1.5; }, { ".filetree ul", "tree-view lists", @ margin: 0; @ padding: 0; @ list-style: none; }, { ".filetree ul ul", "tree-view lists below the root", @ position: relative; @ margin: 0 0 0 21px; }, { ".filetree li", | > > > > | 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | @ line-height: 1.5; }, { ".filetree ul", "tree-view lists", @ margin: 0; @ padding: 0; @ list-style: none; }, { ".filetree ul.collapsed", "tree-view collapsed list", @ display: none; }, { ".filetree ul ul", "tree-view lists below the root", @ position: relative; @ margin: 0 0 0 21px; }, { ".filetree li", |
︙ | ︙ |