Changeset 20837 for websites/coderepos.org/trac/share
- Timestamp:
- 10/06/08 14:24:42 (2 months ago)
- Location:
- websites/coderepos.org/trac/share
- Files:
-
- 1 removed
- 7 modified
-
htdocs/index.html (modified) (1 prop)
-
htdocs/lib/jquery-1.2.2.min.js (deleted)
-
htdocs/robots.txt (modified) (5 diffs)
-
htdocs/spark_banner.png (modified) (1 prop) (previous)
-
js/TracUtils.js (modified) (8 diffs)
-
styles/ass-ari/committer.gif (modified) (1 prop) (previous)
-
styles/plants-repository/plants-repository.psd (modified) (1 prop) (previous)
-
templates/site.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
websites/coderepos.org/trac/share/htdocs/index.html
- Property svn:mime-type set to text/html; charset=windows-1252
-
websites/coderepos.org/trac/share/htdocs/robots.txt
r3058 r20837 9 9 Disallow: /share/wiki/InterTrac 10 10 Disallow: /share/wiki/InterWiki 11 Disallow: /share/wiki/PageTemplates 11 12 Disallow: /share/wiki/RecentChanges 12 13 Disallow: /share/wiki/SandBox 14 #Disallow: /share/wiki/TitleIndex 13 15 Disallow: /share/wiki/TracAccessibility 14 16 Disallow: /share/wiki/TracAdmin … … 19 21 Disallow: /share/wiki/TracEnvironment 20 22 Disallow: /share/wiki/TracFastCgi 23 Disallow: /share/wiki/TracFineGrainedPermissions 21 24 Disallow: /share/wiki/TracGuide 22 25 Disallow: /share/wiki/TracImport … … 24 27 Disallow: /share/wiki/TracInstall 25 28 Disallow: /share/wiki/TracInterfaceCustomization 26 Disallow: /share/wiki/TracJa29 #Disallow: /share/wiki/TracJa 27 30 Disallow: /share/wiki/TracLinks 28 31 Disallow: /share/wiki/TracLogging 29 32 Disallow: /share/wiki/TracModPython 33 Disallow: /share/wiki/TracNavigation 30 34 Disallow: /share/wiki/TracNotification 31 35 Disallow: /share/wiki/TracPermissions … … 47 51 Disallow: /share/wiki/TracUpgrade 48 52 Disallow: /share/wiki/TracWiki 53 Disallow: /share/wiki/TracWorkflow 49 54 Disallow: /share/wiki/WikiDeletePage 50 55 Disallow: /share/wiki/WikiFormatting … … 57 62 Disallow: /share/wiki/WikiRestructuredTextLinks 58 63 Disallow: /share/wiki/WikiStart 59 -
websites/coderepos.org/trac/share/htdocs/spark_banner.png
- Property svn:keywords deleted
-
websites/coderepos.org/trac/share/js/TracUtils.js
r20739 r20837 278 278 var e = $(this); 279 279 var js = e.text(); 280 var a = $("<a href='javascript:void (156)'>Click to execute.</a>").click(function () {280 var a = $("<a href='javascript:void 156'>Click to execute.</a>").click(function () { 281 281 eval(js); 282 282 }).css({ … … 344 344 // 高速化と、jQuery がだす getElementsByTagName がないという 345 345 // エラーを回避するため正規表現 346 data = data.match(/<table id="chglist"[\S\s]+ <\/table>/)[0];346 data = data.match(/<table id="chglist"[\S\s]+?<\/table>/)[0]; 347 347 $("<div><h2><a href='"+url+"'>Project Recent Changes</a></h2></div>") 348 348 .append( … … 400 400 var uri = TracUtils.getSourcePath(location); 401 401 $("<link/>").attr({ 402 href : uri,403 name : name,402 href : uri, 403 name : name, 404 404 version : version, 405 rel : 'commands'405 rel : "commands" 406 406 }) 407 407 .appendTo("head"); … … 423 423 }); 424 424 $('//*[@id="dirlist"]//span[@class="author"]').each(function () { 425 authors.push([this, $(this).text().match(/^ ([^:]+):/)[1]]);425 authors.push([this, $(this).text().match(/^[^:]+(?=:)/)[0]]); 426 426 }); 427 427 break; … … 451 451 // This is for committers list of CodeRepos. 452 452 // var authors 453 $.each($("//*[@id='Committers']/following-sibling::ul[1]//a[contains(@href, '/share/wiki/Committers/')]"), function () {453 $.each($("//*[@id='Committers']/following-sibling::ul[1]//a[contains(@href, '/share/wiki/Committers/')]"), function () { 454 454 authors.push([this, $(this).text().match(/Committer:([^,]+)/)[1]]); 455 455 }) … … 473 473 474 474 , getIconByAuthor : function (author) { 475 var iconUrl = TracUtils.AUTHOR_ICONS[author] || TracUtils.AUTHOR_ICONS["*default*"]; 476 477 // Hatena ID 478 iconUrl = iconUrl.replace(/^id:(([a-zA-Z][\w-])[\w-]{0,29}[a-zA-Z\d])/, 'http://www.hatena.ne.jp/users/$2/$1/profile_s.gif'); 479 480 return iconUrl; 475 var iconUrl = TracUtils.AUTHOR_ICONS[author]; 476 if (iconUrl) { 477 // Hatena ID 478 return iconUrl.replace(/^id:(([a-zA-Z][-\w])[-\w]{0,29}[a-zA-Z\d])$/, "http://www.hatena.ne.jp/users/$2/$1/profile_s.gif") 479 // livedoor ID 480 // .replace(/^ld:([a-z][a-z0-9_]{2,19})$/, "http://image.profile.livedoor.jp/icon/$1_16.gif") 481 // Wassr ID 482 // .replace(/^wassr:([a-z0-9][-a-z0-9_]{1,18}[a-z0-9])$/, "http://wassr.jp/user/$1/profile_img.png.16"); 483 } 484 return TracUtils.AUTHOR_ICONS["*default*"]; 481 485 } 482 486 … … 498 502 .css("margin-right", "0.5em"); 499 503 500 var a = $("<a style='background-image: none ! important; padding-left: 0 pt; border:none;'/>")504 var a = $("<a style='background-image: none ! important; padding-left: 0; border: 0 none;'/>") 501 505 .attr("href", TracUtils.AuthorIcons.getAuthorPage(author)) 502 506 .append(img); … … 506 510 // workarround for IE 507 511 if ($.browser.msie && $("#content").attr("class") == 'timeline') { 508 $(a).parent().css({backgroundColor : 'white'});512 $(a).parent().css({backgroundColor : "white"}); 509 513 } 510 514 } -
websites/coderepos.org/trac/share/styles/ass-ari/committer.gif
- Property svn:mime-type changed from application/octet-stream to image/gif
-
websites/coderepos.org/trac/share/styles/plants-repository/plants-repository.psd
- Property svn:mime-type changed from application/octet-stream to image/vnd.adobe.photoshop
-
websites/coderepos.org/trac/share/templates/site.html
r16739 r20837 5 5 <head> 6 6 <link rel="stylesheet" type="text/css" media="screen,tv,projection" title="ass-ari" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/ass-ari.css"/> 7 <link rel="alternate stylesheet" type="text/css" media="screen,tv,projection" title="plants-repository" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/plants-repository.css"/>8 <link rel="alternate stylesheet" type="text/css" media="screen,tv,projection" title="default" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/default.css"/>9 10 7 <!-- temporary deleted 11 8 <link rel="stylesheet" type="text/css" media="screen,tv,projection" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/trac-tooltip.css"/> 12 9 --> 10 <link rel="alternate stylesheet" type="text/css" media="screen,tv,projection" title="plants-repository" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/plants-repository.css"/> 11 <link rel="alternate stylesheet" type="text/css" media="screen,tv,projection" title="default" href="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/styles/default.css"/> 12 <link rel="openid2.provider" href="http://openid.coderepos.org/auth"/> 13 <link rel="openid.server" href="http://openid.coderepos.org/auth"/> 13 14 14 15 <script type="text/javascript" src="http://s.hatena.ne.jp/js/HatenaStar.js"></script> 15 <!--16 <script type="text/javascript" src="http://coderepos.org/share/htdocs/lib/jquery-1.2.2.min.js"></script>17 -->18 16 <script type="text/javascript" src="http://svn.coderepos.org/share/lang/javascript/javascript-xpath/trunk/release/javascript-xpath-latest-cmp.js"></script> 19 17 <script type="text/javascript" src="http://svn.coderepos.org/share/lang/javascript/javascript-xpath/bindings/jquery/src/xpath4jquery.js"></script> … … 21 19 <script type="text/javascript" src="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/js/HatenaStarTrac.js"></script> 22 20 <script type="text/javascript" src="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/js/HatenaStarProgressive.js"></script> 23 24 21 <!-- temporary deleted 25 22 <script type="text/javascript" src="http://svn.coderepos.org/share/websites/coderepos.org/trac/share/js/TracTooltip.js"></script> 26 23 --> 27 28 <link rel="openid2.provider" href="http://openid.coderepos.org/auth" />29 <link rel="openid.server" href="http://openid.coderepos.org/auth" />30 24 </head> 31 25
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)