ChangeLog 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199
  1. 2013-06-18 Denis Nomiyama <d.nomiyama@samsung.com>
  2. The page title of technical-articles.html is incorrect.
  3. https://bugs.webkit.org/show_bug.cgi?id=117727
  4. Reviewed by Ryosuke Niwa.
  5. Changed the page title of technical-articles.html to "WebKit Technical Articles".
  6. * coding/technical-articles.html:
  7. 2013-06-14 Timothy Hatcher <timothy@apple.com>
  8. Shrink larger images to fit the width of the blog.
  9. * blog-files/new-inspector/hero-labeled.png:
  10. * blog-files/new-inspector/hero.png:
  11. 2013-06-12 Roger Fong <roger_fong@apple.com>
  12. Update webkit.org build instructions for Apple Windows port.
  13. https://bugs.webkit.org/show_bug.cgi?id=117563.
  14. Reviewed by Brent Fulgham.
  15. * building/build.html:
  16. * building/debug.html:
  17. * building/launch-debugger-vs2005.png: Removed.
  18. * building/launch-debugger-vs2010.png: Copied from webkit.org/building/launch-debugger-vs2005.png.
  19. * building/set-as-startup-project-vs2005.png: Removed.
  20. * building/set-as-startup-project-vs2010.png: Copied from webkit.org/building/set-as-startup-project-vs2005.png.
  21. * building/set-debugging-properties-vs2005.png: Removed.
  22. * building/set-debugging-properties-vs2010.png: Copied from webkit.org/building/set-debugging-properties-vs2005.png.
  23. * building/tools.html:
  24. 2013-06-12 Timothy Hatcher <timothy@apple.com>
  25. Add new Web Inspector images for a blog post.
  26. * blog-files/new-inspector/activity-viewer.png: Added.
  27. * blog-files/new-inspector/codemirror.png: Added.
  28. * blog-files/new-inspector/console.png: Added.
  29. * blog-files/new-inspector/hero-labeled.png: Added.
  30. * blog-files/new-inspector/hero.png: Added.
  31. * blog-files/new-inspector/layer-borders.png: Added.
  32. * blog-files/new-inspector/layers.png: Added.
  33. * blog-files/new-inspector/navigation-bar.png: Added.
  34. * blog-files/new-inspector/open-sign.png: Added.
  35. * blog-files/new-inspector/reasons.png: Added.
  36. * blog-files/new-inspector/save.png: Added.
  37. * blog-files/new-inspector/source-map.png: Added.
  38. * blog-files/new-inspector/styles.png: Added.
  39. * blog-files/new-inspector/toolbar-context-menu.png: Added.
  40. * blog-files/new-inspector/toolbar-docked.png: Added.
  41. * blog-files/new-inspector/toolbar.png: Added.
  42. 2013-05-25 Bem Jones-Bey <bjonesbe@adobe.com>
  43. Broken link to committers list on contributing web page
  44. https://bugs.webkit.org/show_bug.cgi?id=116722
  45. Reviewed by Andreas Kling.
  46. * coding/contributing.html:
  47. Changed broken link to point to the team page instead.
  48. 2013-05-24 Bem Jones-Bey <bjonesbe@adobe.com>
  49. Make team.html have each contributor's area of expertise
  50. https://bugs.webkit.org/show_bug.cgi?id=116737
  51. Reviewed by Benjamin Poulain.
  52. * team.html:
  53. Update to use the new expertise field in contributors.json.
  54. 2013-04-30 Filip Pizlo <fpizlo@apple.com>
  55. Release SunSpider 1.0
  56. Rubber stamped by Maciej Stachowiak.
  57. * perf/sunspider-1.0: Added.
  58. * perf/sunspider-1.0/json2.js: Added.
  59. (.):
  60. * perf/sunspider-1.0/sunspider-1.0: Added.
  61. * perf/sunspider-1.0/sunspider-1.0/driver.html: Added.
  62. * perf/sunspider-1.0/sunspider-1.0/results.html: Added.
  63. * perf/sunspider-1.0/sunspider-1.0/sunspider-test-contents.js: Added.
  64. * perf/sunspider-1.0/sunspider-1.0/sunspider-test-prefix.js: Added.
  65. * perf/sunspider-1.0/sunspider-analyze-results.js: Added.
  66. (computeItemTotals):
  67. (computeTotals):
  68. (computeMeans):
  69. (standardDeviation):
  70. (computeStdDevs):
  71. (computeStdErrors):
  72. (tDist):
  73. (formatResult):
  74. (computeLabelWidth):
  75. (computeMeanWidth):
  76. (resultLine):
  77. (printOutput):
  78. * perf/sunspider-1.0/sunspider-compare-results.js: Added.
  79. (.computeItemTotals):
  80. (.computeTotals):
  81. (.computeMeans):
  82. (.standardDeviation):
  83. (.computeStdDevs):
  84. (.computeStdErrors):
  85. (.tDist):
  86. (.formatMean):
  87. (.computeLabelWidth):
  88. (.computeMeanWidth):
  89. (.pad):
  90. (.resultLine):
  91. (.printOutput):
  92. (sunspiderCompareResults):
  93. * perf/sunspider-1.0/sunspider.css: Added.
  94. (body):
  95. (h2):
  96. (dt):
  97. (dd):
  98. (:link):
  99. (:visited):
  100. (#testframe):
  101. (#logo):
  102. * perf/sunspider-1.0/sunspider.html: Added.
  103. * perf/sunspider/sunspider.html:
  104. * perf/sunspider/versions.html: Added.
  105. 2013-04-16 Vivek Galatage <vivek.vg@samsung.com>
  106. Update team.html to use contributors.json instead of committers.py
  107. https://bugs.webkit.org/show_bug.cgi?id=114720
  108. Reviewed by Ryosuke Niwa.
  109. Updating the team.html to use contributors.json. Also removing the unused field 'area'
  110. from the contributors information.
  111. * team.html:
  112. 2013-04-16 Ryosuke Niwa <rniwa@webkit.org>
  113. The list of contributors in committers.py should be a separate JSON
  114. https://bugs.webkit.org/show_bug.cgi?id=114673
  115. Reviewed by Anders Carlsson.
  116. Updated the website to refer to contributors.json instead of committers.py.
  117. * coding/commit-review-policy.html:
  118. 2013-04-07 Benjamin Poulain <bpoulain@apple.com>
  119. Simplify the page "Getting the Code" on WebKit.org
  120. https://bugs.webkit.org/show_bug.cgi?id=113980
  121. Reviewed by Sam Weinig.
  122. * building/checkout.html:
  123. Instead of interleaving instructions for Mac and Windows, just
  124. copy the things that make sense and have two clear sections.
  125. Also mention Linux, it is the exact same instructions as Mac OS X.
  126. Make svn checkout the alternative to a download of the tarball. It is
  127. almost impossible to do a svn checkout on slow networks nowadays.
  128. 2013-04-04 Benjamin Poulain <bpoulain@apple.com>
  129. Update WebKit.org's contact page
  130. https://bugs.webkit.org/show_bug.cgi?id=113968
  131. Reviewed by Geoffrey Garen.
  132. * contact.html:
  133. -Add a direct link to our archives on Gmane.
  134. -References the ports mailing-lists. This may reduces the emails
  135. erroneously sent to webkit-dev.
  136. -Add a link to our "reporting bug page".
  137. -Get rid of the link to CIA. The website is dead.
  138. 2013-02-18 Simon Hausmann <simon.hausmann@digia.com>
  139. Add Digia to the domain affiliations
  140. https://bugs.webkit.org/show_bug.cgi?id=110116
  141. Reviewed by Kenneth Rohde Christiansen.
  142. * team.html:
  143. 2013-02-11 Bruno de Oliveira Abinader <bruno.abinader@basyskom.com>
  144. Add basysKom to domainAffiliations in team.html
  145. https://bugs.webkit.org/show_bug.cgi?id=109306
  146. Reviewed by Laszlo Gombos.
  147. Register basysKom as contributing company in
  148. http://www.webkit.org/team.html.
  149. * team.html:
  150. 2013-02-11 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com>
  151. Add intel.com to team.html
  152. https://bugs.webkit.org/show_bug.cgi?id=109424
  153. Reviewed by Kenneth Rohde Christiansen.
  154. * team.html:
  155. 2013-02-10 Dirk Schulze <dschulze@adobe.com>
  156. Add adobe.com to team.html
  157. https://bugs.webkit.org/show_bug.cgi?id=109396
  158. Reviewed by Laszlo Gombos.
  159. * team.html:
  160. 2013-02-10 Laszlo Gombos <l.gombos@samsung.com>
  161. Add sisa.samsung.com to team.html
  162. https://bugs.webkit.org/show_bug.cgi?id=109394
  163. Reviewed by Dirk Schulze.
  164. * team.html:
  165. 2012-12-20 Ryosuke Niwa <rniwa@webkit.org>
  166. Add a sample change log entry to contributing.html
  167. https://bugs.webkit.org/show_bug.cgi?id=105506
  168. Reviewed by Alexey Proskuryakov.
  169. Added a sample change log to the page directly people skimming through the page will still
  170. see it. Also mention that prepare-ChangeLogs is automatically ran by webkit-patch upload.
  171. * coding/contributing.html:
  172. 2012-12-18 Nico Weber <thakis@chromium.org>
  173. Fix broken loop in style guide
  174. https://bugs.webkit.org/show_bug.cgi?id=105346
  175. Reviewed by Ryosuke Niwa.
  176. Found by Sean Silva <silvas@purdue.edu>
  177. * coding/coding-style.html:
  178. 2012-12-11 Ryosuke Niwa <rniwa@webkit.org>
  179. Add instructions on how to build WebKit on Xcode 4 to build.html
  180. https://bugs.webkit.org/show_bug.cgi?id=104739
  181. Reviewed by Daniel Bates.
  182. Set the build directories to WebKitBuild.
  183. * building/build.html:
  184. 2012-11-24 Daniel Bates <dbates@webkit.org>
  185. Substitute "use" for "user" in sentence about naming convention for
  186. enum members so that it reads well.
  187. * coding/coding-style.html:
  188. 2012-11-20 Gyuyoung Kim <gyuyoung.kim@samsung.com>
  189. Add Samsung to security vendor member list
  190. https://bugs.webkit.org/show_bug.cgi?id=102863
  191. Reviewed by Sam Weinig.
  192. * security/security-group-members.html: Add Samsung members.
  193. 2012-10-31 Adam Barth <abarth@webkit.org>
  194. technical-articles.html should link to my talk on how WebKit works
  195. https://bugs.webkit.org/show_bug.cgi?id=100867
  196. Reviewed by Tony Chang.
  197. * coding/technical-articles.html:
  198. 2012-10-29 Eric Seidel <eric@webkit.org>
  199. Technical Articles should link to an old talk I gave
  200. https://bugs.webkit.org/show_bug.cgi?id=100624
  201. Reviewed by Adam Barth.
  202. * coding/technical-articles.html:
  203. 2012-09-13 Ryosuke Niwa <rniwa@webkit.org>
  204. Another typo fix. Apparently, I "fixed" the wrong line in the previous commit.
  205. * coding/coding-style.html:
  206. 2012-09-13 Ryosuke Niwa <rniwa@webkit.org>
  207. Fix a typo per Darin's comment.
  208. * coding/coding-style.html:
  209. 2012-09-13 Ryosuke Niwa <rniwa@webkit.org>
  210. Add a style guide rule for signed and unsigned int
  211. https://bugs.webkit.org/show_bug.cgi?id=96682
  212. Reviewed by Geoffrey Garen.
  213. Add a rule per http://lists.webkit.org/pipermail/webkit-dev/2012-September/022199.html.
  214. * coding/coding-style.html:
  215. 2012-08-30 Benjamin Poulain <bpoulain@apple.com>
  216. Replace JSC::UString by WTF::String
  217. https://bugs.webkit.org/show_bug.cgi?id=95271
  218. Reviewed by Geoffrey Garen.
  219. Update the coding style to avoid mentioning a class that no longer exist.
  220. * coding/coding-style.html:
  221. 2012-08-09 Ryosuke Niwa <rniwa@webkit.org>
  222. Address one more review comment.
  223. * building/checkout.html:
  224. 2012-08-09 Ryosuke Niwa <rniwa@webkit.org>
  225. Recommend the use of https and mention git on building/checkout.html
  226. https://bugs.webkit.org/show_bug.cgi?id=93657
  227. Reviewed by Mark Rowe.
  228. This page was quite out-dated. Stop mentioning about how to install subversion on OS X 10.4
  229. because the paragraph right above it refers to buliding/tools.html for that.
  230. Recommend the use of HTTPS connection for the Subversion checkout and also mention how to
  231. checkout using a Git client.
  232. * building/checkout.html:
  233. 2012-07-27 Adam Barth <abarth@webkit.org>
  234. Writing a blog post for new reviewers doesn't add value to the blog
  235. https://bugs.webkit.org/show_bug.cgi?id=92305
  236. Reviewed by Eric Seidel.
  237. Now that we have Peter posting weekly updates to the blog, having an
  238. announcement on the blog for each reviewer is more noise than signal.
  239. * coding/commit-review-policy.html:
  240. 2012-06-19 Ryosuke Niwa <rniwa@webkit.org>
  241. Update webkit.org to refer to layoutTestController instead of testRunner
  242. https://bugs.webkit.org/show_bug.cgi?id=89445
  243. Reviewed by Kent Tamura.
  244. * quality/testwriting.html:
  245. 2012-05-21 Peter Kasting <pkasting@google.com>
  246. Style guide change: Uses of "std::" should be explicitly qualified.
  247. https://bugs.webkit.org/show_bug.cgi?id=87043
  248. Reviewed by Ryosuke Niwa.
  249. * coding/coding-style.html:
  250. 2012-05-11 Darin Adler <darin@apple.com>
  251. Try to make spacing of fine print items in lower left nicer looking.
  252. * css/main.css:
  253. (#notice, #trademark, #terms): Changed top margin to 10px.
  254. (#notice): Put 30px margin here.
  255. 2012-05-11 Darin Adler <darin@apple.com>
  256. CSS tweak needed for the trademark terms of use.
  257. * css/main.css:
  258. (#notice, #trademark, #terms): Added #trademark.
  259. 2012-05-11 Darin Adler <darin@apple.com>
  260. Add a link to WebKit trademark terms of use, other small website changes
  261. https://bugs.webkit.org/show_bug.cgi?id=86112
  262. Reviewed by Dan Bernstein.
  263. * contact.html: Use RIGHT SINGLE QUOTATION MARK instead of APOSTROPHE as appropriate.
  264. Fixed awkward use of the phrase "per itself" and the use of "intent" where "intend"
  265. was intended.
  266. * nav.inc: Added mention of the WebKit trademark and a link to the trademark terms
  267. of use on the macosforge.org terms of use page.
  268. 2012-05-07 Dan Bernstein <mitz@apple.com>
  269. webkit.org instructions for debugging WebProcess are unnecessarily complex
  270. https://bugs.webkit.org/show_bug.cgi?id=85756
  271. Reviewed by Darin Adler.
  272. * building/debug.html: Added instructions for setting up and using the WebKit workspace for
  273. debugging the Web process, as well as instructions for debugging the Web process from the
  274. command line using debug-safari and debug-minibrowser.
  275. * building/tools.html: Updated links and tweaked the language.
  276. 2012-04-23 Daniel Bates <dbates@webkit.org>
  277. Add notice about running xcode-select before using Xcode 4.3.2 command line tools
  278. Rubber-stamped by Eric Seidel.
  279. Before you can use the Xcode 4.3.2 command line tools, you must either run
  280. sudo xcode-select -switch /Applications/Xcode.app or set the environment variable
  281. DEVELOPER_DIR to point to the Xcode developer tools directory.
  282. * building/tools.html:
  283. 2012-04-23 Daniel Bates <dbates@webkit.org>
  284. Explicitly mention Xcode version 4.3.2 in Mac debug instructions
  285. Rubber-stamped by Eric Seidel.
  286. The build location instructions at the top of page building/{debug-mac-uiprocess.html, debug.html}
  287. are specific to Xcode 4.3.2.
  288. * building/debug-mac-uiprocess.html: Substitute "Xcode 4.3.2" for "Xcode 4".
  289. * building/debug.html: Ditto.
  290. 2012-04-19 Daniel Bates <dbates@webkit.org>
  291. Update Build Location notice on Mac debug instructions to reflect changes in Xcode 4.3.2
  292. https://bugs.webkit.org/show_bug.cgi?id=84364
  293. Reviewed by Eric Seidel.
  294. As of Xcode 4.3.2, the build location "Locations Specified by Targets" has been renamed to
  295. "Legacy".
  296. * building/debug-mac-uiprocess.html:
  297. * building/debug.html:
  298. 2012-03-13 Rebecca Hauck <rhauck@adobe.com>
  299. Working With Code > Installing Developer Tools needs to be updated with OS X Lion & App Store details
  300. https://bugs.webkit.org/show_bug.cgi?id=80429
  301. Reviewed by Dan Bernstein.
  302. * building/tools.html:
  303. 2012-03-10 Daniel Bates <dbates@webkit.org>
  304. Switch from HTTP to HTTPS for Xcode developer.apple.com hyperlinks
  305. The Debugging and Analyzing Your Code page cannot be viewed at <http://developer.apple.com/library/mac/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/Debugging/Debugging.html#//apple_ref/doc/uid/TP40010215-CH3-SW1> (1) as this URL redirects to the Mac OS X Developer Library <https://developer.apple.com/library/mac/navigation/>.
  306. Substituting https for http in (1) returns the expected page.
  307. * building/debug-mac-uiprocess.html:
  308. * building/debug.html:
  309. 2012-03-01 Seo Sanghyeon <sh4.seo@samsung.com>
  310. Add a link to the EFL wiki page
  311. https://bugs.webkit.org/show_bug.cgi?id=79439
  312. Reviewed by Adam Barth.
  313. * building/tools.html:
  314. * css/main.css: Cross-browser border-radius.
  315. 2012-02-24 Tom Zakrajsek <tomz@codeaurora.org>
  316. team.html (on webkit.org) doesn't recognize codeaurora.org
  317. https://bugs.webkit.org/show_bug.cgi?id=79529
  318. Reviewed by Ryosuke Niwa.
  319. * team.html:
  320. 2012-02-16 Kent Tamura <tkent@chromium.org>
  321. Improve usability of coding-style.html
  322. https://bugs.webkit.org/show_bug.cgi?id=78470
  323. Reviewed by Eric Seidel.
  324. * coding/coding-style.html:
  325. - Do not add a title attribute to each of LI elements
  326. - Do not add a click handler to each of them
  327. - Add a SPAN element in order to show [id-name] and provide smaller clickable area.
  328. 2012-01-23 Seo Sanghyeon <sh4.seo@samsung.com>
  329. website: Reword WEBKITOUTPUTDIR documentation on Building WebKit page
  330. https://bugs.webkit.org/show_bug.cgi?id=76544
  331. Reviewed by Darin Adler.
  332. WEBKITOUTPUTDIR is not only for Windows.
  333. * building/build.html:
  334. 2012-01-20 Kent Tamura <tkent@chromium.org>
  335. Each style rule should have its own ID.
  336. https://bugs.webkit.org/show_bug.cgi?id=76428
  337. Reviewed by David Levin.
  338. * coding/coding-style.html: Add an id attribute to each of li elements,
  339. and add code to set title="#id-name" and to make li elements clickable.
  340. 2012-01-19 Daniel Bates <dbates@webkit.org>
  341. Remove "Safari 5.1 shipped" text from debugging instructions; move misplaced </ol>
  342. Rubber-stamped by Sam Weinig.
  343. * building/debug.html:
  344. 2012-01-19 Daniel Bates <dbates@webkit.org>
  345. Update Debugging on Mac OS X instructions for Safari 5.1/WebKit 2
  346. https://bugs.webkit.org/show_bug.cgi?id=67102
  347. Reviewed by Eric Seidel.
  348. Add instructions for debugging UIProcess and WebProcess using Xcode 4.
  349. * building/active-scheme-xcode4.png: Added.
  350. * building/build-settings-tab-xcode4.png: Added.
  351. * building/build-window.png: Removed.
  352. * building/custom-executable-xcode4.png: Added.
  353. * building/custom-executable.png: Removed.
  354. * building/debug-mac-uiprocess.html: Added.
  355. * building/debug.html:
  356. * building/debug.png: Removed.
  357. * building/info-tab.png: Removed.
  358. * building/run-xcode4.png: Added.
  359. 2012-01-11 Antti Koivisto <antti@apple.com>
  360. Remove S60 reference from webkit.org
  361. https://bugs.webkit.org/show_bug.cgi?id=76044
  362. Reviewed by Simon Hausmann.
  363. There is no S60.
  364. * index.html:
  365. 2012-01-10 Hajime Morrita <morrita@chromium.org>
  366. [Website] i-Bench is no longer available.
  367. https://bugs.webkit.org/show_bug.cgi?id=76027
  368. Reviewed by Ryosuke Niwa.
  369. Updated the availability information of i-Bench.
  370. * projects/performance/index.html:
  371. 2011-12-07 Daniel Bates <dbates@webkit.org>
  372. ASSERT_UNREACHED() should be ASSERT_NOT_REACHED() on assertion-guidelines.html
  373. https://bugs.webkit.org/show_bug.cgi?id=74006
  374. Reviewed by Antonio Gomes.
  375. As far I can tell, we've never had an ASSERT_UNREACHED(). We do have an
  376. ASSERT_NOT_REACHED().
  377. * coding/assertion-guidelines.html:
  378. 2011-11-30 Ryosuke Niwa <rniwa@webkit.org>
  379. commit-review-policy.html should make clear committers shouldn't land patches without authors' consent
  380. https://bugs.webkit.org/show_bug.cgi?id=73098
  381. Reviewed by Antti Koivisto.
  382. Revise the sentence about committers being allowed to land patches by others to explicitly state that
  383. they can only land patches by others if asked by authors themselves.
  384. * coding/commit-review-policy.html:
  385. 2011-11-14 Mark Rowe <mrowe@apple.com>
  386. Upgrade WordPress's Akismet plug-in to the latest version.
  387. * blog/wp-content/plugins/akismet:
  388. 2011-11-14 Mark Rowe <mrowe@apple.com>
  389. Update one file that was missed.
  390. * blog/wp-settings.php:
  391. 2011-11-14 Mark Rowe <mrowe@apple.com>
  392. Upgrade WordPress to v3.2.1.
  393. * blog:
  394. 2011-10-28 Dean Jackson <dino@apple.com>
  395. Remove this horribly outdated file. It was showing up in
  396. Google searches and shouldn't be used as official
  397. documentation.
  398. Rubber-stamped by Simon Fraser.
  399. * specs/MediaQueriesExtensions.html: Removed.
  400. 2011-10-21 Ryosuke Niwa <rniwa@webkit.org>
  401. Style guide should mention the preference of index over iterator
  402. https://bugs.webkit.org/show_bug.cgi?id=70285
  403. Reviewed by Darin Adler.
  404. Per discussion on https://lists.webkit.org/pipermail/webkit-dev/2011-October/018274.html,
  405. we prefer index over iterators.
  406. * coding/coding-style.html:
  407. 2011-10-10 Ryosuke Niwa <rniwa@webkit.org>
  408. Fix a typo pointed by Sam (Weinig).
  409. * coding/coding-style.html:
  410. 2011-10-10 Ryosuke Niwa <rniwa@webkit.org>
  411. Style guide should mandate use of pass-by-reference for out arguments
  412. https://bugs.webkit.org/show_bug.cgi?id=69766
  413. Reviewed by Darin Adler.
  414. This matches the convention used throughout WebCore.
  415. * coding/coding-style.html:
  416. 2011-10-06 Amruth Raj <amruthraj@motorola.com>
  417. Add Motorola Mobility to team.html
  418. https://bugs.webkit.org/show_bug.cgi?id=69597
  419. Reviewed by Ryosuke Niwa.
  420. * team.html:
  421. 2011-09-20 Ryosuke Niwa <rniwa@webkit.org>
  422. Generate WebKit team's page out of committers.py
  423. https://bugs.webkit.org/show_bug.cgi?id=68045
  424. Fix per Daniel's review comment since I had misunderstood the code.
  425. * team.html:
  426. 2011-09-20 Ryosuke Niwa <rniwa@webkit.org>
  427. Generate WebKit team's page out of committers.py
  428. https://bugs.webkit.org/show_bug.cgi?id=68045
  429. Reviewed by Daniel Bates.
  430. Add the initial implementation of team.html. This page automatically pulls data from committers.py
  431. There are no areas of expertise but that'll be added once the bug 68061 is fixed.
  432. * team.html: Added.
  433. 2011-09-01 Jon Lee <jonlee@apple.com>
  434. Adding control rendering at various sizes.
  435. * projects/forms/survey.html:
  436. 2011-08-29 Jon Lee <jonlee@apple.com>
  437. Updating forms survey with non-standard wrap for textarea and more data-list driven text fields.
  438. * projects/forms/survey.html:
  439. 2011-08-17 Jon Lee <jonlee@apple.com>
  440. Updating the forms survey to include various element sizes.
  441. * projects/forms/survey.html:
  442. 2011-08-16 Daniel Bates <dbates@webkit.org>
  443. Add myself to the list of individual members in the WebKit Security Group.
  444. Rubber-stamped by Eric Seidel.
  445. * security/security-group-members.html:
  446. 2011-08-09 Anders Carlsson <andersca@apple.com>
  447. Broken link to LICENSE on contributing code page
  448. https://bugs.webkit.org/show_bug.cgi?id=65947
  449. Reviewed by Ryosuke Niwa.
  450. * coding/contributing.html:
  451. 2011-08-04 Dan Bernstein <mitz@apple.com>
  452. Fixed a typo.
  453. * coding/contributing.html:
  454. 2011-08-04 Nico Weber <thakis@chromium.org>
  455. Update the contributors page to recommend webkit-patch instead of many manual steps
  456. https://bugs.webkit.org/show_bug.cgi?id=65714
  457. Reviewed by Adam Barth.
  458. asvitkine followed the contributing instructions for his first patch, and got
  459. the ChangeLog entry wrong: https://bugs.webkit.org/show_bug.cgi?id=65707
  460. webkit-patch prevents errors like this and more.
  461. * coding/contributing.html:
  462. 2011-07-21 Jon Lee <jonlee@apple.com>
  463. Create a new survey page that showcases form and interactive elements for quick reference and comparison.
  464. <rdar://problem/9782965>
  465. Rubber-stamped by Maciej Stachowiak.
  466. * projects/forms/image-usemap.png: Added.
  467. * projects/forms/image1.png: Added.
  468. * projects/forms/image10.png: Added.
  469. * projects/forms/image16.png: Added.
  470. * projects/forms/index.html: Update links
  471. * projects/forms/survey.html: Added.
  472. 2011-07-20 Leo Yang <leo.yang@torchmobile.com.cn>
  473. SVG feature status is not up-to-date
  474. https://bugs.webkit.org/show_bug.cgi?id=64856
  475. Reviewed by Dirk Schulze.
  476. Update SVG feature status after r91331.
  477. * projects/svg/status.xml:
  478. 2011-06-29 Leandro Pereira <leandro@profusion.mobi>
  479. Reviewed by Darin Adler.
  480. Add note about cases where enums are preferred over bools on function parameters.
  481. https://bugs.webkit.org/show_bug.cgi?id=63564
  482. This matches the outcome of this webkit-dev thread:
  483. https://lists.webkit.org/pipermail/webkit-dev/2010-December/015192.html
  484. * coding/coding-style.html:
  485. 2011-05-31 Chris Evans <cevans@chromium.org>
  486. Reviewed by Drew Yao.
  487. Add "Collaboration" to WebKit Security Group Privileges and Responsibilities section.
  488. * security/index.html: Add "Collaboration" section with text discussed on webkit-security.
  489. 2011-05-20 Alexey Proskuryakov <ap@apple.com>
  490. Reviewed by Dan Bernstein.
  491. Building instructions should not talk about Tiger
  492. https://bugs.webkit.org/show_bug.cgi?id=61210
  493. * building/tools.html: Removed steps that are only necessary on Tiger, and changed required
  494. Xcode version to the latest Leopard one.
  495. 2011-05-16 Huzaifa Sidhpurwala <huzaifas@redhat.com>
  496. Reviewed by Adam Barth.
  497. Add Huzaifa Sidhpurwala to the WebKit Security Group site.
  498. https://bugs.webkit.org/show_bug.cgi?id=60686
  499. * security/security-group-members.html:
  500. 2011-05-11 Cris Neckar <cdn@chromium.org>
  501. Reviewed by David Levin.
  502. Adding Cris Neckar to the Webkit Security Group site.
  503. https://bugs.webkit.org/show_bug.cgi?id=60668
  504. * security/security-group-members.html:
  505. 2011-05-11 Ademar de Souza Reis Jr. <ademar.reis@openbossa.org>
  506. Reviewed by Mark Rowe.
  507. Update Qt/Nokia Security contacts
  508. https://bugs.webkit.org/show_bug.cgi?id=60650
  509. Ademar (me) replaced Simon as the release manager and primary security
  510. contact for QtWebKit. See:
  511. http://lists.webkit.org/mailman/private.cgi/webkit-security/2011-February/000584.html
  512. * security/security-group-members.html:
  513. 2011-05-09 Eric Seidel <eric@webkit.org>
  514. Reviewed by Adam Barth.
  515. Add guidelines for feature addition to webkit.org (per disccusion at contributor meeting)
  516. https://bugs.webkit.org/show_bug.cgi?id=59672
  517. * coding/adding-features.html: Added.
  518. * nav.inc:
  519. 2011-04-29 Pavel Feldman <pfeldman@chromium.org>
  520. Not reviewed: adding image files for the blog post.
  521. * blog-files/inspector/remote-debugging-attached.png: Added.
  522. * blog-files/inspector/remote-debugging-discovery.png: Added.
  523. 2011-04-27 Ojan Vafai <ojan@chromium.org>
  524. Reviewed by Dan Bernstein.
  525. change style guide to pre-increment in for-loops
  526. https://bugs.webkit.org/show_bug.cgi?id=59619
  527. This matches what a number of reviewers have been asking
  528. for in code reviews.
  529. * coding/coding-style.html:
  530. 2011-04-26 Carol Szabo <carol.szabo@nokia.com>
  531. Reviewed by Tor Arne Vestbø.
  532. Added instructions on how to work from behind proxy
  533. and detailed the instructions refering to rebasing.
  534. Windows build instructions do not work if you are behind a proxy
  535. or have a Temp directory that you do not own directly.
  536. https://bugs.webkit.org/show_bug.cgi?id=57246
  537. * building/tools.html:
  538. 2011-04-09 Dimitri Glazkov <dglazkov@chromium.org>
  539. Reviewed by James Robinson.
  540. Add a diagram, explaning how an event's relatedTarget interact with shadow DOM boundaries.
  541. https://bugs.webkit.org/show_bug.cgi?id=58190
  542. * misc/related-target-and-shadow-dom.svg: Added.
  543. 2011-04-06 David Levin <levin@chromium.org>
  544. Reviewed by Ojan Vafai.
  545. Augment style guidelines about meaningless parameters from text the unwritten rules email.
  546. https://bugs.webkit.org/show_bug.cgi?id=55275
  547. * coding/coding-style.html:
  548. 2011-04-05 Yury Semikhatsky <yurys@chromium.org>
  549. Unreviewed. Add Web Inspector stack trace, pause on exception and window.onerror
  550. screenshots.
  551. * blog-files/inspector/stack-traces-img/1.png: Added.
  552. * blog-files/inspector/stack-traces-img/2.png: Added.
  553. * blog-files/inspector/stack-traces-img/3.png: Added.
  554. * blog-files/inspector/stack-traces-img/4.png: Added.
  555. * blog-files/inspector/stack-traces-img/5.png: Added.
  556. * blog-files/inspector/stack-traces-img/6.png: Added.
  557. * blog-files/inspector/stack-traces-img/button.png: Added.
  558. 2011-02-26 David Levin <levin@chromium.org>
  559. Reviewed by Darin Adler.
  560. Add style guidelines about comments from the unwritten rules email.
  561. https://bugs.webkit.org/show_bug.cgi?id=55272
  562. * coding/coding-style.html: Added the guidelines.
  563. 2011-02-09 Alexander Pavlov <apavlov@chromium.org>
  564. Unreviewed. Add Web Inspector stylesheet resource diff screenshot.
  565. * blog-files/inspector/css_rule_diff.png: Added.
  566. 2011-02-07 Alexander Pavlov <apavlov@chromium.org>
  567. Unreviewed. Add Web Inspector warning 10x10 PNG, move files from r77801 into the inspector/ directory.
  568. * blog-files/inspector/css_as_authored.png: Renamed from Websites/webkit.org/blog-files/inspector-css-as-authored.png.
  569. * blog-files/inspector/css_autocomplete.png: Renamed from Websites/webkit.org/blog-files/inspector-css-autocomplete.png.
  570. * blog-files/inspector/css_unknown_properties.png: Renamed from Websites/webkit.org/blog-files/inspector-unknown-css-properties.png.
  571. * blog-files/inspector/warning_10x10.png: Added.
  572. 2011-02-07 Alexander Pavlov <apavlov@chromium.org>
  573. Unreviewed. Add Web Inspector style editing screenshots.
  574. * blog-files/inspector-css-as-authored.png: Added.
  575. * blog-files/inspector-css-autocomplete.png: Added.
  576. * blog-files/inspector-unknown-css-properties.png: Added.
  577. 2011-01-21 David Levin <levin@chromium.org>
  578. Reviewed by Darin Adler.
  579. Proposal: Require cross-organizational seconds for reviewer nominations
  580. https://bugs.webkit.org/show_bug.cgi?id=47597
  581. This changes the committer/reviewer policy to require an additional
  582. reviewer supporting a reviewer nomination to work for a different
  583. company and different project affiliation from the nominee.
  584. This means reviewer nominations would require four supporting reviewers,
  585. one of which knows the reviewer through the community (irc, email, bugs)
  586. ensuring that the nominee has the open-source collaboration skills
  587. we so highly value here in WebKit.
  588. * coding/commit-review-policy.html:
  589. 2011-01-01 Adam Barth <abarth@webkit.org>
  590. Reviewed by Eric Seidel.
  591. Move JavaScriptCore to Source
  592. https://bugs.webkit.org/show_bug.cgi?id=51604
  593. * coding/assertion-guidelines.html:
  594. - Update documentation to point to the new location of
  595. JavaScriptCore.
  596. 2010-12-17 Dan Bernstein <mitz@apple.com>
  597. Reviewed by Simon Fraser.
  598. Rename WebKitTools to Tools
  599. https://bugs.webkit.org/show_bug.cgi?id=49861
  600. * asking_questions.html:
  601. * building/tools.html:
  602. * coding/scripts.html:
  603. 2010-11-08 Jessie Berlin <jberlin@apple.com>
  604. Reviewed by Adam Roben.
  605. We should add a build step to comment out or remove the lines unsetting TEMP and TMP in the
  606. .bashrc file.
  607. https://bugs.webkit.org/show_bug.cgi?id=49189
  608. * building/tools.html:
  609. Add a line recommending bash shell users to comment out or remove those lines, with an
  610. explanation as to why.
  611. 2010-11-04 Orlando Leite <orlleite@gmail.com>
  612. Reviewed by Adam Barth.
  613. Add Java for Mac OS X Developer Package to Installing Developer Tools web page
  614. * building/tools.html:
  615. 2010-10-29 Adam Roben <aroben@apple.com>
  616. Instruct developers to install the Feburary 2010 DirectX SDK, not just
  617. any version
  618. The February 2010 SDK is the last one with support for Visual Studio
  619. 2005.
  620. I also removed some unnecessary instructions regarding the DirectX
  621. SDK.
  622. Fixes <http://webkit.org/b/48642> webkit.org should recommend a
  623. specific version of the DirectX SDK
  624. Reviewed by Steve Falkenburg.
  625. * building/tools.html:
  626. 2010-10-28 Lucas Forschler <lforschler@apple.com>
  627. Reviewed by Geoffrey Garen.
  628. Bug 46927 - Sunspider 0.9 web site should prominently link to Sunspider 0.9.1
  629. Notes:
  630. -Created a new sunspider "landing" page which lists current and previous versions of SunSpider.
  631. -Edited the .htaccess file to redirect the old pages to the new landing page.
  632. -This should keep our search engine page rankings effective.
  633. Potentially breaking:
  634. -This COULD potentially break the SunSpider benchmark.
  635. -Local testing with relative links seems to function as expected.
  636. -The .htaccess 301 redirects are UNTESTED.
  637. * .htaccess:
  638. * perf/sunspider: Added.
  639. * perf/sunspider-0.9.1/sunspider.html: Removed.
  640. * perf/sunspider-0.9.1/versions.html: Removed.
  641. * perf/sunspider-0.9/sunspider.html: Removed.
  642. * perf/sunspider/sunspider.css: Added.
  643. * perf/sunspider/sunspider.html: Added.
  644. 2010-10-19 Jenn Braithwaite <jennb@chromium.org>
  645. Reviewed by David Levin.
  646. Add DirectX SDK to Installing Developer Tools web page
  647. https://bugs.webkit.org/show_bug.cgi?id=47911
  648. * building/tools.html:
  649. 2010-09-30 David Levin <levin@chromium.org>
  650. Reviewed by Darin Adler.
  651. Add guideline for constructors doing implicit type conversion to coding style.
  652. https://bugs.webkit.org/show_bug.cgi?id=47646
  653. * coding/coding-style.html:
  654. 2010-10-01 Alex Mathews <possessedpenguinbob@gmail.com>
  655. Reviewed by Simon Fraser.
  656. Bug 47013 - Main Web Inspector link on webkit.org links to old wiki page
  657. https://bugs.webkit.org/show_bug.cgi?id=47013
  658. * nav.inc: Removed the space from the web inspector wiki link.
  659. 2010-09-22 Balazs Kelemen <kbalazs@webkit.org>
  660. Unreviewed HTML syntax fix for my recent change in the coding-style.
  661. * coding/coding-style.html: Change "&gt" and "&lt" to "&gt;" and "&lt;".
  662. 2010-09-22 Balazs Kelemen <kb@inf.u-szeged.hu>
  663. Reviewed by Darin Adler.
  664. check-webkit-style and the coding style guidelines page are inconsistent
  665. https://bugs.webkit.org/show_bug.cgi?id=46099
  666. * coding/coding-style.html:
  667. Making clear that includes of system headers must come after includes of other headers.
  668. 2010-09-16 Tony Gentilcore <tonyg@chromium.org>
  669. Reviewed by Adam Barth.
  670. Adding a timeline screenshot for blocking and defer scripts
  671. https://bugs.webkit.org/show_bug.cgi?id=45933
  672. * blog-files/timeline-blocking-script.png: Added.
  673. * blog-files/timeline-defer-script.png: Added.
  674. 2010-09-14 Jessie Berlin <jberlin@apple.com>
  675. Reviewed by Adam Roben.
  676. Exceptions are getting ignored on 64-bit Windows in the Web Process.
  677. https://bugs.webkit.org/show_bug.cgi?id=45779
  678. * building/tools.html:
  679. Add instructions about how to optionally get hotfix 976038.
  680. 2010-09-06 Robin Qiu <robin.qiu@torchmobile.com.cn>
  681. Reviewed by Adam Barth.
  682. https://bugs.webkit.org/show_bug.cgi?id=43982
  683. This js file seems to be a popular script for detecting mobile WebKit but
  684. it has a flaw that makes it fail on Android and BlackBerry.
  685. The issue is that it looks for "Mobile/" but Android and BlackBerry
  686. use "Mobile" with no numbering after it.
  687. Changed RegExp pattern " Mobile/" to " Mobile\\b".
  688. * misc/WebKitDetect.js:
  689. (WebKitDetect.isMobile):
  690. 2010-08-27 Darin Adler <darin@apple.com>
  691. * coding/RefPtr.html: Minor revision, improve clarity and mention some
  692. recent developments.
  693. 2010-08-26 Daniel Bates <dbates@rim.com>
  694. Reviewed by Dumitru Daniliuc.
  695. Fix misspelled words on WebKit.org contact.html,
  696. demos/index.html, and quality/leakhunting.html
  697. https://bugs.webkit.org/show_bug.cgi?id=44747
  698. Fix some misspelled words on the WebKit.org site.
  699. * contact.html: Change "bugreports" [sic] to "bug reports".
  700. * demos/index.html: Change "testcase" [sic] to "test case".
  701. * quality/leakhunting.html: Change "formating" [sic] to "formatting".
  702. 2010-08-23 David Kilzer <ddkilzer@apple.com>
  703. Clean up some HTML typos in crashlogs.html
  704. Rubber-stamped by Maciej Stachowiak.
  705. * quality/crashlogs.html: Fixed "</code>>" typos added in
  706. r56300. Changed "<tt>" tag with style attribute to "<code>"
  707. that was missed in r56300.
  708. 2010-08-17 Beth Dakin <bdakin@apple.com>
  709. Rubber-stamped by Adele.
  710. Adding a MathML Demo and screenshot.
  711. * blog-files/riemann-screenshot.png: Added.
  712. * demos/mathml: Added.
  713. * demos/mathml/MathMLDemo.xhtml: Added.
  714. 2010-08-17 Adam Roben <aroben@apple.com>
  715. Instruct developers to (optionally) install Debugging Tools for
  716. Windows
  717. These tools are used by some of our scripts, so are useful for
  718. developers to have installed.
  719. Fixes <http://webkit.org/b/44128> webkit.org building instructions
  720. should recommend installing Debugging Tools for Windows
  721. Reviewed by Sam Weinig.
  722. * building/tools.html:
  723. 2010-07-30 Renata Hodovan <reni@inf.u-szeged.hu>
  724. Reviewed by Nikolas Zimmermann.
  725. Update SVG implementation status.
  726. * projects/svg/status.xml:
  727. 2010-07-21 Dimitri Glazkov <dglazkov@chromium.org>
  728. Reviewed by Darin Adler.
  729. Add a diagram explaining how a DOM element is attached to the site.
  730. https://bugs.webkit.org/show_bug.cgi?id=42763
  731. * coding/dom-element-attach.html: Added.
  732. * coding/images/dom-element-attach-large.png: Added.
  733. * coding/images/dom-element-attach-small.png: Added.
  734. * coding/images/dom-element-attach.graffle: Added.
  735. * coding/technical-articles.html: Added a link to the page with the diragram.
  736. 2010-06-16 Jeremy Moskovich <jeremy@chromium.org>
  737. Reviewed by Darin Adler.
  738. Improve assertion macro documentation.
  739. https://bugs.webkit.org/show_bug.cgi?id=40565
  740. * coding/assertion-guidelines.html:
  741. 2010-06-16 Jeremy Moskovich <jeremy@chromium.org>
  742. Reviewed by Geoffrey Garen.
  743. Add an index of technical articles to the WebKit site. This makes the
  744. links to the RefPtr and Assertion documentation discoverable and
  745. provides an easy way to find some useful blog posts.
  746. https://bugs.webkit.org/show_bug.cgi?id=40561
  747. * coding/technical-articles.html: Added.
  748. * nav.inc: Add link to technical articles.
  749. 2010-06-15 Adam Roben <aroben@apple.com>
  750. Remove some unnecessary steps for setting up the debugger on Windows
  751. Apparently update-webkit does this for you now.
  752. Rubber-stamped by Steve Falkenburg.
  753. * building/debug.html: Removed the first two Windows steps, which are
  754. now unnecessary, and updated the third to reflect reality.
  755. 2010-06-14 Adam Roben <aroben@apple.com>
  756. Improve instructions for debugging on Windows
  757. Fixes <http://webkit.org/b/40585>.
  758. Reviewed by Steve Falkenburg.
  759. * building/debug.html: Improved the Windows instructions. We now
  760. instruct users to set things up so that hitting F5 from WebKit.sln
  761. will launch Safari with the WEBKITNIGHTLY environment variable
  762. pointing to the location of the built WebKit.dll.
  763. * building/console_vs2005.jpg: Removed.
  764. * building/debug_vs2005.jpg: Removed.
  765. * building/launch-debugger-vs2005.png: Added.
  766. * building/set-as-startup-project-vs2005.png: Added.
  767. * building/set-debugging-properties-vs2005.png: Added.
  768. 2010-06-07 Jeremy Moskovich <jeremy@chromium.org>
  769. Reviewed by Darin Adler.
  770. Add documentation on the various assertion macros in WebKit.
  771. https://bugs.webkit.org/show_bug.cgi?id=39950
  772. * coding/assertion-guidelines.html: Added.
  773. 2010-05-29 Sterling Swigart <sswigart@google.com>
  774. Reviewed by David Levin.
  775. Adding tests to canvas.html performance test
  776. https://bugs.webkit.org/show_bug.cgi?id=39883
  777. * demos/canvas-perf/canvas.html:
  778. Added tests for:
  779. strokeText
  780. fillText
  781. strokeLine
  782. 2010-05-25 Jeremy Orlow <jorlow@chromium.org>
  783. Reviewed by Darin Adler.
  784. Update the style guide re: static member variables and structs
  785. https://bugs.webkit.org/show_bug.cgi?id=39663
  786. Per Darin Adler's proposal on webkit-dev.
  787. All static member variables should be prefixed with s_.
  788. m_ should not be used for public data members in structs.
  789. Only structs should have public data members.
  790. * coding/coding-style.html:
  791. 2010-05-24 David Levin <levin@chromium.org>
  792. Reviewed by Maciej Stachowiak.
  793. Improve canvas perf test accuracy.
  794. https://bugs.webkit.org/show_bug.cgi?id=39635
  795. * demos/canvas-perf/canvas.html:
  796. 1. Change the various tests to get the image data for the result
  797. to help ensure that the operation has completed by the time,
  798. and subtract out the time needed to do this.
  799. 2. Made the test more flexible about number of repetitions and
  800. image size.
  801. 3. Make the tests run separately and have a pause between them
  802. to allow for garbage collection so that results are more
  803. consistent.
  804. 4. Added a standard logging function and shouldBe asserts to
  805. verify that the correct scaling operations were happening.
  806. 2010-05-20 Daniel Bates <dbates@rim.com>
  807. Rubber-stamped by Simon Fraser.
  808. Spelling correction; change "acces" [sic] to "access".
  809. * quality/lifecycle.html:
  810. 2010-05-14 Eric Seidel <eric@webkit.org>
  811. Reviewed by Maciej Stachowiak.
  812. Update tools.html to mention that Tiger users require a newer Python
  813. https://bugs.webkit.org/show_bug.cgi?id=38822
  814. Also updated the instructions that only Tiger users need
  815. to install a subversion client. Newer OSes already have
  816. subversion included in the install.
  817. * building/tools.html:
  818. 2010-05-08 Dirk Schulze <krit@webkit.org>
  819. Reviewed by Nikolas Zimmermann.
  820. SVGFont's VKern implementation missing
  821. https://bugs.webkit.org/show_bug.cgi?id=38663
  822. * projects/svg/status.xml:
  823. 2010-05-05 Shinichiro Hamaji <hamaji@chromium.org>
  824. Reviewed by Adam Barth.
  825. Commit and Review policy should encourage unofficial reviews
  826. https://bugs.webkit.org/show_bug.cgi?id=38517
  827. * coding/commit-review-policy.html:
  828. 2010-05-04 Dumitru Daniliuc <dumi@chromium.org>
  829. Reviewed by Darin Adler.
  830. Fix the sticky-notes demo.
  831. https://bugs.webkit.org/show_bug.cgi?id=38550
  832. 1. Exceptions thrown by openDatabase() should be treated as
  833. failures.
  834. 2. Do not allow users to create new notes when openDatabase()
  835. failed.
  836. * demos/sticky-notes/index.html:
  837. 2010-05-02 Dirk Schulze <krit@webkit.org>
  838. Reviewed by Nikolas Zimmermann.
  839. SVG hkern implementation incomplete
  840. https://bugs.webkit.org/show_bug.cgi?id=38407
  841. We support hkern now. Mention this in the SVG status page.
  842. * projects/svg/status.xml:
  843. 2010-04-29 Dean Jackson <dino@apple.com>
  844. Unreviewed. Make a note that we are no longer proposing
  845. the evaluateMediaQuery method. Instead, we are following
  846. the standard matchMedium method from CSS 3 View.
  847. * specs/MediaQueriesExtensions.html:
  848. 2010-04-18 Adam Barth <abarth@webkit.org>
  849. Unreviewed. Update a label of the diagram to better match the
  850. description in the text of the blog post.
  851. * blog-files/loader-diagram.svg:
  852. 2010-04-17 Adam Barth <abarth@webkit.org>
  853. Unreviewed. Added loader diagram for upcoming blog post.
  854. * blog-files/loader-diagram.svg: Added.
  855. 2010-04-11 Joseph Pecoraro <joepeck@webkit.org>
  856. Reviewed by Eric Seidel.
  857. Minor Updates and Cleanup to the Contributing Page
  858. https://bugs.webkit.org/show_bug.cgi?id=37415
  859. * coding/contributing.html:
  860. 2010-04-07 Maciej Stachowiak <mjs@apple.com>
  861. (Not reviewed.)
  862. Random demo to look cool on twitter.
  863. * misc/gradient-input.html: Added.
  864. 2010-04-04 Pavel Feldman <pfeldman@chromium.org>
  865. (Not reviewed).
  866. Adding images for inspector blog post. Previewed by Timothy Hatcher.
  867. * blog-files/inspector/audits_launcher.png: Added.
  868. * blog-files/inspector/audits_panel.png: Added.
  869. * blog-files/inspector/console_panel.png: Added.
  870. * blog-files/inspector/context_menu.png: Added.
  871. * blog-files/inspector/css_highlighted_line.png: Added.
  872. * blog-files/inspector/css_line_number_snippet.png: Added.
  873. * blog-files/inspector/css_line_numbers.png: Added.
  874. * blog-files/inspector/deactivate_breakpoints.png: Added.
  875. * blog-files/inspector/evaluate_on_hover.png: Added.
  876. * blog-files/inspector/evaluate_on_hover_2.png: Added.
  877. * blog-files/inspector/inherited_styles.png: Added.
  878. * blog-files/inspector/large_dom.png: Added.
  879. * blog-files/inspector/large_resources.png: Added.
  880. * blog-files/inspector/pseudo_elements.png: Added.
  881. * blog-files/inspector/redirect_headers.png: Added.
  882. * blog-files/inspector/redirect_headers_full.png: Added.
  883. * blog-files/inspector/redirects.png: Added.
  884. * blog-files/inspector/redirects_full.png: Added.
  885. * blog-files/inspector/timeline_overview.png: Added.
  886. * blog-files/inspector/timeline_panel.png: Added.
  887. * blog-files/inspector/timeline_record_details.png: Added.
  888. 2010-03-25 Joseph Pecoraro <joepeck@webkit.org>
  889. Reviewed by David Levin.
  890. Asking Questions Page Grammar Fixes
  891. https://bugs.webkit.org/show_bug.cgi?id=36608
  892. * asking_questions.html:
  893. 2010-03-25 Joseph Pecoraro <joepeck@webkit.org>
  894. Reviewed by Timothy Hatcher.
  895. New Asking Questions Page is not Valid HTML5
  896. https://bugs.webkit.org/show_bug.cgi?id=36605
  897. * asking_questions.html: fixed issues raised by the validator.
  898. 2010-03-25 Julien Chaffraix <jchaffraix@webkit.org>
  899. Reviewed by David Levin.
  900. Add a page on how to ask questions
  901. https://bugs.webkit.org/show_bug.cgi?id=35223
  902. * asking_questions.html: Added.
  903. Add a page on how to ask questions based on Ariya Hidayat's mail: how
  904. to get help effectively
  905. (http://article.gmane.org/gmane.os.opendarwin.webkit.user/145/match=get+help+effectively)
  906. * contact.html: Tweaked the wording to make it more clear what the
  907. mailing list are used for. Also changed the formatting to better
  908. underline the different mailing lists.
  909. 2010-03-24 Sam Weinig <sam@webkit.org>
  910. Rubber-stamped by Anders Carlsson..
  911. Update Security Group Members list.
  912. * security/security-group-members.html:
  913. 2010-03-22 Maciej Stachowiak <mjs@apple.com>
  914. (Not reviewed.)
  915. Add another example.
  916. * demos/accessible-ascii-art/butterfly-figure.html: Added.
  917. 2010-03-22 Maciej Stachowiak <mjs@apple.com>
  918. (Not reviewed.)
  919. Add example of accessible ASCII art for HTML WG.
  920. * demos/accessible-ascii-art: Added.
  921. * demos/accessible-ascii-art/butterfly.html: Added.
  922. 2010-03-20 Maciej Stachowiak <mjs@apple.com>
  923. Reviewed by Mark Rowe.
  924. WebKit blog should be valid HTML5
  925. https://bugs.webkit.org/show_bug.cgi?id=36410
  926. * blog/wp-content/themes/webkit/comments-popup.php:
  927. * blog/wp-content/themes/webkit/footer.php:
  928. * blog/wp-content/themes/webkit/header.php:
  929. 2010-03-20 Maciej Stachowiak <mjs@apple.com>
  930. Reviewed by Mark Rowe.
  931. Fix a bunch of HTML5 validation errors on various pages.
  932. https://bugs.webkit.org/show_bug.cgi?id=36409
  933. * building/build.html:
  934. * building/checkout.html:
  935. * building/debug.html:
  936. * building/run.html:
  937. * building/tools.html:
  938. * coding/coding-style.html:
  939. * coding/contributing.html:
  940. * coding/major-objects.html:
  941. * css/main.css:
  942. (.asciiart):
  943. * demos/index.html:
  944. * header.inc:
  945. * projects/compat/index.html:
  946. * projects/css/index.html:
  947. * projects/documentation/index.html:
  948. * projects/goals.html:
  949. * projects/index.html:
  950. * projects/mathml/index.html:
  951. * quality/bugpriorities.html:
  952. * quality/bugwriting.html:
  953. * quality/crashlogs.html:
  954. * quality/lifecycle.html:
  955. * quality/testing.html:
  956. * quality/testwriting.html:
  957. 2010-03-19 Maciej Stachowiak <mjs@apple.com>
  958. Reviewed by Mark Rowe.
  959. webkit.org should use the HTML5 doctype
  960. https://bugs.webkit.org/show_bug.cgi?id=36407
  961. * header.inc:
  962. * misc/drosera/index.html:
  963. * perf/slickspeed/system/index.php:
  964. * perf/slickspeed/system/template.php:
  965. * specs/index.html:
  966. 2010-03-19 Maciej Stachowiak <mjs@apple.com>
  967. Reviewed by Mark Rowe.
  968. http://webkit.org/ has an HTML5 validation error
  969. https://bugs.webkit.org/show_bug.cgi?id=36406
  970. * nav.inc:
  971. 2010-03-15 Maciej Stachowiak <mjs@apple.com>
  972. Tweak canvas perf demo.
  973. * demos/canvas-perf/canvas.html:
  974. 2010-03-14 Maciej Stachowiak <mjs@apple.com>
  975. Added canvas perf demo for whatwg.
  976. * demos/canvas-perf: Added.
  977. * demos/canvas-perf/canvas.html: Added.
  978. * demos/canvas-perf/kraken.jpg: Added.
  979. 2010-03-09 Adam Roben <aroben@apple.com>
  980. Add a link to the Contributors Meeting registration form in the
  981. sidebar
  982. Rubber-stamped in advance by Adele Peterson.
  983. * nav.inc: Added a link underneath "Trac".
  984. 2010-02-26 Sam Weinig <sam@webkit.org>
  985. Rubber-stamped by Adele Peterson.
  986. Update Security Group Members list.
  987. * security/security-group-members.html:
  988. 2010-02-23 Jessie Berlin <jberlin@webkit.org>
  989. Reviewed by Eric Seidel and Adam Roben.
  990. Debugging WebKit on Windows should mention WebKit.sln as an alternative to running debug-safari.
  991. https://bugs.webkit.org/show_bug.cgi?id=35098
  992. * building/debug.html:
  993. Add instructions on how to build and run WebKit from within Visual Studio.
  994. 2010-02-20 Maciej Stachowiak <mjs@apple.com>
  995. Rubber stamped by Adam Barth.
  996. Add sunspider-0.9.1 to the site in preparation for announcing it.
  997. https://bugs.webkit.org/show_bug.cgi?id=35206
  998. * perf/sunspider-0.9.1: Added.
  999. * perf/sunspider-0.9.1/json2.js: Added.
  1000. * perf/sunspider-0.9.1/sunspider-0.9: Added.
  1001. * perf/sunspider-0.9.1/sunspider-0.9.1: Added.
  1002. * perf/sunspider-0.9.1/sunspider-0.9.1/driver.html: Added.
  1003. * perf/sunspider-0.9.1/sunspider-0.9.1/results.html: Added.
  1004. * perf/sunspider-0.9.1/sunspider-0.9.1/sunspider-test-contents.js: Added.
  1005. * perf/sunspider-0.9.1/sunspider-0.9.1/sunspider-test-prefix.js: Added.
  1006. * perf/sunspider-0.9.1/sunspider-0.9/driver.html: Added.
  1007. * perf/sunspider-0.9.1/sunspider-0.9/results.html: Added.
  1008. * perf/sunspider-0.9.1/sunspider-0.9/sunspider-test-contents.js: Added.
  1009. * perf/sunspider-0.9.1/sunspider-0.9/sunspider-test-prefix.js: Added.
  1010. * perf/sunspider-0.9.1/sunspider-analyze-results.js: Added.
  1011. * perf/sunspider-0.9.1/sunspider-compare-results.js: Added.
  1012. * perf/sunspider-0.9.1/sunspider.css: Added.
  1013. * perf/sunspider-0.9.1/sunspider.html: Added.
  1014. * perf/sunspider-0.9.1/versions.html: Added.
  1015. 2010-02-17 Maciej Stachowiak <mjs@apple.com>
  1016. Not reviewed - demo.
  1017. Made some examples of using <details> for table descriptions.
  1018. * demos/hover-summary: Added.
  1019. * demos/hover-summary/details.css: Added.
  1020. * demos/hover-summary/details.js: Added.
  1021. (summaryClickListener):
  1022. ():
  1023. (window.onload):
  1024. * demos/hover-summary/example1.html: Added.
  1025. * demos/hover-summary/example2.html: Added.
  1026. * demos/hover-summary/horizontal-triangle.png: Added.
  1027. * demos/hover-summary/vertical-triangle.png: Added.
  1028. 2010-02-02 Jens Alfke <snej@chromium.org>
  1029. Reviewed by David Levin.
  1030. Clarified coding guidelines on wiki to allow indentation of
  1031. _nested_ namespaces.
  1032. https://bugs.webkit.org/show_bug.cgi?id=32137
  1033. * coding/coding-style.html:
  1034. 2010-01-24 Chris Jerdonek <cjerdonek@webkit.org>
  1035. Reviewed by David Kilzer.
  1036. Added to contributing code page a pointer to the preferred
  1037. license text. Also added information about copyright lines.
  1038. https://bugs.webkit.org/show_bug.cgi?id=34017
  1039. * coding/contributing.html:
  1040. * css/main.css:
  1041. - Added CSS class for books.
  1042. 2010-01-21 Chris Jerdonek <cjerdonek@webkit.org>
  1043. Reviewed by David Levin.
  1044. Added screenshots and clearer instructions on how to submit
  1045. a patch for review.
  1046. https://bugs.webkit.org/show_bug.cgi?id=32542
  1047. Also added that a bug report should be selected or created
  1048. prior to submitting a patch.
  1049. * coding/contributing.html:
  1050. * coding/images: Added.
  1051. * coding/images/contribute_add_attachment.png: Added.
  1052. * coding/images/contribute_mark_review.png: Added.
  1053. 2010-01-11 Maciej Stachowiak <mjs@apple.com>
  1054. Not reviewed; updated for truth (and readability).
  1055. Fixed some wrong listings and reorganized this page.
  1056. * security/security-group-members.html:
  1057. 2010-01-06 Dirk Schulze <krit@webkit.org>
  1058. Reviewed by Nikolas Zimmermann.
  1059. SVG feImage support
  1060. https://bugs.webkit.org/show_bug.cgi?id=31905
  1061. Update SVG status page. We support feDisplacementMap and feImage now.
  1062. * projects/svg/status.xml:
  1063. 2009-12-20 Chris Jerdonek <chris.jerdonek@gmail.com>
  1064. Reviewed by Darin Adler.
  1065. Removed outdated contact information from bug life cycle page.
  1066. https://bugs.webkit.org/show_bug.cgi?id=32494
  1067. * quality/lifecycle.html:
  1068. 2009-12-13 Dan Bernstein <mitz@apple.com>
  1069. Reviewed by Sam Weinig.
  1070. Add a style guideline concerning floating point literals
  1071. https://bugs.webkit.org/show_bug.cgi?id=32497
  1072. * coding/coding-style.html:
  1073. 2009-12-09 Marwan Al Jubeh <marwan.aljubeh@gmail.com>
  1074. Reviewed by Adam Roben.
  1075. Fixes: https://bugs.webkit.org/show_bug.cgi?id=31228
  1076. Set the WebKitOutputDir, WebKitLibrariesDir and Cygwin environment variables automatically
  1077. in Windows as part of running update_webkit.
  1078. * building/build.html:
  1079. - removed the reference to forgetting to set environment variables as a common source of errors
  1080. on Windows. This is because this patch would make it unnecessary for the user to set these
  1081. variables manually.
  1082. 2009-12-09 Chris Jerdonek <chris.jerdonek@gmail.com>
  1083. Reviewed by Darin Adler.
  1084. Added the "using std::foo" rule to the coding style guidelines.
  1085. https://bugs.webkit.org/show_bug.cgi?id=32301
  1086. Added to the coding style guidelines the "using std::foo" rule
  1087. checked by the check-webkit-style script. Also clarified the
  1088. "using" statement guidelines that apply to implementation files.
  1089. * coding/coding-style.html:
  1090. 2009-12-05 Chris Jerdonek <chris.jerdonek@gmail.com>
  1091. Reviewed by Darin Adler.
  1092. Refactored web site documentation so that advice to add
  1093. WebKitTools/Scripts to your shell path does not appear
  1094. on multiple pages.
  1095. https://bugs.webkit.org/show_bug.cgi?id=32112
  1096. * building/build.html:
  1097. * building/checkout.html:
  1098. * building/run.html:
  1099. * coding/coding-style.html:
  1100. * coding/contributing.html:
  1101. * coding/scripts.html: Added.
  1102. * quality/testing.html:
  1103. 2009-12-04 Marc-Antoine Ruel <maruel@chromium.org>
  1104. Reviewed by Eric Seidel.
  1105. Add reference to the GTK and QT build wiki pages
  1106. https://bugs.webkit.org/show_bug.cgi?id=32088
  1107. * building/tools.html:
  1108. * css/main.css:
  1109. 2009-12-01 Chris Jerdonek <chris.jerdonek@gmail.com>
  1110. Reviewed by Darin Adler.
  1111. Added clarifications to the web site regarding coding style and
  1112. code cleanup--
  1113. https://bugs.webkit.org/show_bug.cgi?id=31618
  1114. Changes include the following:
  1115. - Expanded the style guidelines regarding "using" statements.
  1116. - Made the style guidelines page validate as HTML.
  1117. - Added that legacy WebKit components should not be cleaned up.
  1118. - Added that it is more acceptable to update style when already
  1119. touching code.
  1120. * coding/coding-style.html:
  1121. * coding/contributing.html:
  1122. * projects/cleanup/index.html:
  1123. 2009-11-18 Eric Seidel <eric@webkit.org>
  1124. Reviewed by David Levin.
  1125. Make 80 patches a formal requirement for reviewership
  1126. https://bugs.webkit.org/show_bug.cgi?id=31313
  1127. Per discussion on the webkit-reviewers list:
  1128. http://lists.webkit.org/mailman/private.cgi/webkit-reviewers/2009-November/000795.html
  1129. * coding/commit-review-policy.html:
  1130. 2009-11-18 Daniel Bates <dbates@webkit.org>
  1131. Reviewed by Eric Seidel.
  1132. https://bugs.webkit.org/show_bug.cgi?id=31610
  1133. Adds property "min-width" to #title so that the width of the title
  1134. element on each page is at least 790px. In particular, this makes
  1135. the page <http://webkit.org/security/security-group-members.html>
  1136. consistent, in appearance, to the rest of the site.
  1137. * css/main.css:
  1138. 2009-11-16 Sam Weinig <sam@webkit.org>
  1139. Reviewed by Anders Carlsson.
  1140. Update Security Group Members list.
  1141. * security/security-group-members.html:
  1142. 2009-11-16 Sam Weinig <sam@webkit.org>
  1143. Reviewed by Adele Peterson.
  1144. Update Security Group Members list.
  1145. * security/security-group-members.html:
  1146. 2009-11-13 Chris Jerdonek <chris.jerdonek@gmail.com>
  1147. Reviewed by Darin Adler.
  1148. Added to the WebKit Coding Style Guidelines not to use
  1149. "using namespace" statements in header files.
  1150. * coding/coding-style.html:
  1151. 2009-11-10 Oliver Hunt <oliver@apple.com>
  1152. Reviewed by Maciej Stachowiak.
  1153. Fix WebGL demos to work with renamed WebGL primitives
  1154. * blog-files/webgl/Earth.html:
  1155. * blog-files/webgl/ManyPlanetsDeep.html:
  1156. * blog-files/webgl/SpinningBox.html:
  1157. * blog-files/webgl/SpiritBox.html:
  1158. * blog-files/webgl/TeapotPerPixel.html:
  1159. * blog-files/webgl/TeapotPerVertex.html:
  1160. * blog-files/webgl/WebGL+CSS.html:
  1161. * blog-files/webgl/resources/CanvasMatrix.js:
  1162. (CanvasMatrix4.prototype.getAsWebGLFloatArray):
  1163. * blog-files/webgl/resources/utils3d.js:
  1164. (makeBox):
  1165. (makeSphere):
  1166. (doLoadObj):
  1167. 2009-11-06 Dirk Schulze <krit@webkit.org>
  1168. Rubber stamped by Eric Seidel.
  1169. Update SVG status page. We support feMorphology now.
  1170. Set lightning filters to unimplemented.
  1171. * projects/svg/status.xml:
  1172. 2009-11-06 Jeff Schiller <codedread@gmail.com>
  1173. Reviewed by Darin Adler.
  1174. SVG Status page update
  1175. https://bugs.webkit.org/show_bug.cgi?id=31179
  1176. * projects/svg/status.xml:
  1177. 2009-11-03 Darin Adler <darin@apple.com>
  1178. Set the MIME type for all PNG files in this directory.
  1179. * blog-files/3d-transforms/mighty-cubes.png: Added property svn:mime-type.
  1180. * blog-files/3d-transforms/poster-circle.png: Added property svn:mime-type.
  1181. * blog-files/InspectorDatabaseBrowser.png: Modified property svn:mime-type.
  1182. * blog-files/acid3-100.png: Modified property svn:mime-type.
  1183. * blog-files/acid3-full-rendering-pass.png: Modified property svn:mime-type.
  1184. * blog-files/acid3-rendering-reference.png: Modified property svn:mime-type.
  1185. * blog-files/acid3-screenshot.png: Modified property svn:mime-type.
  1186. * blog-files/acid3-timing-screenshot.png: Modified property svn:mime-type.
  1187. * blog-files/acid3-timing.png: Modified property svn:mime-type.
  1188. * blog-files/bounce.png: Added property svn:mime-type.
  1189. * blog-files/gebcnwebkitonly.png: Modified property svn:mime-type.
  1190. * blog-files/inspector-closure-scope.png: Added property svn:mime-type.
  1191. * blog-files/inspector-console-autocomplete.png: Added property svn:mime-type.
  1192. * blog-files/inspector-databases-panel-query-view.png: Added property svn:mime-type.
  1193. * blog-files/inspector-databases-panel.png: Added property svn:mime-type.
  1194. * blog-files/inspector-disabling-properties.png: Added property svn:mime-type.
  1195. * blog-files/inspector-elements-panel.png: Added property svn:mime-type.
  1196. * blog-files/inspector-event-scope.png: Added property svn:mime-type.
  1197. * blog-files/inspector-profiles-panel.png: Added property svn:mime-type.
  1198. * blog-files/inspector-resources-panel.png: Added property svn:mime-type.
  1199. * blog-files/inspector-scripts-panel.png: Added property svn:mime-type.
  1200. * blog-files/inspector-searching-elements.png: Added property svn:mime-type.
  1201. * blog-files/inspector-searching-profiles.png: Added property svn:mime-type.
  1202. * blog-files/inspector-status-bar-with-errors.png: Added property svn:mime-type.
  1203. * blog-files/inspector-toolbar.png: Added property svn:mime-type.
  1204. * blog-files/inspector-with-scope.png: Added property svn:mime-type.
  1205. * blog-files/inspector/breakpoints.png: Added property svn:mime-type.
  1206. * blog-files/inspector/colors.png: Added property svn:mime-type.
  1207. * blog-files/inspector/cookies.png: Added property svn:mime-type.
  1208. * blog-files/inspector/css_selectors.png: Added property svn:mime-type.
  1209. * blog-files/inspector/css_syntax_highlight.png: Added property svn:mime-type.
  1210. * blog-files/inspector/dom_storage.png: Added property svn:mime-type.
  1211. * blog-files/inspector/edit_attributes.png: Added property svn:mime-type.
  1212. * blog-files/inspector/enable.png: Added property svn:mime-type.
  1213. * blog-files/inspector/event_listeners.png: Added property svn:mime-type.
  1214. * blog-files/inspector/form_data.png: Added property svn:mime-type.
  1215. * blog-files/inspector/inline_highlight.png: Added property svn:mime-type.
  1216. * blog-files/inspector/inorder.png: Added property svn:mime-type.
  1217. * blog-files/inspector/inspect_inspector.png: Added property svn:mime-type.
  1218. * blog-files/inspector/inspect_inspector_small.png: Added property svn:mime-type.
  1219. * blog-files/inspector/load_lines.png: Added property svn:mime-type.
  1220. * blog-files/inspector/nodelist.png: Added property svn:mime-type.
  1221. * blog-files/inspector/scope_bar.png: Added property svn:mime-type.
  1222. * blog-files/inspector/watched_expression.png: Added property svn:mime-type.
  1223. * blog-files/kate-circle.png: Modified property svn:mime-type.
  1224. * blog-files/kate-gradient-rounded.png: Modified property svn:mime-type.
  1225. * blog-files/kate-gradient.png: Modified property svn:mime-type.
  1226. * blog-files/kate-reflected.png: Modified property svn:mime-type.
  1227. * blog-files/kate-vignette-mask.png: Modified property svn:mime-type.
  1228. * blog-files/kate.png: Modified property svn:mime-type.
  1229. * blog-files/leaves/images/apple-touch-icon.png: Added property svn:mime-type.
  1230. * blog-files/leaves/images/realLeaf1.png: Added property svn:mime-type.
  1231. * blog-files/leaves/images/realLeaf2.png: Added property svn:mime-type.
  1232. * blog-files/leaves/images/realLeaf3.png: Added property svn:mime-type.
  1233. * blog-files/leaves/images/realLeaf4.png: Added property svn:mime-type.
  1234. * blog-files/leaves/images/textBackground.png: Added property svn:mime-type.
  1235. * blog-files/maskspeedracer.png: Modified property svn:mime-type.
  1236. * blog-files/pulse.png: Added property svn:mime-type.
  1237. * blog-files/scrollbarpicture.png: Modified property svn:mime-type.
  1238. * blog-files/sfx-perf.png: Modified property svn:mime-type.
  1239. * blog-files/squirrelfish-webkit-graph.png: Modified property svn:mime-type.
  1240. * blog-files/squirrelfish.png: Modified property svn:mime-type.
  1241. * blog-files/vignette-mask.png: Modified property svn:mime-type.
  1242. * blog-files/webgl/resources/mars500x250.png: Modified property svn:mime-type.
  1243. * blog-files/wsj-nopreload.png: Modified property svn:mime-type.
  1244. * blog-files/wsj-preload.png: Modified property svn:mime-type.
  1245. * blog-files/wsj-vs.png: Modified property svn:mime-type.
  1246. * blog/wp-admin/images/align-center.png: Added property svn:mime-type.
  1247. * blog/wp-admin/images/align-left.png: Added property svn:mime-type.
  1248. * blog/wp-admin/images/align-none.png: Added property svn:mime-type.
  1249. * blog/wp-admin/images/align-right.png: Added property svn:mime-type.
  1250. * blog/wp-admin/images/archive-link.png: Added property svn:mime-type.
  1251. * blog/wp-admin/images/blue-grad.png: Added property svn:mime-type.
  1252. * blog/wp-admin/images/button-grad-active-vs.png: Added property svn:mime-type.
  1253. * blog/wp-admin/images/button-grad-active.png: Added property svn:mime-type.
  1254. * blog/wp-admin/images/button-grad-vs.png: Added property svn:mime-type.
  1255. * blog/wp-admin/images/button-grad.png: Added property svn:mime-type.
  1256. * blog/wp-admin/images/comment-grey-bubble.png: Added property svn:mime-type.
  1257. * blog/wp-admin/images/fade-butt.png: Modified property svn:mime-type.
  1258. * blog/wp-admin/images/fav-top.png: Added property svn:mime-type.
  1259. * blog/wp-admin/images/fav-vs.png: Added property svn:mime-type.
  1260. * blog/wp-admin/images/fav.png: Added property svn:mime-type.
  1261. * blog/wp-admin/images/generic.png: Added property svn:mime-type.
  1262. * blog/wp-admin/images/gray-grad.png: Added property svn:mime-type.
  1263. * blog/wp-admin/images/icons32-vs.png: Added property svn:mime-type.
  1264. * blog/wp-admin/images/icons32.png: Added property svn:mime-type.
  1265. * blog/wp-admin/images/list-vs.png: Added property svn:mime-type.
  1266. * blog/wp-admin/images/list.png: Added property svn:mime-type.
  1267. * blog/wp-admin/images/logo-ghost.png: Added property svn:mime-type.
  1268. * blog/wp-admin/images/marker.png: Added property svn:mime-type.
  1269. * blog/wp-admin/images/mask.png: Added property svn:mime-type.
  1270. * blog/wp-admin/images/menu-vs.png: Added property svn:mime-type.
  1271. * blog/wp-admin/images/menu.png: Added property svn:mime-type.
  1272. * blog/wp-admin/images/no.png: Added property svn:mime-type.
  1273. * blog/wp-admin/images/se.png: Added property svn:mime-type.
  1274. * blog/wp-admin/images/wheel.png: Added property svn:mime-type.
  1275. * blog/wp-admin/images/white-grad-active.png: Added property svn:mime-type.
  1276. * blog/wp-admin/images/white-grad.png: Added property svn:mime-type.
  1277. * blog/wp-admin/images/wordpress-logo.png: Modified property svn:mime-type.
  1278. * blog/wp-admin/images/yes.png: Added property svn:mime-type.
  1279. * blog/wp-content/Picture9.png: Modified property svn:mime-type.
  1280. * blog/wp-content/chucknorris.png: Modified property svn:mime-type.
  1281. * blog/wp-content/databaseexample.png: Modified property svn:mime-type.
  1282. * blog/wp-content/drosera.png: Modified property svn:mime-type.
  1283. * blog/wp-content/hitlist.png: Modified property svn:mime-type.
  1284. * blog/wp-content/rotate.png: Modified property svn:mime-type.
  1285. * blog/wp-content/svgtext.png: Modified property svn:mime-type.
  1286. * blog/wp-content/svgtextmini.png: Modified property svn:mime-type.
  1287. * blog/wp-content/svgtextmini_01.png: Modified property svn:mime-type.
  1288. * blog/wp-content/themes/classic/screenshot.png: Modified property svn:mime-type.
  1289. * blog/wp-content/themes/default/screenshot.png: Modified property svn:mime-type.
  1290. * blog/wp-content/uploads/2007/06/newinspector.png: Modified property svn:mime-type.
  1291. * blog/wp-content/webInspector.png: Modified property svn:mime-type.
  1292. * blog/wp-includes/images/crystal/archive.png: Added property svn:mime-type.
  1293. * blog/wp-includes/images/crystal/audio.png: Added property svn:mime-type.
  1294. * blog/wp-includes/images/crystal/code.png: Added property svn:mime-type.
  1295. * blog/wp-includes/images/crystal/default.png: Added property svn:mime-type.
  1296. * blog/wp-includes/images/crystal/document.png: Added property svn:mime-type.
  1297. * blog/wp-includes/images/crystal/interactive.png: Added property svn:mime-type.
  1298. * blog/wp-includes/images/crystal/spreadsheet.png: Added property svn:mime-type.
  1299. * blog/wp-includes/images/crystal/text.png: Added property svn:mime-type.
  1300. * blog/wp-includes/images/crystal/video.png: Added property svn:mime-type.
  1301. * blog/wp-includes/images/rss.png: Modified property svn:mime-type.
  1302. * blog/wp-includes/images/upload.png: Added property svn:mime-type.
  1303. * blog/wp-includes/images/wlw/wp-comments.png: Added property svn:mime-type.
  1304. * blog/wp-includes/images/wlw/wp-icon.png: Added property svn:mime-type.
  1305. * blog/wp-includes/images/wlw/wp-watermark.png: Added property svn:mime-type.
  1306. * blog/wp-includes/js/codepress/images/line-numbers.png: Added property svn:mime-type.
  1307. * blog/wp-includes/js/thickbox/macFFBgHack.png: Added property svn:mime-type.
  1308. * blog/wp-includes/js/thickbox/tb-close.png: Added property svn:mime-type.
  1309. * blog/wp-includes/js/tinymce/plugins/wpeditimage/img/delete.png: Added property svn:mime-type.
  1310. * blog/wp-includes/js/tinymce/plugins/wpeditimage/img/image.png: Added property svn:mime-type.
  1311. * blog/wp-includes/js/tinymce/plugins/wpgallery/img/delete.png: Added property svn:mime-type.
  1312. * blog/wp-includes/js/tinymce/plugins/wpgallery/img/edit.png: Added property svn:mime-type.
  1313. * blog/wp-includes/js/tinymce/plugins/wpgallery/img/gallery.png: Added property svn:mime-type.
  1314. * blog/wp-includes/js/tinymce/themes/advanced/img/gotmoxie.png: Added property svn:mime-type.
  1315. * blog/wp-includes/js/tinymce/themes/advanced/img/sflogo.png: Added property svn:mime-type.
  1316. * blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/buttons.png: Added property svn:mime-type.
  1317. * blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg.png: Added property svn:mime-type.
  1318. * blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png: Added property svn:mime-type.
  1319. * blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png: Added property svn:mime-type.
  1320. * blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/butt2.png: Added property svn:mime-type.
  1321. * blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/button_bg.png: Added property svn:mime-type.
  1322. * demos/calendar/Images/AirPort4.png: Modified property svn:mime-type.
  1323. * demos/calendar/Images/AirPortError.png: Modified property svn:mime-type.
  1324. * demos/calendar/Images/disclosureTriangleSmallDown.png: Modified property svn:mime-type.
  1325. * demos/calendar/Images/disclosureTriangleSmallRight.png: Modified property svn:mime-type.
  1326. * demos/calendar/Images/statusbarBackground.png: Modified property svn:mime-type.
  1327. * demos/calendar/Images/statusbarResizerVertical.png: Modified property svn:mime-type.
  1328. * demos/editingToolbar/FancyToolbarImages/button.png: Modified property svn:mime-type.
  1329. * demos/editingToolbar/FancyToolbarImages/buttonLeft.png: Modified property svn:mime-type.
  1330. * demos/editingToolbar/FancyToolbarImages/buttonMiddle.png: Modified property svn:mime-type.
  1331. * demos/editingToolbar/FancyToolbarImages/buttonPressed.png: Modified property svn:mime-type.
  1332. * demos/editingToolbar/FancyToolbarImages/buttonPressedLeft.png: Modified property svn:mime-type.
  1333. * demos/editingToolbar/FancyToolbarImages/buttonPressedMiddle.png: Modified property svn:mime-type.
  1334. * demos/editingToolbar/FancyToolbarImages/buttonPressedRight.png: Modified property svn:mime-type.
  1335. * demos/editingToolbar/FancyToolbarImages/buttonRight.png: Modified property svn:mime-type.
  1336. * demos/editingToolbar/FancyToolbarImages/camera.png: Modified property svn:mime-type.
  1337. * demos/editingToolbar/FancyToolbarImages/link.png: Modified property svn:mime-type.
  1338. * demos/editingToolbar/FancyToolbarImages/textAlign.png: Modified property svn:mime-type.
  1339. * demos/editingToolbar/FancyToolbarImages/toolbarOutline.png: Modified property svn:mime-type.
  1340. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottom.png: Modified property svn:mime-type.
  1341. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomLeft.png: Modified property svn:mime-type.
  1342. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomRight.png: Modified property svn:mime-type.
  1343. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineLeft.png: Modified property svn:mime-type.
  1344. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineRight.png: Modified property svn:mime-type.
  1345. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTop.png: Modified property svn:mime-type.
  1346. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopLeft.png: Modified property svn:mime-type.
  1347. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopRight.png: Modified property svn:mime-type.
  1348. * demos/editingToolbar/images/safari.png: Modified property svn:mime-type.
  1349. * demos/sticky-notes/deleteButton.png: Added property svn:mime-type.
  1350. * demos/sticky-notes/deleteButtonPressed.png: Added property svn:mime-type.
  1351. * demos/transitions-and-transforms/Horsehead.png: Modified property svn:mime-type.
  1352. * demos/transitions-and-transforms/Spaces.png: Modified property svn:mime-type.
  1353. * demos/transitions-and-transforms/Stacks.png: Modified property svn:mime-type.
  1354. * images/DroseraPic.png: Modified property svn:mime-type.
  1355. * misc/drosera/drosera.png: Modified property svn:mime-type.
  1356. * perf/slickspeed/logo.png: Modified property svn:mime-type.
  1357. 2009-11-03 Joseph Pecoraro <joepeck@webkit.org>
  1358. Reviewed by Timothy Hatcher.
  1359. Adding images for an upcoming blog post.
  1360. * blog-files/inspector/breakpoints.png: Added.
  1361. * blog-files/inspector/colors.png: Added.
  1362. * blog-files/inspector/cookies.png: Added.
  1363. * blog-files/inspector/css_selectors.png: Added.
  1364. * blog-files/inspector/css_syntax_highlight.png: Added.
  1365. * blog-files/inspector/dom_storage.png: Added.
  1366. * blog-files/inspector/edit_attributes.png: Added.
  1367. * blog-files/inspector/enable.png: Added.
  1368. * blog-files/inspector/event_listeners.png: Added.
  1369. * blog-files/inspector/form_data.png: Added.
  1370. * blog-files/inspector/inline_highlight.png: Added.
  1371. * blog-files/inspector/inorder.png: Added.
  1372. * blog-files/inspector/inspect_inspector.png: Added.
  1373. * blog-files/inspector/inspect_inspector_small.png: Added.
  1374. * blog-files/inspector/load_lines.png: Added.
  1375. * blog-files/inspector/nodelist.png: Added.
  1376. * blog-files/inspector/scope_bar.png: Added.
  1377. * blog-files/inspector/watched_expression.png: Added.
  1378. 2009-10-26 Dan Bernstein <mitz@apple.com>
  1379. Reviewed by Adele Peterson.
  1380. Updated BSD License
  1381. * coding/bsd-license.html: Updated to the latest version.
  1382. 2009-10-22 Mark Rowe <mrowe@apple.com>
  1383. Update to WordPress 2.8.5.
  1384. * blog:
  1385. 2009-10-19 Andrew Scherkus <scherkus@chromium.org>
  1386. Reviewed by Eric Seidel.
  1387. Replace boolean operator indentation example with an if statement.
  1388. https://bugs.webkit.org/show_bug.cgi?id=30538
  1389. * coding/coding-style.html: Replace boolean indenting example to use "if"
  1390. 2009-10-16 Darin Adler <darin@apple.com>
  1391. * coding/RefPtr.html: Minor revision, updating a link and tweaking
  1392. wording a bit in few places.
  1393. 2009-10-14 Evan Martin <evan@chromium.org>
  1394. Reviewed by Darin Adler.
  1395. Document what state the build tree is expected to be in after a patch.
  1396. * coding/contributing.html:
  1397. 2009-10-11 Cameron McCormack <cam@mcc.id.au>
  1398. Reviewed by Eric Seidel.
  1399. Change <a name> to id="" to fix styling problems
  1400. https://bugs.webkit.org/show_bug.cgi?id=30283
  1401. This prevents the headings from being styled like links.
  1402. * coding/contributing.html:
  1403. 2009-10-08 Alex Milowski <alex@milowski.com>
  1404. Reviewed by Darin Adler.
  1405. Added a basic description of the layout and rendering project and added links to the blog entries on rendering.
  1406. * projects/layout/index.html:
  1407. 2009-10-07 Sam Weinig <sam@webkit.org>
  1408. Reviewed by Dan Bernstein.
  1409. Fix for https://bugs.webkit.org/show_bug.cgi?id=30196
  1410. Change style guidelines for indentation in header files
  1411. * coding/coding-style.html: Don't indent in a namespace in a header file.
  1412. 2009-10-07 Steve Falkenburg <sfalken@apple.com>
  1413. Reviewed by Mark Rowe.
  1414. Add new Windows build prerequisite: Visual Studio 2005 Service Pack 1 ATL Security Update
  1415. * building/tools.html:
  1416. 2009-10-06 Jeremy Orlow <jorlow@chromium.org>
  1417. Reviewed by Adam Barth.
  1418. Diagram needs to be linked from the home page
  1419. https://bugs.webkit.org/show_bug.cgi?id=30142
  1420. http://webkit.org/coding/major-objects.html was never linked from the home
  1421. page.
  1422. * nav.inc:
  1423. 2009-09-28 Alex Milowski <alex@milowski.com>
  1424. <http://webkit.org/b/29098> Update to MathML project webpage
  1425. Reviewed by David Kilzer.
  1426. Updated MathML project page and added link to Wiki page.
  1427. * projects/mathml/index.html:
  1428. 2009-09-21 Brady Eidson <beidson@apple.com>
  1429. Reviewed by Darin Adler.
  1430. Add coding style guidelines for 'using namespace.'
  1431. https://bugs.webkit.org/show_bug.cgi?id=29499
  1432. * coding/coding-style.html:
  1433. 2009-09-21 Brady Eidson <beidson@apple.com>
  1434. Rubberstamped by Sam Weinig.
  1435. Add some example files for an upcoming blog post.
  1436. * blog-files/load-unload-example.html: Added.
  1437. * blog-files/pageshow-pagehide-example.html: Added.
  1438. 2009-09-17 Eric Seidel <eric@webkit.org>
  1439. Reviewed by Darin Adler.
  1440. Update contributing.html to mention recently added tools.
  1441. https://bugs.webkit.org/show_bug.cgi?id=29318
  1442. Update our contributing instructions to mention
  1443. the new tools (check-webkit-style and commit-queue)
  1444. recently added to make contributions easier.
  1445. * coding/contributing.html:
  1446. - Mention check-webkit-style as an optional helper tool.
  1447. - Mention checking the 'patch' checkbox.
  1448. - Mention the commit-queue as an optional helper tool.
  1449. - Remove "or in email" since patch reviews are all done via bugzilla.
  1450. - Encourage contributers to be responsible for getting their patch landed. Provide a list of committers.
  1451. - Mention commit-queue as an optional help in getting your patch landed.
  1452. - Give an overview of the commit-queue process and link to the Commit Queue docs.
  1453. 2009-09-09 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
  1454. Reviewed by Mark Rowe.
  1455. Add instructions to bug reporting guidlines on how and when
  1456. to apply port-specific keywords.
  1457. * quality/bugwriting.html:
  1458. 2009-09-08 Sam Weinig <sam@webkit.org>
  1459. Reviewed by Adele Peterson.
  1460. Update Security Group Members list.
  1461. * security/security-group-members.html:
  1462. 2009-09-06 Cameron McCormack <cam@mcc.id.au>
  1463. Reviewed by Eric Seidel.
  1464. Drop <definition-src> support
  1465. https://bugs.webkit.org/show_bug.cgi?id=28991
  1466. When SVG 1.1 Second Edition is a Recommendation we can remove the
  1467. entry altogether.
  1468. * projects/svg/status.xml: Update page to state that <definition-src>
  1469. is not supported.
  1470. 2009-08-26 Mark Rowe <mrowe@apple.com>
  1471. Upgrade WordPress to the latest version.
  1472. * blog/wp-includes/version.php:
  1473. * blog/wp-login.php:
  1474. 2009-08-20 Adam Barth <abarth@webkit.org>
  1475. Reviewed by Eric Seidel.
  1476. major-objects.html should show direct Frame <-> Document pointers
  1477. https://bugs.webkit.org/show_bug.cgi?id=28479
  1478. * coding/major-objects.html: Added pointers to diagram.
  1479. 2009-08-18 Anton Muhin <antonm@chromium.org>
  1480. Reviewed by Adam Barth.
  1481. Mention handy --bug flag of prepare-ChangeLog script.
  1482. https://bugs.webkit.org/show_bug.cgi?id=28425
  1483. * coding/contributing.html: Add a reference for --bug flag
  1484. 2009-08-12 Joe Mason <joe.mason@torchmobile.com>
  1485. Reviewed by Adam Barth.
  1486. Better explanation of "Null after navigation" in object diagram
  1487. https://bugs.webkit.org/show_bug.cgi?id=28232
  1488. * coding/major-objects.html:
  1489. 2009-08-11 Adam Barth <abarth@webkit.org>
  1490. Unreviewed.
  1491. Remove a few characters from the ASCII art to make it fit better in the
  1492. template.
  1493. * coding/major-objects.html:
  1494. 2009-08-11 Adam Barth <abarth@webkit.org>
  1495. Reviewed by Oliver Hunt.
  1496. Document relation between major objects in WebCore
  1497. https://bugs.webkit.org/show_bug.cgi?id=28210
  1498. Added a diagram showing the relation between major objects.
  1499. * coding/major-objects.html: Added.
  1500. 2009-08-07 Joseph Pecoraro <joepeck02@gmail.com>
  1501. Reviewed by Oliver Hunt.
  1502. Fix webkit-jobs link
  1503. * contact.html:
  1504. 2009-08-03 Mark Rowe <mrowe@apple.com>
  1505. Update two WordPress plug-ins that we use.
  1506. * blog/wp-content/plugins/akismet/akismet.php:
  1507. * blog/wp-content/plugins/akismet/readme.txt:
  1508. * blog/wp-content/plugins/commentcontrol.php:
  1509. 2009-08-03 Mark Rowe <mrowe@apple.com>
  1510. Add some missing files and delete some obsolete files.
  1511. * blog:
  1512. 2009-08-03 Mark Rowe <mrowe@apple.com>
  1513. Update WordPress to the latest version.
  1514. * blog:
  1515. 2009-07-22 Holger Hans Peter Freyther <zecke@selfish.org>
  1516. Reviewed by Adam Treat.
  1517. Mention the new webkit-help and webkit-jobs mailinglist. Change
  1518. the description of webkit-dev to be more strict.
  1519. * contact.html:
  1520. 2009-07-22 Kenneth Rohde Christiansen <kenneth@webkit.org>
  1521. Reviewed by Adam Treat.
  1522. Coding style - Clarify some cases with spacing
  1523. https://bugs.webkit.org/show_bug.cgi?id=27499
  1524. Add explicit rule about no space before comma or semicolon.
  1525. * coding/coding-style.html:
  1526. 2009-07-17 Simon Fraser <simon.fraser@apple.com>
  1527. Fix the font to match the rest of the blog site.
  1528. * blog-files/3d-transforms/image-flip.html:
  1529. 2009-07-17 Simon Fraser <simon.fraser@apple.com>
  1530. Move the image flip effect into an iframe to avoid the long
  1531. blog page tripping a bug on Leopard.
  1532. * blog-files/3d-transforms/image-flip.html: Added.
  1533. 2009-07-16 Simon Fraser <simon.fraser@apple.com>
  1534. New demo files for an up-coming blog post.
  1535. * blog-files/3d-transforms/mighty-cubes.png: Added.
  1536. * blog-files/3d-transforms/morphing-cubes.html: Added.
  1537. * blog-files/3d-transforms/perspective-by-example.html: Added.
  1538. * blog-files/3d-transforms/poster-circle.html: Added.
  1539. * blog-files/3d-transforms/poster-circle.png: Added.
  1540. * blog-files/3d-transforms/transform-style.html: Added.
  1541. 2009-07-15 Joseph Pecoraro <joepeck02@gmail.com>
  1542. Reviewed by Sam Weinig.
  1543. Side bar linking to "DOM Interfaces" returns 404
  1544. https://bugs.webkit.org/show_bug.cgi?id=24000
  1545. * nav.inc:
  1546. 2009-07-09 Oliver Hunt <oliver@apple.com>
  1547. Reviewed by Geoff Garen.
  1548. JavaScript section of http://webkit.org is excessively out of date.
  1549. This removes old todo entries (like adding an API, which we've had since Leopard),
  1550. and adds an additional todo for a webkit-less Objective-C API.
  1551. * projects/javascript/index.html:
  1552. 2009-07-03 Adam Barth <abarth@webkit.org>
  1553. Reviewed by Sam Weinig.
  1554. Adam and Collin's affiliation is incorrect
  1555. https://bugs.webkit.org/show_bug.cgi?id=26954
  1556. This change corrects their affiliation.
  1557. * security/security-group-members.html:
  1558. 2009-06-24 Brady Eidson <beidson@apple.com>
  1559. Reviewed by Mark Rowe
  1560. * demos/index.html: Fix more typos etc.
  1561. 2009-06-17 Sam Weinig <sam@webkit.org>
  1562. Reviewed by Mark Rowe.
  1563. * security/index.html: Fix some typos.
  1564. 2009-06-17 Sam Weinig <sam@webkit.org>
  1565. Reviewed by Mark Rowe.
  1566. Move security policy to security/index.html so that
  1567. webkit.org/security/ works.
  1568. * nav.inc:
  1569. * security/index.html: Copied from security/security-policy.html.
  1570. * security/security-policy.html: Removed.
  1571. 2009-06-13 Sam Weinig <sam@webkit.org>
  1572. Reviewed by Timothy Hatcher.
  1573. Add WebKit Security Policy and member list of the WebKit Security Group.
  1574. * nav.inc:
  1575. * security: Added.
  1576. * security/security-group-members.html: Added.
  1577. * security/security-policy.html: Added.
  1578. 2009-06-12 Brady Eidson <beidson@apple.com>
  1579. Reviewed by Oliver Hunt
  1580. Add a page indexing the various demo applications we have posted.
  1581. * demos/index.html: Added.
  1582. * nav.inc: Add a link to the demos page on the side bar
  1583. * css/main.css: Add a style for date stamps based on the blog.
  1584. * demos/calendar/index.html: Added to redirect to Calendar.html. I'm not moving Calendar.html to
  1585. index.html as the Calendar.html url has already been published and we should keep it working.
  1586. Move the drosera test code to /misc, as it is no longer a meaningful demo:
  1587. * demos/drosera: Removed.
  1588. * demos/drosera/demo.js: Removed.
  1589. * demos/drosera/drosera.png: Removed.
  1590. * demos/drosera/index.html: Removed.
  1591. * misc/drosera: Copied from demos/drosera.
  1592. Move the sticky notes example into /demos:
  1593. * demos/sticky-notes: Added.
  1594. * demos/sticky-notes/StickyNotes.manifest: Copied from misc/DatabaseExample.manifest.
  1595. * demos/sticky-notes/deleteButton.png: Copied from misc/deleteButton.png.
  1596. * demos/sticky-notes/deleteButtonPressed.png: Copied from misc/deleteButtonPressed.png.
  1597. * demos/sticky-notes/index.html: Copied from misc/DatabaseExample.html.
  1598. * misc/DatabaseExample.html: Changed to redirect to demos/sticky-notes/index.html. I'm not removing
  1599. it altogether as the misc/DatabaseExample.html url has already been published and we should keep it working.
  1600. * misc/DatabaseExample.manifest: Removed.
  1601. * misc/deleteButton.png: Removed.
  1602. * misc/deleteButtonPressed.png: Removed.
  1603. 2009-06-10 Brent Fulgham <bfulgham@webkit.org>
  1604. Reviewed by Eric Seidel.
  1605. Fixes https://bugs.webkit.org/show_bug.cgi?id=26309.
  1606. Update a few items in the testing language to:
  1607. (1) Reflect results are now generated with Leopard (not Tiger)
  1608. (2) Explain how to generate pixel-level layout tests.
  1609. * quality/testing.html:
  1610. * quality/testwriting.html:
  1611. 2009-06-05 Kenneth Rohde Christiansen <kenneth.christiansen@openbossa.com>
  1612. Bug 26188: Clarify some of the cases in the coding style guide
  1613. <https://bugs.webkit.org/show_bug.cgi?id=26188>
  1614. Reviewed and tweaked by David Kilzer.
  1615. Changed the coding style document to clarify some cases of ambiguity.
  1616. * coding/coding-style.html:
  1617. 2009-05-27 Maciej Stachowiak <mjs@apple.com>
  1618. Not reviewed, demo content.
  1619. - Add doctype to Calendar demo.
  1620. * demos/calendar/Calendar.html:
  1621. 2009-05-27 Maciej Stachowiak <mjs@apple.com>
  1622. Not reviewed, demo content.
  1623. - add Calendar demo.
  1624. * demos/calendar: Added.
  1625. * demos/calendar/Boom.aiff: Added.
  1626. * demos/calendar/Calendar.css: Added.
  1627. * demos/calendar/Calendar.html: Added.
  1628. * demos/calendar/Calendar.js: Added.
  1629. * demos/calendar/Calendar.manifest: Added.
  1630. * demos/calendar/CalendarApp.icns: Added.
  1631. * demos/calendar/Images: Added.
  1632. * demos/calendar/Images/AirPort4.png: Added.
  1633. * demos/calendar/Images/AirPortError.png: Added.
  1634. * demos/calendar/Images/disclosureTriangleSmallDown.png: Added.
  1635. * demos/calendar/Images/disclosureTriangleSmallRight.png: Added.
  1636. * demos/calendar/Images/statusbarBackground.png: Added.
  1637. * demos/calendar/Images/statusbarResizerVertical.png: Added.
  1638. * demos/calendar/LocationImage.js: Added.
  1639. * demos/calendar/Utilities.js: Added.
  1640. * demos/calendar/favicon.ico: Added.
  1641. * demos/calendar/mime.types: Added.
  1642. 2009-05-20 Mark Rowe <mrowe@apple.com>
  1643. Rubber-stamped by Eric Seidel.
  1644. Prevent search engines from getting creative in their descriptions of webkit.org content.
  1645. * blog/wp-content/themes/webkit/header.php:
  1646. * header.inc:
  1647. 2009-05-06 Eric Seidel <eric@webkit.org>
  1648. Reviewed by Maciej Stachowiak.
  1649. Update Contributing instructions after feedback from Julie Parent.
  1650. https://bugs.webkit.org/show_bug.cgi?id=25611
  1651. * coding/contributing.html: Add a few more comments on ChangeLogs
  1652. 2009-04-17 Simon Fraser <simon.fraser@apple.com>
  1653. Reviewed by Steve Falkenburg
  1654. Fix the link for setting the Platform SDK paths in the Windows instructions.
  1655. * building/build.html:
  1656. 2009-04-15 Alexey Proskuryakov <ap@webkit.org>
  1657. Reviewed by Darin Adler.
  1658. https://bugs.webkit.org/show_bug.cgi?id=25186
  1659. There is no XSLT component in bugzilla
  1660. * projects/xslt/index.html: Changed to search by bug title.
  1661. 2009-02-20 David Kilzer <ddkilzer@apple.com>
  1662. Bug 23983: Remove illegal HTML tags from Sunspider web pages
  1663. <https://bugs.webkit.org/show_bug.cgi?id=23983>
  1664. Reviewed by Alexey Proskuryakov.
  1665. * perf/sunspider-0.9/3d-cube.html: Removed </link> tag.
  1666. * perf/sunspider-0.9/3d-morph.html: Ditto.
  1667. * perf/sunspider-0.9/3d-raytrace.html: Ditto.
  1668. * perf/sunspider-0.9/access-binary-trees.html: Ditto.
  1669. * perf/sunspider-0.9/access-fannkuch.html: Ditto.
  1670. * perf/sunspider-0.9/access-nbody.html: Ditto.
  1671. * perf/sunspider-0.9/access-nsieve.html: Ditto.
  1672. * perf/sunspider-0.9/bitops-3bit-bits-in-byte.html: Ditto.
  1673. * perf/sunspider-0.9/bitops-bits-in-byte.html: Ditto.
  1674. * perf/sunspider-0.9/bitops-bitwise-and.html: Ditto.
  1675. * perf/sunspider-0.9/bitops-nsieve-bits.html: Ditto.
  1676. * perf/sunspider-0.9/controlflow-recursive.html: Ditto.
  1677. * perf/sunspider-0.9/crypto-aes.html: Ditto.
  1678. * perf/sunspider-0.9/crypto-md5.html: Ditto.
  1679. * perf/sunspider-0.9/crypto-sha1.html: Ditto.
  1680. * perf/sunspider-0.9/date-format-tofte.html: Ditto.
  1681. * perf/sunspider-0.9/date-format-xparb.html: Ditto.
  1682. * perf/sunspider-0.9/math-cordic.html: Ditto.
  1683. * perf/sunspider-0.9/math-partial-sums.html: Ditto.
  1684. * perf/sunspider-0.9/math-spectral-norm.html: Ditto.
  1685. * perf/sunspider-0.9/regexp-dna.html: Ditto.
  1686. * perf/sunspider-0.9/string-base64.html: Ditto.
  1687. * perf/sunspider-0.9/string-fasta.html: Ditto.
  1688. * perf/sunspider-0.9/string-tagcloud.html: Ditto.
  1689. * perf/sunspider-0.9/string-unpack-code.html: Ditto.
  1690. * perf/sunspider-0.9/string-validate-input.html: Ditto.
  1691. * perf/sunspider-0.9/sunspider-driver.html: Ditto.
  1692. * perf/sunspider-0.9/sunspider-results.html: Removed </link> and </input> tags.
  1693. * perf/sunspider-0.9/sunspider.html: Removed </link> tag.
  1694. 2009-01-19 Adam Roben <aroben@apple.com>
  1695. Add links to some recommended Visual Studio hotfixes
  1696. Reviewed by Dave Hyatt.
  1697. * building/tools.html:
  1698. 2009-01-08 Brent Fulgham <bfulgham@gmail.com>
  1699. Reviewed by Adele Petersen.
  1700. Landed by Pamela Greene.
  1701. Fixes: http://bugs.webkit.org/show_bug.cgi?id=23139
  1702. Remove links to no-longer-existing Drosera project.
  1703. Also, clean up references to wiki in the nav.inc file.
  1704. * nav.inc: Correct paths to wiki, swap Drosera for Web Inspector.
  1705. 2008-12-30 Brent Fulgham <bfulgham@gmail.com>
  1706. Reviewed by Darin Adler.
  1707. Landed by Pamela Greene.
  1708. Fixes: https://bugs.webkit.org/show_bug.cgi?id=22908.
  1709. Update website so that newbies are told they must set the
  1710. WebKitOutputDir to get a valid build.
  1711. * building/build.html: Add language (and link) indicating the
  1712. importance of setting the WebKitOutputDir variable, as well
  1713. as a link to instructions on how to do so.
  1714. 2008-12-19 Dean Jackson <dino@apple.com>
  1715. Media queries that return <integer> but are really boolean
  1716. are restricted to 0 and 1. This is in line with other
  1717. media features.
  1718. * specs/MediaQueriesExtensions.html:
  1719. 2008-12-03 Dean Jackson <dino@apple.com>
  1720. Added links to the WebKit and Mozilla bugs for pointer-events.
  1721. * specs/PointerEventsProperty.html:
  1722. 2008-11-27 Julien Chaffraix <jchaffraix@webkit.org>
  1723. Reviewed by Eric Seidel.
  1724. Bug 22468: Coding style: config.h should only be included in implementation files, not in header
  1725. https://bugs.webkit.org/show_bug.cgi?id=22468
  1726. Clarified the rules about config.h inclusion and added 2 new examples to illustrate it. Also
  1727. added an explanation about the implementation files.
  1728. * coding/coding-style.html:
  1729. 2008-11-25 Dean Jackson <dino@apple.com>
  1730. Add a new work-in-progress proposal for pointer-events in
  1731. HTML content. Also note that the Media Queries extensions
  1732. are not at all official.
  1733. * specs/MediaQueriesExtensions.html:
  1734. * specs/PointerEventsProperty.html: Added.
  1735. * specs/index.html:
  1736. 2008-11-25 Jack Wootten <jackwootton@gmail.com>
  1737. Bug 20125: http://webkit.org/ missing link to key documentation for new developers.
  1738. <https://bugs.webkit.org/show_bug.cgi?id=20125>
  1739. Reviewed by David Kilzer.
  1740. * projects/documentation/index.html: Added link to "Introduction to
  1741. WebKit Objective-C Programming Guide".
  1742. 2008-11-24 Dean Jackson <dino@apple.com>
  1743. Document the work-in-progress proposed extensions to
  1744. CSS 3 Media Queries.
  1745. * specs/MediaQueriesExtensions.html: Added.
  1746. * specs/index.html:
  1747. 2008-11-17 Geoffrey Garen <ggaren@apple.com>
  1748. Reviewed by Sam Weinig and Antti Koivisto.
  1749. Clarified the last coding style rule, which was a baffling in its
  1750. initial form.
  1751. (Now let's see if our code ever starts following this rule!)
  1752. * coding/coding-style.html:
  1753. 2008-11-17 Brady Eidson <beidson@apple.com>
  1754. Reviewed by Mark Rowe
  1755. Clarify an edge case for acronym capitalization.
  1756. * coding/coding-style.html:
  1757. 2008-11-11 Simon Fraser <simon.fraser@apple.com>
  1758. Update leaves animation sample.
  1759. * blog-files/leaves/index.html:
  1760. * blog-files/leaves/leaves.css:
  1761. 2008-11-11 Dean Jackson <dino@apple.com>
  1762. Removed quotes in animation name value.
  1763. * blog-files/pulse.html:
  1764. 2008-11-11 Dean Jackson <dino@apple.com>
  1765. Added a smaller version of a screenshot.
  1766. * blog-files/leaves-screenshot-small.jpg: Added.
  1767. 2008-11-11 Dean Jackson <dino@apple.com>
  1768. Add a bunch of examples for CSS Animation blog draft.
  1769. * blog-files/bounce.html: Added.
  1770. * blog-files/bounce.png: Added.
  1771. * blog-files/leaves-screenshot.jpg: Added.
  1772. * blog-files/leaves/images/apple-touch-icon.png: Added.
  1773. * blog-files/leaves/images/backgroundLeaves.jpg: Added.
  1774. * blog-files/leaves/images/realLeaf1.png: Added.
  1775. * blog-files/leaves/images/realLeaf2.png: Added.
  1776. * blog-files/leaves/images/realLeaf3.png: Added.
  1777. * blog-files/leaves/images/realLeaf4.png: Added.
  1778. * blog-files/leaves/images/textBackground.png: Added.
  1779. * blog-files/leaves/index.html: Added.
  1780. * blog-files/leaves/leaves.css: Added.
  1781. * blog-files/leaves/leaves.js: Added.
  1782. * blog-files/pulse.html: Added.
  1783. * blog-files/pulse.png: Added.
  1784. 2008-10-30 Cameron Zwarich <zwarich@apple.com>
  1785. Rubber-stamped by Mark Rowe.
  1786. Update the link to Mac Subversion binaries.
  1787. * building/tools.html:
  1788. 2008-10-27 Antti Koivisto <antti@apple.com>
  1789. Add a file.
  1790. * blog-files/squirrelfish-link-animated.svg: Added.
  1791. 2008-10-27 Antti Koivisto <antti@apple.com>
  1792. Add some svg files.
  1793. * blog-files/cubes-7.svg: Added.
  1794. * blog-files/number-morph.svg: Added.
  1795. 2008-10-07 Darin Adler <darin@apple.com>
  1796. * coding/RefPtr.html: Second draft.
  1797. 2008-10-04 Mark Rowe <mrowe@apple.com>
  1798. Upgrade to WordPress 2.6.2.
  1799. * blog:
  1800. 2008-09-26 Timothy Hatcher <timothy@apple.com>
  1801. Add screenshots of searching in the Web Inspector.
  1802. Not reviewed.
  1803. * blog-files/inspector-searching-elements.png: Added.
  1804. * blog-files/inspector-searching-profiles.png: Added.
  1805. 2008-09-25 Maciej Stachowiak <mjs@apple.com>
  1806. Not reviewed.
  1807. - add some screenshots.
  1808. * blog-files/acid3-screenshot.png: Added.
  1809. * blog-files/acid3-timing-screenshot.png: Added.
  1810. 2008-09-25 Darin Adler <darin@apple.com>
  1811. * contact.html: Take a cut at making the role of webkitsdk-dev
  1812. clearer, specifying that it's Mac OS X specific and hosted at
  1813. Apple, not WebKit.
  1814. 2008-09-24 Timothy Hatcher <timothy@apple.com>
  1815. Add new screenshots of the Web Inspector's Scope Variables pane.
  1816. Not reviewed.
  1817. * blog-files/inspector-closure-scope.png: Added.
  1818. * blog-files/inspector-event-scope.png: Added.
  1819. * blog-files/inspector-with-scope.png: Added.
  1820. 2008-09-24 Timothy Hatcher <timothy@apple.com>
  1821. Add another screenshot of the Web Inspector.
  1822. Not reviewed.
  1823. * blog-files/inspector-disabling-properties.png: Added.
  1824. 2008-09-24 Timothy Hatcher <timothy@apple.com>
  1825. Add new screenshots of the Web Inspector.
  1826. Not reviewed.
  1827. * blog-files/inspector-console-autocomplete.png: Added.
  1828. * blog-files/inspector-databases-panel-query-view.png: Added.
  1829. * blog-files/inspector-databases-panel.png: Added.
  1830. * blog-files/inspector-elements-panel.png: Added.
  1831. * blog-files/inspector-numeric-style-stepping.gif: Added.
  1832. * blog-files/inspector-profiles-panel.png: Added.
  1833. * blog-files/inspector-resources-panel.png: Added.
  1834. * blog-files/inspector-scripts-panel.png: Added.
  1835. * blog-files/inspector-status-bar-with-errors.png: Added.
  1836. * blog-files/inspector-toolbar.png: Added.
  1837. 2008-09-24 Timothy Hatcher <timothy@apple.com>
  1838. Not reviewed.
  1839. * demos/drosera/demo.js: Add some console.profile() calls.
  1840. 2008-09-22 Alexander Orlov <alexander.orlov@loxal.net>
  1841. Reviewed by Darin Adler.
  1842. * projects/performance/index.html: Remove dead link to the 24fun test.
  1843. 2008-09-18 Maciej Stachowiak <mjs@apple.com>
  1844. Not reviewed.
  1845. * blog-files/animation-demo.svg: Added.
  1846. 2008-09-18 Maciej Stachowiak <mjs@apple.com>
  1847. Not reviewed.
  1848. * blog-files/sfx-perf.png: Added.
  1849. 2008-08-25 Mark Rowe <mrowe@apple.com>
  1850. Reviewed by Dan Bernstein.
  1851. Modernize the bug reporting guidelines and make them a little less Mac-specific.
  1852. * quality/bugwriting.html:
  1853. 2008-08-18 Mark Rowe <mrowe@apple.com>
  1854. Upgrade to WordPress 2.6.1.
  1855. * blog:
  1856. 2008-08-01 Adam Roben <aroben@apple.com>
  1857. Add a link to the instructions to use Apple's Safari for Windows
  1858. symbol server
  1859. Reviewed by Eric Seidel.
  1860. * building/debug.html:
  1861. 2008-07-28 Robert Blaut <webkit@blaut.biz>
  1862. Reviewed by Mark Rowe.
  1863. Fix for bug: Website provides no guidance on debugging
  1864. <https://bugs.webkit.org/show_bug.cgi?id=3643>
  1865. * building/debug.html: added info about Xcode Debugging Guide.
  1866. 2008-07-26 Mark Rowe <mrowe@apple.com>
  1867. Rubber-stamped by Oliver Hunt.
  1868. Update the Squirrelfish bytecode documentation.
  1869. * specs/squirrelfish-bytecode.html:
  1870. 2008-07-26 Robert Blaut <webkit@blaut.biz>
  1871. Reviewed by Eric Seidel.
  1872. Fix for <https://bugs.webkit.org/show_bug.cgi?id=19712>
  1873. Corrected validation errors in main.css file.
  1874. * css/main.css:
  1875. 2008-07-26 Robert Blaut <webkit@blaut.biz>
  1876. Reviewed by Alexey Proskuryakov.
  1877. Fix for bug: <https://bugs.webkit.org/show_bug.cgi?id=18186>
  1878. Added notes about unsupported Visual Studio versions.
  1879. * building/tools.html:
  1880. 2008-07-26 Robert Blaut <webkit@blaut.biz>
  1881. Reviewed by Eric Seidel.
  1882. Fix for <https://bugs.webkit.org/show_bug.cgi?id=16719>
  1883. Removed basic requirements for undetected version of WebKit.
  1884. * quality/reporting.html:
  1885. 2008-07-26 Robert Blaut <webkit@blaut.biz>
  1886. Reviewed by Adele Petersen.
  1887. Fix for bug 7436: Truncated title on webkit DOM page.
  1888. <https://bugs.webkit.org/show_bug.cgi?id=7436>
  1889. * projects/dom/index.html: Added basic project informations.
  1890. 2008-07-24 Adam Roben <aroben@apple.com>
  1891. Remove some redundant text accidentally checked in
  1892. * building/tools.html:
  1893. 2008-07-24 Adam Roben <aroben@apple.com>
  1894. Fix a dead link to the Windows Platform SDK and related instructions
  1895. Rubberstamped by Alexey Proskuryakov.
  1896. * building/tools.html: Fixed a dead link.
  1897. 2008-07-21 Mark Rowe <mrowe@apple.com>
  1898. Update Akismet plugin to 2.1.6.
  1899. * blog/wp-content/plugins/akismet/akismet.php:
  1900. 2008-07-21 Mark Rowe <mrowe@apple.com>
  1901. Update to WordPress 2.6.
  1902. * blog:
  1903. 2008-07-18 David D. Kilzer <ddkilzer@webkit.org>
  1904. Fixed indentation of example code for C++ pointers/references!
  1905. * coding/coding-style.html:
  1906. 2008-07-18 Robert Blaut <webkit@blaut.biz>
  1907. Reviewed by David Kilzer.
  1908. Fix for <https://bugs.webkit.org/show_bug.cgi?id=12313>
  1909. Added code style guidelines for multi-line boolean expressions
  1910. * coding/coding-style.html:
  1911. 2008-07-02 Mark Rowe <mrowe@apple.com>
  1912. Update a URL that was out of date.
  1913. * building/checkout.html:
  1914. 2008-07-01 Mark Rowe <mrowe@apple.com>
  1915. Update the path to the configuration file.
  1916. * blog/wp-config.php:
  1917. 2008-06-27 Dan Bernstein <mitz@apple.com>
  1918. Reviewed by Timothy Hatcher.
  1919. * css/main.css: Reduced text shadow offsets.
  1920. 2008-06-25 Maciej Stachowiak <mjs@apple.com>
  1921. Not reviewed, web site fix.
  1922. Remove blank lines in an attempt to fix feeds.
  1923. * blog/wp-content/themes/webkit/index.php:
  1924. * blog/wp-content/themes/webkit/links.php:
  1925. 2008-06-22 Aaron Digulla <digulla@hepe.com>
  1926. Reviewed by Darin Adler.
  1927. Fix https://bugs.webkit.org/show_bug.cgi?id=18993
  1928. Bug 18993: Update of buttons in editing toolbar demo lags behind
  1929. * demos/editingToolbar/FancyToolbar.js:
  1930. * demos/editingToolbar/index.html:
  1931. 2008-06-16 Maciej Stachowiak <mjs@apple.com>
  1932. A handy reference image.
  1933. * blog-files/acid3-timing.png: Added.
  1934. 2008-06-10 Maciej Stachowiak <mjs@apple.com>
  1935. Not reviewed.
  1936. - tweak newly added markup.
  1937. * blog/wp-content/themes/webkit/header.php:
  1938. 2008-06-10 Maciej Stachowiak <mjs@apple.com>
  1939. Rubber stamped by Adele.
  1940. - add short title and multisize icon
  1941. * blog/wp-content/themes/webkit/header.php:
  1942. * images/surfin-safari.icns: Added.
  1943. 2008-06-04 Dean Jackson <dino@apple.com>
  1944. Put index pages into specs dirs to make it easier to
  1945. find the documents.
  1946. * specs/index.html: Added.
  1947. * specs/CSSVisualEffects/index.html: Added.
  1948. 2008-06-03 Maciej Stachowiak <mjs@apple.com>
  1949. Add a snapshot of the squirrelfish bytecode docs.
  1950. * specs/squirrelfish-bytecode.html: Added.
  1951. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1952. Transparent background!
  1953. * blog-files/squirrelfish.png:
  1954. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1955. Crop!
  1956. * blog-files/squirrelfish-webkit-graph.png:
  1957. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1958. Renamed this file quiet down the peanut gallery.
  1959. * blog-files/squirrelfish-webkit-graph.png: Copied from blog-files/webkit-graph.png.
  1960. * blog-files/webkit-graph.png: Removed.
  1961. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1962. Added a graph.
  1963. * blog-files/webkit-graph.png: Added.
  1964. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1965. Moved the squirrelfish mascot to the right place.
  1966. * blog-files/squirrelfish.png: Copied from images/squirrelfish.png.
  1967. * images/squirrelfish.png: Removed.
  1968. 2008-06-02 Geoffrey Garen <ggaren@apple.com>
  1969. Uploaded the squirrelfish mascot.
  1970. * images/squirrelfish.png: Added.
  1971. 2008-05-23 William Siegrist <wsiegrist@apple.com>
  1972. Reviewed by Mark Rowe
  1973. Rename duplicated "notice" id to "terms".
  1974. * css/main.css:
  1975. * nav.inc:
  1976. 2008-05-16 Anders Carlsson <andersca@apple.com>
  1977. Reviewed by Jess.
  1978. Add manifest MIME type.
  1979. * .htaccess:
  1980. 2008-05-14 Anders Carlsson <andersca@apple.com>
  1981. Reviewed by Mitz.
  1982. Make our Sticky notes example an offline web app.
  1983. * misc/DatabaseExample.html:
  1984. * misc/DatabaseExample.manifest: Added.
  1985. 2008-05-12 Maciej Stachowiak <mjs@apple.com>
  1986. Ooops, I made some mistakes trying to fix the validation errors. This time for sure.
  1987. * demos/transitions-and-transforms/index.html:
  1988. 2008-05-12 Maciej Stachowiak <mjs@apple.com>
  1989. Make the demo valid HTML5 (according to validator.nu) and add alt text to the images.
  1990. * demos/transitions-and-transforms/index.html:
  1991. 2008-05-12 Maciej Stachowiak <mjs@apple.com>
  1992. Tweaked demo visuals slightly.
  1993. * demos/transitions-and-transforms/leopard.css:
  1994. 2008-05-12 Maciej Stachowiak <mjs@apple.com>
  1995. Tweak CSS to look a little better while loading.
  1996. * demos/transitions-and-transforms/leopard.css:
  1997. 2008-05-12 Maciej Stachowiak <mjs@apple.com>
  1998. Not reviewed - new demo.
  1999. Added a demo of CSS Transforms and Transitions.
  2000. * demos/transitions-and-transforms: Added.
  2001. * demos/transitions-and-transforms/Finder Coverflow.png: Added.
  2002. * demos/transitions-and-transforms/Horsehead.png: Added.
  2003. * demos/transitions-and-transforms/Mail Stationery.png: Added.
  2004. * demos/transitions-and-transforms/Quick Look.png: Added.
  2005. * demos/transitions-and-transforms/Spaces.png: Added.
  2006. * demos/transitions-and-transforms/Stacks.png: Added.
  2007. * demos/transitions-and-transforms/Time Machine.png: Added.
  2008. * demos/transitions-and-transforms/index.html: Added.
  2009. * demos/transitions-and-transforms/leopard.css: Added.
  2010. * demos/transitions-and-transforms/no-style.html: Added.
  2011. 2008-05-08 Mark Rowe <mrowe@apple.com>
  2012. Reviewed by Sam Weinig.
  2013. Add a link to the Mac OS Forge terms of use.
  2014. * nav.inc:
  2015. 2008-04-25 Mark Rowe <mrowe@apple.com>
  2016. Upgrade to WordPress 2.5.1. Another day, another security vulnerability in WordPress.
  2017. * blog:
  2018. 2008-04-21 Dean Jackson <dino@apple.com>
  2019. Updated CSS Visual Effects proposals.
  2020. CSS Animations
  2021. * described simplified sandwich model (that animations have no effect
  2022. outside their duration and last specified animation wins)
  2023. * diagram showing the above
  2024. * specified animations to start at style resolution or document load,
  2025. whichever is later.
  2026. * animation start events always have elapsedTime == 0
  2027. CSS Transforms
  2028. * removed text saying that elements cannot be drawn as intersecting.
  2029. * described that preserve-3d trees often need a flattening parent, otherwise
  2030. elements can be hidden behind their ancestor's background.
  2031. * describe that preserve-3d is not always possible, such as when
  2032. overflow is 'hidden'.
  2033. CSS Transitions
  2034. * no change
  2035. * specs/CSSVisualEffects/CSSAnimation.html:
  2036. * specs/CSSVisualEffects/CSSTransforms.html:
  2037. * specs/CSSVisualEffects/CSSTransitions.html:
  2038. * specs/CSSVisualEffects/sandwich.png: Added.
  2039. 2008-04-08 Dean Jackson <dino@apple.com>
  2040. Add some updated proposals for CSS specifications, such as
  2041. Transforms and Transitions which are already implemented in TOT.
  2042. * specs/CSSVisualEffects: Added.
  2043. * specs/CSSVisualEffects/CSSAnimation.html: Added.
  2044. * specs/CSSVisualEffects/CSSTransforms.html: Added.
  2045. * specs/CSSVisualEffects/CSSTransitions.html: Added.
  2046. 2008-03-31 Mark Rowe <mrowe@apple.com>
  2047. Add some images that were missed in the WordPress 2.5 upgrade.
  2048. * blog/:
  2049. 2008-03-31 Mark Rowe <mrowe@apple.com>
  2050. Upgrade to WordPress 2.5
  2051. * blog/:
  2052. 2008-03-28 Darin Adler <darin@apple.com>
  2053. * building/build.html: Add another mention of using the Cygwin shell.
  2054. * building/tools.html: Fix a typo on the name Cygwin.
  2055. 2008-03-26 Maciej Stachowiak <mjs@apple.com>
  2056. More screenshots for the blog.
  2057. * blog-files/acid3-full-rendering-pass.png: Added.
  2058. * blog-files/acid3-rendering-reference.png: Added.
  2059. 2008-03-26 Maciej Stachowiak <mjs@apple.com>
  2060. Screenshot for blog post.
  2061. * blog-files/acid3-100.png: Added.
  2062. 2008-03-23 Antti Koivisto <antti@apple.com>
  2063. * blog-files/wsj-vs.png: Added.
  2064. 2008-03-23 Eric Seidel <eric@webkit.org>
  2065. Reviewed by Sam.
  2066. Make our SVG status document slightly less inaccurate.
  2067. * projects/svg/status.xml:
  2068. 2008-03-21 Antti Koivisto <antti@apple.com>
  2069. Add some images for a blog post.
  2070. * blog-files/wsj-nopreload.png: Added.
  2071. * blog-files/wsj-preload.png: Added.
  2072. 2008-03-17 Dan Bernstein <mitz@apple.com>
  2073. Reviewed by Sam Weinig.
  2074. - link "backtrace" to the page that explains how to get one
  2075. * quality/bugwriting.html:
  2076. 2008-03-15 Matt Lilek <webkit@mattlilek.com>
  2077. Rubber-stamped by Mitz.
  2078. Update crash log page with instructions for Leopard.
  2079. * quality/crashlogs.html:
  2080. 2008-03-11 Robert Blaut <webkit@blaut.biz>
  2081. Reviewed by Darin Adler.
  2082. Fix bug http://bugs.webkit.org/show_bug.cgi?id=17280
  2083. Patch deletes an obsolete hitlist.html page and other references to it
  2084. * nav.inc: removed menu link to hitlist.html
  2085. * projects/compat/hitlist.html: Removed.
  2086. * projects/compat/index.html: removed reference to hitlist.html
  2087. 2008-03-06 Timothy Hatcher <timothy@apple.com>
  2088. Rubber-stamped by Adam Roben.
  2089. Add a simple page that has various demo functions for Drosera.
  2090. * demos/drosera: Added.
  2091. * demos/drosera/demo.js: Added.
  2092. * demos/drosera/drosera.png: Added.
  2093. * demos/drosera/index.html: Added.
  2094. 2008-03-04 Mark Rowe <mrowe@apple.com>
  2095. Rubber-stamped by Brady Eidson.
  2096. * building/tools.html: Update link to Windows Platform SDK to its new location.
  2097. 2008-03-04 Mark Rowe <mrowe@apple.com>
  2098. Reviewed by Sam Weinig.
  2099. Add a note about preferring if over else if when the previous if is terminated by a return statement.
  2100. * coding/coding-style.html:
  2101. 2008-02-08 Adam Roben <aroben@apple.com>
  2102. * perf/slickspeed/config.ini: Fixed version number.
  2103. 2008-02-08 Adam Roben <aroben@apple.com>
  2104. Update jQuery to v1.2.3
  2105. Rubberstamped by Mitz.
  2106. * perf/slickspeed/config.ini:
  2107. * perf/slickspeed/frameworks/jquery-1.2.3.js: Renamed from WebKitSite/perf/slickspeed/frameworks/jquery-1.2.1.js.
  2108. 2008-02-07 David Smith <catfish.man@gmail.com>
  2109. Rubber stamped by weinig and bdash.
  2110. Update prototype.js to 1.6.0.2 to be a bit less unfair in comparative benchmarking.
  2111. * perf/slickspeed/frameworks/prototype.js:
  2112. 2008-02-07 David Smith <catfish.man@gmail.com>
  2113. Rubber stamped by Mark Rowe
  2114. Fix a duplicate selector in the test.
  2115. * perf/slickspeed/selectors.list:
  2116. 2008-02-07 David Smith <catfish.man@gmail.com>
  2117. Reviewed by Adam Roben.
  2118. Added :nth-child and :last-child to the list of selectors to test.
  2119. * perf/slickspeed/selectors.list:
  2120. 2008-02-05 Mark Rowe <mrowe@apple.com>
  2121. Update WordPress to 2.3.3 which includes security fixes.
  2122. * blog/wp-admin/install-helper.php:
  2123. * blog/wp-includes/gettext.php:
  2124. * blog/wp-includes/pluggable.php:
  2125. * blog/wp-includes/version.php:
  2126. * blog/xmlrpc.php:
  2127. 2008-02-02 David Smith <catfish.man@gmail.com>
  2128. Reviewed by Oliver.
  2129. Update the selector benchmark/test now that WebKit supports :only-child and :last-child;
  2130. Unfortunately, the javascript libraries don't appear to implement :*-of-type correctly, so that one remains disabled for now.
  2131. * perf/slickspeed/header.html: Typo fix, and updated the note to clarify that WebKit is no longer the only implementation causing us to leave some selectors disabled.
  2132. * perf/slickspeed/selectors.list: Added the new selectors
  2133. 2008-02-02 Mark Rowe <mrowe@apple.com>
  2134. Add WordPress plugin to give more control over blog comment settings.
  2135. * blog/wp-content/plugins/commentcontrol.php: Added.
  2136. 2008-01-30 Jessica Kahn <jess@apple.com>
  2137. Reviewed by Tim Hatcher.
  2138. * coding/coding-style.html:
  2139. Adding a note about avoiding explicit nil/NO initialization of Objective-C instance variables.
  2140. 2008-01-21 David Smith <catfish.man@gmail.com>
  2141. Reviewed by Darin Adler.
  2142. Added a modified version of the MooTools SlickSpeed Selector Test/Benchmark to show off querySelectorAll. MIT licensed.
  2143. * perf/slickspeed: Added.
  2144. * perf/slickspeed/config.ini: Added.
  2145. * perf/slickspeed/footer.html: Added.
  2146. * perf/slickspeed/frameworks: Added.
  2147. * perf/slickspeed/frameworks/DomQuery.js: Added.
  2148. * perf/slickspeed/frameworks/dummy.js: Added.
  2149. * perf/slickspeed/frameworks/jquery-1.2.1.js: Added.
  2150. * perf/slickspeed/frameworks/prototype.js: Added.
  2151. * perf/slickspeed/header.html: Added.
  2152. * perf/slickspeed/index.php: Added.
  2153. * perf/slickspeed/instructions.txt: Added.
  2154. * perf/slickspeed/logo.png: Added.
  2155. * perf/slickspeed/selectors.list: Added.
  2156. * perf/slickspeed/style.css: Added.
  2157. * perf/slickspeed/system: Added.
  2158. * perf/slickspeed/system/index.php: Added.
  2159. * perf/slickspeed/system/slickspeed.js: Added.
  2160. * perf/slickspeed/system/template.php: Added.
  2161. * perf/slickspeed/template.html: Added.
  2162. 2008-01-17 Steve Falkenburg <sfalken@apple.com>
  2163. Added Vista crash logging information.
  2164. Reviewed by Adam.
  2165. * quality/crashlogs.html:
  2166. 2008-01-07 Eric Seidel <eric@webkit.org>
  2167. Reviewed by Mark Rowe.
  2168. * projects/svg/status.xml: remove fixed bugs.
  2169. 2007-12-30 Mark Rowe <mrowe@apple.com>
  2170. Unreviewed. Update WordPress to 2.3.2, which includes security fixes.
  2171. * blog/wp-admin/admin.php:
  2172. * blog/wp-admin/includes/file.php:
  2173. * blog/wp-admin/install.php:
  2174. * blog/wp-admin/setup-config.php:
  2175. * blog/wp-app.php:
  2176. * blog/wp-includes/formatting.php:
  2177. * blog/wp-includes/functions.php:
  2178. * blog/wp-includes/pluggable.php:
  2179. * blog/wp-includes/post.php:
  2180. * blog/wp-includes/query.php:
  2181. * blog/wp-includes/taxonomy.php:
  2182. * blog/wp-includes/version.php:
  2183. * blog/wp-includes/wp-db.php:
  2184. * blog/wp-mail.php:
  2185. * blog/wp-settings.php:
  2186. * blog/xmlrpc.php:
  2187. 2007-12-29 Alp Toker <alp@atoker.com>
  2188. Fix typo.
  2189. * perf/sunspider-0.9/sunspider.html:
  2190. 2007-12-29 Alp Toker <alp@atoker.com>
  2191. Reviewed by Maciej.
  2192. Provide the current URL in the SunSpider results page. Useful for
  2193. copying benchmark results out of browsers without a location bar or
  2194. where the location bar can't handle long URLs.
  2195. * perf/sunspider-0.9/sunspider-results.html:
  2196. 2007-12-21 David Smith <catfish.man@gmail.com>
  2197. At bdash's suggestion, display a message if someone attempts to run the 'native' version of the getElementsByClassName benchmark in a browser that doesn't support that.
  2198. * blog-files/gebcnspeedtest.html:
  2199. 2007-12-21 David Smith <catfish.man@gmail.com>
  2200. Add the benchmark from the previous commit as well.
  2201. * blog-files/gebcnspeedtest.html: Added.
  2202. * blog-files/prototype-for-gebcn-test.js: Added.
  2203. 2007-12-21 David Smith <catfish.man@gmail.com>
  2204. Add a graph of benchmark results for an upcoming blog post.
  2205. * blog-files/gebcnwebkitonly.png: Added.
  2206. 2007-12-18 Antti Koivisto <antti@apple.com>
  2207. Reviewed by Darin and Steve.
  2208. Add instructions to install the QuickTime SDK for Windows.
  2209. * building/tools.html:
  2210. 2007-12-18 Mark Rowe <mrowe@apple.com>
  2211. Fix typo.
  2212. * perf/sunspider-0.9/sunspider.html:
  2213. 2007-12-18 Steve Falkenburg <sfalken@apple.com>
  2214. Correct link to Visual Studio Express 2005.
  2215. Old link points to 2008.
  2216. Reviewed by Mark.
  2217. * building/tools.html:
  2218. 2007-12-17 Maciej Stachowiak <mjs@apple.com>
  2219. Reviewed by Eric.
  2220. - work around IE layout bugs
  2221. * perf/sunspider-0.9/sunspider.css:
  2222. 2007-12-17 Maciej Stachowiak <mjs@apple.com>
  2223. Reviewed by Mark.
  2224. - fix compare feature
  2225. * perf/sunspider-0.9/sunspider-results.html:
  2226. 2007-12-17 Maciej Stachowiak <mjs@apple.com>
  2227. Rubber stamped by Mark.
  2228. - Add a copy of SunSpider 0.9 to the site
  2229. * perf: Added.
  2230. * perf/sunspider-0.9: Added.
  2231. * perf/sunspider-0.9/3d-cube.html: Added.
  2232. * perf/sunspider-0.9/3d-morph.html: Added.
  2233. * perf/sunspider-0.9/3d-raytrace.html: Added.
  2234. * perf/sunspider-0.9/access-binary-trees.html: Added.
  2235. * perf/sunspider-0.9/access-fannkuch.html: Added.
  2236. * perf/sunspider-0.9/access-nbody.html: Added.
  2237. * perf/sunspider-0.9/access-nsieve.html: Added.
  2238. * perf/sunspider-0.9/bitops-3bit-bits-in-byte.html: Added.
  2239. * perf/sunspider-0.9/bitops-bits-in-byte.html: Added.
  2240. * perf/sunspider-0.9/bitops-bitwise-and.html: Added.
  2241. * perf/sunspider-0.9/bitops-nsieve-bits.html: Added.
  2242. * perf/sunspider-0.9/controlflow-recursive.html: Added.
  2243. * perf/sunspider-0.9/crypto-aes.html: Added.
  2244. * perf/sunspider-0.9/crypto-md5.html: Added.
  2245. * perf/sunspider-0.9/crypto-sha1.html: Added.
  2246. * perf/sunspider-0.9/date-format-tofte.html: Added.
  2247. * perf/sunspider-0.9/date-format-xparb.html: Added.
  2248. * perf/sunspider-0.9/math-cordic.html: Added.
  2249. * perf/sunspider-0.9/math-partial-sums.html: Added.
  2250. * perf/sunspider-0.9/math-spectral-norm.html: Added.
  2251. * perf/sunspider-0.9/regexp-dna.html: Added.
  2252. * perf/sunspider-0.9/string-base64.html: Added.
  2253. * perf/sunspider-0.9/string-fasta.html: Added.
  2254. * perf/sunspider-0.9/string-tagcloud.html: Added.
  2255. * perf/sunspider-0.9/string-unpack-code.html: Added.
  2256. * perf/sunspider-0.9/string-validate-input.html: Added.
  2257. * perf/sunspider-0.9/sunspider-analyze-results.js: Added.
  2258. * perf/sunspider-0.9/sunspider-compare-results.js: Added.
  2259. * perf/sunspider-0.9/sunspider-driver.html: Added.
  2260. * perf/sunspider-0.9/sunspider-record-result.js: Added.
  2261. * perf/sunspider-0.9/sunspider-results.html: Added.
  2262. * perf/sunspider-0.9/sunspider-test-prefix.js: Added.
  2263. * perf/sunspider-0.9/sunspider.css: Added.
  2264. * perf/sunspider-0.9/sunspider.html: Added.
  2265. 2007-12-16 Brent Fulgham <bfulgham@gmail.com>
  2266. Reviewed by Maciej Stachowiak.
  2267. http://bugs.webkit.org/show_bug.cgi?id=16446.
  2268. * building/debug.html: Update to expand the win32 debugging instructions.
  2269. 2007-12-07 Brady Eidson <beidson@apple.com>
  2270. Reviewed by Darin's rubberstamp
  2271. When developing the Database feature and dealing with UI Delegate issues, it is important to have
  2272. live examples on the web to help reproduce certain situations.
  2273. This file is a dumping ground for such examples, and starts out with one function - the ability to add
  2274. arbitrary amounts of data to a database to test the quota-related mechanisms of the UI
  2275. * misc/DatabaseTester.html: Added.
  2276. 2007-12-07 Brady Eidson <beidson@apple.com>
  2277. Reviewed by Adam Roben
  2278. * misc/DatabaseExample.html: Changed to differentiate failure between running with an
  2279. unsupported browser or some other error that prevented the database from opening.
  2280. In the future we can use ExceptionCodes returned from openDatabase(), but a good list
  2281. of those don't exist yet
  2282. 2007-12-05 Timothy Hatcher <timothy@apple.com>
  2283. Add another Inspector screenshot for an upcoming blog post.
  2284. * blog-files/InspectorDatabaseBrowser.png: Added.
  2285. 2007-12-04 Alp Toker <alp@atoker.com>
  2286. Reviewed by Mark Rowe.
  2287. Link to Planet WebKit.
  2288. * nav.inc:
  2289. 2007-12-02 Adam Roben <aroben@apple.com>
  2290. Add another screenshot
  2291. * blog-files/InspectElementMenu.png: Added.
  2292. 2007-12-02 Adam Roben <aroben@apple.com>
  2293. Add some Inspector screenshots for an upcoming blog post
  2294. Rubberstamped by Mark Rowe.
  2295. * blog-files/InspectorCSSEditing.png: Added.
  2296. * blog-files/InspectorFonts.png: Added.
  2297. 2007-11-30 Matt Lilek <webkit@mattlilek.com>
  2298. Reviewed by Adam.
  2299. Link to the commit and review policy.
  2300. * coding/contributing.html:
  2301. * nav.inc:
  2302. 2007-11-30 Darin Adler <darin@apple.com>
  2303. * coding/commit-review-policy.html: A couple more typos and very
  2304. minor grammatical stuff. No substantive change.
  2305. 2007-11-30 Darin Adler <darin@apple.com>
  2306. * coding/commit-review-policy.html: Fixed a typo, added a footer.
  2307. 2007-11-30 Matt Lilek <webkit@mattlilek.com>
  2308. Reviewed by Maciej.
  2309. Clean up a couple of typos from Maciej's last patch.
  2310. * coding/commit-review-policy.html:
  2311. 2007-11-30 Maciej Stachowiak <mjs@apple.com>
  2312. Reviewed by Bertrand.
  2313. New commit and review policy.
  2314. * coding/commit-review-policy.html: Added.
  2315. 2007-11-21 Mark Rowe <mrowe@apple.com>
  2316. Reviewed by Eric.
  2317. Update coding style to cover control statements with no body.
  2318. * coding/coding-style.html:
  2319. 2007-11-17 Adam Roben <aroben@apple.com>
  2320. Update Windows debugging instructions
  2321. Reviewed by Mark Rowe.
  2322. * building/debug.html:
  2323. 2007-11-14 Brady Eidson <beidson@apple.com>
  2324. For future use
  2325. * images/DroseraPic.png: Added.
  2326. 2007-11-12 Brady Eidson <beidson@apple.com>
  2327. Reviewed by Tim
  2328. Update the DatabaseExample to use the new API
  2329. * misc/DatabaseExample.html:
  2330. 2007-11-12 Mark Rowe <mrowe@apple.com>
  2331. * building/tools.html: Remove extra >.
  2332. 2007-11-09 Antti Koivisto <antti@apple.com>
  2333. Rubber stamped by bdash.
  2334. Add directory for blog resources (and one image).
  2335. * blog-files: Added.
  2336. * blog-files/touch-poster.png: Added.
  2337. 2007-11-07 Dan Bernstein <mitz@apple.com>
  2338. Reviewed by Darin Adler.
  2339. - removed a workaround for the bug fixed in the WebCore part of this
  2340. patch
  2341. 2007-11-04 Timothy Hatcher <timothy@apple.com>
  2342. Land the HTML Editing Toolbar demo from WWDC 2007.
  2343. * demos: Added.
  2344. * demos/editingToolbar: Added.
  2345. * demos/editingToolbar/FancyToolbar.css: Added.
  2346. * demos/editingToolbar/FancyToolbar.js: Added.
  2347. * demos/editingToolbar/FancyToolbarImages: Added.
  2348. * demos/editingToolbar/FancyToolbarImages/button.png: Added.
  2349. * demos/editingToolbar/FancyToolbarImages/buttonLeft.png: Added.
  2350. * demos/editingToolbar/FancyToolbarImages/buttonMiddle.png: Added.
  2351. * demos/editingToolbar/FancyToolbarImages/buttonPressed.png: Added.
  2352. * demos/editingToolbar/FancyToolbarImages/buttonPressedLeft.png: Added.
  2353. * demos/editingToolbar/FancyToolbarImages/buttonPressedMiddle.png: Added.
  2354. * demos/editingToolbar/FancyToolbarImages/buttonPressedRight.png: Added.
  2355. * demos/editingToolbar/FancyToolbarImages/buttonRight.png: Added.
  2356. * demos/editingToolbar/FancyToolbarImages/camera.png: Added.
  2357. * demos/editingToolbar/FancyToolbarImages/link.png: Added.
  2358. * demos/editingToolbar/FancyToolbarImages/textAlign.png: Added.
  2359. * demos/editingToolbar/FancyToolbarImages/toolbarOutline.png: Added.
  2360. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottom.png: Added.
  2361. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomLeft.png: Added.
  2362. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomRight.png: Added.
  2363. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineLeft.png: Added.
  2364. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineRight.png: Added.
  2365. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTop.png: Added.
  2366. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopLeft.png: Added.
  2367. * demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopRight.png: Added.
  2368. * demos/editingToolbar/content.html: Added.
  2369. * demos/editingToolbar/images: Added.
  2370. * demos/editingToolbar/images/safari.png: Added.
  2371. * demos/editingToolbar/index.html: Added.
  2372. 2007-11-04 David D. Kilzer <ddkilzer@webkit.org>
  2373. CIA has changed its hostname from cia.navi.cx to cia.vc
  2374. <http://bugs.webkit.org/show_bug.cgi?id=15829>
  2375. Reviewed by Mitz.
  2376. * contact.html: Updated links to CIA.
  2377. 2007-11-03 David D. Kilzer <ddkilzer@webkit.org>
  2378. LGPL'ed files contain incorrect FSF address
  2379. <http://bugs.webkit.org/show_bug.cgi?id=14885>
  2380. Reviewed by NOBODY (follow-up fix).
  2381. * blog/wp-includes/class-snoopy.php:
  2382. * blog/wp-includes/gettext.php:
  2383. * blog/wp-includes/streams.php:
  2384. 2007-11-01 Sam Weinig <sam@webkit.org>
  2385. Rubber-stamped by Tim Hatcher.
  2386. * misc/DatabaseExample.html: Speed up default close speed to .25s
  2387. 2007-11-01 Sam Weinig <sam@webkit.org>
  2388. Reviewed by Adam Roben.
  2389. - Don't show the close button on the notes unless hovering over the note.
  2390. - Do transformation and fade when closing a note using the new transition properties.
  2391. * misc/DatabaseExample.html:
  2392. 2007-10-29 Mark Rowe <mrowe@apple.com>
  2393. Upgrade WordPress.
  2394. * blog: Updated.
  2395. 2007-10-29 Mark Rowe <mrowe@apple.com>
  2396. Files that have been added or modified on the web server without making it in to SVN.
  2397. * .htaccess:
  2398. * blog/wp-content/databaseexample.png: Added.
  2399. * blog/wp-content/uploads: Added.
  2400. * blog/wp-content/uploads/2007: Added.
  2401. * blog/wp-content/uploads/2007/06: Added.
  2402. * blog/wp-content/uploads/2007/06/newinspector.png: Added.
  2403. * building/cygwin-downloader.zip: Added.
  2404. 2007-10-25 Alexey Proskuryakov <ap@webkit.org>
  2405. Rubber-stamped by Mark Rowe.
  2406. * images/download.png: Updated to say "Nightly builds" instead of
  2407. "Nightly (6 MB)" - the Mac version is ~15 MB now, and this isn't a direct
  2408. download link anyway.
  2409. 2007-10-21 David Kilzer <ddkilzer@webkit.org>
  2410. Reviewed by Darin Adler.
  2411. - fix http://bugs.webkit.org/show_bug.cgi?id=15592
  2412. DOM Exception opening up client-side database example for the first time
  2413. There was a race condition when creating the WebKitStickyNotes table for the
  2414. first time in which the loaded() function (renamed to loadNotes()) could be
  2415. called before the table was created. Prevent this by only calling loadNotes()
  2416. in an executeSql() callback after we know the table exists, or after we know
  2417. the table has been created.
  2418. * misc/DatabaseExample.html: Renamed loaded() function to loadNotes().
  2419. Created a new loaded() function.
  2420. 2007-10-20 Mark Rowe <mrowe@apple.com>
  2421. Rubber-stamped by Adam.
  2422. Convert TIFFs to PNGs so that the demo page is fully-functional in the Gtk port.
  2423. * misc/DatabaseExample.html:
  2424. * misc/deleteButton.png: Added.
  2425. * misc/deleteButton.tiff: Removed.
  2426. * misc/deleteButtonPressed.png: Added.
  2427. * misc/deleteButtonPressed.tiff: Removed.
  2428. 2007-10-20 Adam Roben <aroben@apple.com>
  2429. Make the notes sticky!
  2430. Reviewed by Mark.
  2431. * misc/DatabaseExample.html:
  2432. * misc/deleteButton.tiff: Added.
  2433. * misc/deleteButtonPressed.tiff: Added.
  2434. 2007-10-19 Timothy Hatcher <timothy@apple.com>
  2435. Reviewed by Mark Rowe.
  2436. Fix a couple of exceptions for first time users.
  2437. * misc/DatabaseExample.html:
  2438. 2007-10-19 Anders Carlsson <andersca@apple.com>
  2439. Reviewed by Brady.
  2440. Make example actually work.
  2441. * misc/DatabaseExample.html:
  2442. 2007-10-19 Anders Carlsson <andersca@apple.com>
  2443. Reviewed by Adam.
  2444. Update example.
  2445. * misc/DatabaseExample.html:
  2446. 2007-10-19 Brady Eidson <beidson@apple.com>
  2447. Reviewed by Tim
  2448. Tiger's SQLite doesn't support CREATE TABLE IF NOT EXISTS :(
  2449. * misc/DatabaseExample.html:
  2450. 2007-10-19 Brady Eidson <beidson@apple.com>
  2451. Reviewed by Tim Hatcher
  2452. Sample database API usage
  2453. * misc/DatabaseExample.html: Added.
  2454. 2007-09-25 David Kilzer <ddkilzer@webkit.org>
  2455. Reviewed by Adam.
  2456. - Fix http://bugs.webkit.org/show_bug.cgi?id=14885
  2457. LGPL'ed files contain incorrect FSF address
  2458. * blog/wp-content/plugins/wp-cache/wp-cache.php:
  2459. * blog/wp-includes/class-snoopy.php:
  2460. * blog/wp-includes/gettext.php:
  2461. * blog/wp-includes/js/tinymce/license.html:
  2462. * blog/wp-includes/streams.php:
  2463. 2007-09-23 Maciej Stachowiak <mjs@apple.com>
  2464. Reviewed by Mark Rowe.
  2465. - Limit custom list bullets to ordered lists only
  2466. * css/blue.css:
  2467. * css/gray.css:
  2468. * css/green.css:
  2469. * css/ie.css:
  2470. * css/main.css:
  2471. * css/pink.css:
  2472. * css/purple.css:
  2473. * css/yellow.css:
  2474. 2007-09-22 Jan Michael Alonzo <jmalonzo@unpluggable.com>
  2475. Reviewed by Adam.
  2476. * coding/coding-style.html:
  2477. - in section Other Punctuation
  2478. - syntax instead of synatax
  2479. - fix sample code alignment
  2480. 2007-09-06 Maciej Stachowiak <mjs@apple.com>
  2481. Forgot the JS file.
  2482. * misc/WebKitDetect.js: Added.
  2483. 2007-09-06 Maciej Stachowiak <mjs@apple.com>
  2484. Not reviewed - copy of WebKitDetect script from wiki
  2485. * misc/WebKitDetect.html: Added.
  2486. 2007-08-20 Adam Roben <aroben@apple.com>
  2487. Remove any mention of drwtsn32.log, as it is almost never useful for tracking down crashes
  2488. Reviewed by Oliver.
  2489. * quality/crashlogs.html:
  2490. 2007-07-26 Maciej Stachowiak <mjs@apple.com>
  2491. - grammar fix pointed out by Mitz.
  2492. * projects/goals.html:
  2493. 2007-07-25 Maciej Stachowiak <mjs@apple.com>
  2494. Rubber stamped by Adam.
  2495. Added WebKit Project Goals.
  2496. * nav.inc: added a nav link.
  2497. * projects/goals.html: Added.
  2498. 2007-07-22 Matt Lilek <pewtermoose@gmail.com>
  2499. Reviewed by Adam Roben.
  2500. Add information on getting a useful crash log on Mac and Windows.
  2501. * nav.inc:
  2502. * quality/crashlogs.html: Added.
  2503. * quality/mac_reportbox.jpg: Added.
  2504. * quality/mac_viewtrace.jpg: Added.
  2505. * quality/win_installwatson.jpg: Added.
  2506. * quality/win_watsongui.jpg: Added.
  2507. * quality/win_watsoninstalled.jpg: Added.
  2508. 2007-07-20 Mark Rowe <mrowe@apple.com>
  2509. Replace symlink with a PHP-level include to allow use of git on Windows without cygwin.
  2510. WordPress will replace the file with a symlink when it's first accessed, and the PHP-level
  2511. include is functionally identical for our purposes on the first use.
  2512. * blog/wp-content/advanced-cache.php:
  2513. 2007-07-16 Charles Gaudette <charles@gaudette-net.com>
  2514. Reviewed by Niko.
  2515. - http://bugs.webkit.org/show_bug.cgi?id=14628
  2516. broken link on webkit.org home page - "KHTML" points to http://khtml.info/
  2517. * index.html:
  2518. 2007-07-06 Matt Lilek <pewtermoose@gmail.com>
  2519. Reviewed by Adam Roben.
  2520. Add info about VC++ Express forgetting SDK paths.
  2521. * building/build.html:
  2522. 2007-07-02 Mitz Pettel <mitz@webkit.org>
  2523. Reviewed by Darin Adler.
  2524. - http://bugs.webkit.org/show_bug.cgi?id=14482
  2525. Add information about the NeedsReduction and HasReduction keywords to quality/reduction.html
  2526. * quality/reduction.html:
  2527. 2007-07-01 Mitz Pettel <mitz@webkit.org>
  2528. Reviewed by Darin Adler.
  2529. - http://bugs.webkit.org/show_bug.cgi?id=14481
  2530. Broken links on coding/lgpl-license.html
  2531. * coding/lgpl-license.html:
  2532. 2007-06-24 Mitz Pettel <mitz@webkit.org>
  2533. Reviewed by Adam Roben.
  2534. Fix broken link.
  2535. * building/build.html:
  2536. 2007-06-23 Mark Rowe <mrowe@apple.com>
  2537. Not reviewed.
  2538. * building/checkout.html: Update link to bypass caching proxy as it has a habit of breaking huge downloads.
  2539. 2007-06-12 Adam Roben <aroben@apple.com>
  2540. Update the location of cygwin-downloader.zip.
  2541. Rubberstamped by Hyatt.
  2542. * building/tools.html:
  2543. 2007-06-12 Dave Hyatt <hyatt@apple.com>
  2544. Add Windows checkout/build instructions to the website.
  2545. * building/build.html:
  2546. * building/checkout.html:
  2547. * building/debug.html:
  2548. * building/tools.html: Added.
  2549. * building/run.html:
  2550. * css/main.css:
  2551. * index.html:
  2552. * nav.inc:
  2553. 2007-06-10 Geoffrey Garen <ggaren@apple.com>
  2554. Reviewed by Beth Dakin.
  2555. Cleaned up formatting on the check out page.
  2556. * building/checkout.html:
  2557. 2007-06-08 Mark Rowe <mrowe@apple.com>
  2558. Rubber-stamped by Hyatt.
  2559. Switch to using Internet Explorer's conditional comments to target IE-specific styles rather
  2560. than doing server-side user agent checks. This resolves an issue some people were seeing where
  2561. caching would lead to a page generated for an Internet Explorer user being served to a Safari
  2562. user. The visible symptom of this was many of the graphics were missing.
  2563. * blog/wp-content/themes/webkit/header.php:
  2564. * header.inc:
  2565. 2007-05-04 Mark Rowe <mrowe@apple.com>
  2566. Upgrade to WordPress 2.2. I didn't go to the effort of tracking down files
  2567. present in the old version which have since been removed, but it's unlikely
  2568. they'll ever cause a problem.
  2569. 2007-05-04 Mark Rowe <mrowe@apple.com>
  2570. Add graphics used by existing blog posts into SVN.
  2571. * blog/wp-content/rotate.png: Added.
  2572. * blog/wp-content/drosera.png: Added.
  2573. * blog/wp-content/hitlist.png: Added.
  2574. * blog/wp-content/svgtextmini.png: Added.
  2575. * blog/wp-content/svgtextmini_01.png: Added.
  2576. * blog/wp-content/textfield_screenshot.jpg: Added.
  2577. * blog/wp-content/Picture9.png: Added.
  2578. * blog/wp-content/svgtext.png: Added.
  2579. * blog/wp-content/webInspector.png: Added.
  2580. * blog/wp-content/rotate.svg: Added.
  2581. * blog/wp-content/chucknorris.png: Added.
  2582. 2007-04-21 Mitz Pettel <mitz@webkit.org>
  2583. Reviewed by Darin Adler.
  2584. - http://bugs.webkit.org/show_bug.cgi?id=13350
  2585. Build Ahem into DumpRenderTree
  2586. * quality/testing.html: Removed the requirement to download and install
  2587. Ahem for running the tests.
  2588. * quality/testwriting.html: Added information about Ahem.
  2589. 2007-04-09 Adele Peterson <adele@apple.com>
  2590. * blog/wp-content/chrome.jpg: Added.
  2591. 2007-04-05 Mark Malone <markmalone@mac.com>
  2592. Reviewed by Darin Adler.
  2593. http://bugs.webkit.org/show_bug.cgi?id=13273
  2594. Bug 13273: DOM Interfaces Nav link should go somewhere more useful
  2595. * nav.inc: Link directly to the hierarchy.
  2596. 2007-03-26 Darin Adler <darin@apple.com>
  2597. * coding/coding-style.html: Let's misquote George Orwell: "Wrong is right. Right is wrong."
  2598. 2007-03-25 Darin Adler <darin@apple.com>
  2599. * coding/coding-style.html: Put !important on right/wrong colors so they override the
  2600. green color that comes from the green.css stylesheet.
  2601. 2007-03-25 Darin Adler <darin@apple.com>
  2602. * coding/RefPtr.html: A couple minor wording tweaks.
  2603. 2007-03-25 Darin Adler <darin@apple.com>
  2604. * coding/RefPtr.html: Put the operator name "new" in the oblique style as with other identifiers.
  2605. 2007-03-25 Mark Rowe <mrowe@apple.com>
  2606. * coding/RefPtr.html: Fix grammar error that Mitz pointed out.
  2607. Replace raw ampersands in hyperlink URL with named entity.
  2608. 2007-03-25 Darin Adler <darin@apple.com>
  2609. * coding/RefPtr.html: A couple wording tweaks.
  2610. 2007-03-25 Darin Adler <darin@apple.com>
  2611. * coding/RefPtr.html: More formatting tweaks. Added a possible new topic for the document,
  2612. suggested by Anders.
  2613. 2007-03-24 Darin Adler <darin@apple.com>
  2614. * css/main.css: Try tighter spacing for code examples.
  2615. 2007-03-24 Darin Adler <darin@apple.com>
  2616. * coding/RefPtr.html: <span> -> </span>
  2617. 2007-03-24 Darin Adler <darin@apple.com>
  2618. * coding/RefPtr.html: "smart pointer" -> "smart pointers"
  2619. 2007-03-24 Darin Adler <darin@apple.com>
  2620. * coding/RefPtr.html: Added. First draft of a document about RefPtr.
  2621. Also tweaked the MIME types of a few files and removed a stray executable bit.
  2622. 2007-03-21 David Kilzer <ddkilzer@apple.com>
  2623. * building/checkout.html: By popular demand, the link to the svn 1.3 client has been removed.
  2624. 2007-03-21 David Kilzer <ddkilzer@apple.com>
  2625. * building/checkout.html: Got rid of "click here" link and restructured sentences
  2626. linking to svn clients.
  2627. 2007-03-21 David Kilzer <ddkilzer@apple.com>
  2628. Reviewed by Adam.
  2629. * building/checkout.html: Add link to svn 1.4 client for Mac OS X 10.4.
  2630. 2007-03-21 Maciej Stachowiak <mjs@apple.com>
  2631. - some specs to propose by email
  2632. * specs/HTML_Timed_Media_Elements.html: Added.
  2633. * specs/Timed_Media_CSS.html: Added.
  2634. * specs/Timed_Media_Elements-Open_Issues.html: Added.
  2635. * specs/mediaelement.css: Added.
  2636. * specs/movie-status-states.png: Added.
  2637. 2007-03-20 Matt Lilek <pewtermoose@gmail.com>
  2638. Reviewed by Darin Adler.
  2639. Clear up the steps necessary to get a patch landed.
  2640. http://bugs.webkit.org/show_bug.cgi?id=12877 - Bug 12877: "Contributing Code" page could be clearer
  2641. http://bugs.webkit.org/show_bug.cgi?id=8690 - Bug 8690: Contributing code doesn't mention what to do with new files
  2642. * coding/contributing.html:
  2643. 2007-03-18 Maciej Stachowiak <mjs@apple.com>
  2644. Added a random JS benchmark.
  2645. * misc/morph.html: Added.
  2646. 2007-03-14 Kevin McCullough <kmccullough@apple.com>
  2647. Reviewed by .
  2648. Silly wrapping change for testing a post-commit hook change.
  2649. * contact.html:
  2650. 2007-03-09 Darin Adler <darin@apple.com>
  2651. * blog/wp-content/themes/webkit/style.css: Removed rule for code since
  2652. we want it to match pre, and the default font looks fine -- no need to
  2653. ask for "Courier New" explicitly.
  2654. 2007-03-09 Mark Rowe <mrowe@apple.com>
  2655. Rubber-stamped by Tim Hatcher.
  2656. Sexy blog permalinks!
  2657. * blog/.htaccess: Added.
  2658. 2007-03-09 Mark Rowe <mrowe@apple.com>
  2659. Reviewed by Adam.
  2660. * building/checkout.html: Update repository URL.
  2661. 2007-03-07 Brady Eidson <beidson@apple.com>
  2662. Whoops, its actually prepare-ChangeLog
  2663. * coding/contributing.html:
  2664. 2007-03-07 Brady Eidson <beidson@apple.com>
  2665. Reviewed by Anders.
  2666. Explicitly mention the prepare-Changelog step for contributing patches
  2667. * coding/contributing.html:
  2668. 2007-02-25 Anders Carlsson <acarlsson@apple.com>
  2669. Reviewed by Maciej.
  2670. * building/checkout.html:
  2671. Add Trac link to our SVN repository,
  2672. 2007-02-15 Darin Adler <darin@apple.com>
  2673. * projects/performance/index.html: Fix i-Bench link.
  2674. 2007-02-08 Mark Rowe <mrowe@apple.com>
  2675. Reviewed by Tim Hatcher.
  2676. * nav.inc: Add link to very work-in-progress DOM documentation.
  2677. 2007-01-19 Nicholas Shanks <contact@nickshanks.com>
  2678. Reviewed by Maciej.
  2679. Change doctype for webkit.org/blog/ admin interface to HTML 4.01.
  2680. * blog/wp-admin/admin-header.php:
  2681. * blog/wp-login.php:
  2682. 2007-01-15 Brady Eidson <beidson@apple.com>
  2683. Reviewed by Maciej
  2684. * coding/coding-style.html: Added switch/case indentation rules
  2685. 2007-01-15 Eric Seidel <eric@webkit.org>
  2686. Reviewed by bdash.
  2687. * coding/coding-style.html: update to include style for header guards
  2688. 2007-01-10 Geoffrey Garen <ggaren@apple.com>
  2689. * coding/coding-style.html: Fixed minor validation error.
  2690. 2007-01-10 Geoffrey Garen <ggaren@apple.com>
  2691. Reviewed by Beth Dakin.
  2692. Updated coding style guidelines to cover a lot of stuff previously absent.
  2693. * coding/coding-style.html:
  2694. 2007-01-04 Lars Naesbye Christensen <larsnaesbye@stud.ku.dk>
  2695. Reviewed by Darin Adler.
  2696. http://bugs.webkit.org/show_bug.cgi?id=11295
  2697. Nightly download size is misleading
  2698. * images/download.png: Changed the size to 6 MB.
  2699. 2007-01-01 Darin Adler <darin@apple.com>
  2700. * quality/bugzilla.html: Fix a lingering reference to opendarwin.org.
  2701. 2006-12-06 Rob Buis <buis@kde.org>
  2702. Reviewed by Brady.
  2703. http://bugs.webkit.org/show_bug.cgi?id=10254
  2704. A few grammar and spelling corrections on the WebKit website
  2705. Grammar and spelling corrections by Jonathan Johnsson.
  2706. * coding/coding-style.html:
  2707. * projects/css/index.html:
  2708. * projects/javascript/index.html:
  2709. * projects/svg/index.html:
  2710. * quality/reduction.html:
  2711. 2006-11-21 Matt Lilek <pewtermoose@gmail.com>
  2712. Reviewed by Maciej.
  2713. http://bugs.webkit.org/show_bug.cgi?id=11652
  2714. Bug 11652: Mailing list address and URL are incorrect
  2715. This also removes a lot of bit rot from the KWQ-era.
  2716. * coding/contributing.html:
  2717. * contact.html:
  2718. * projects/css/index.html:
  2719. * projects/editing/index.html:
  2720. * projects/forms/index.html:
  2721. * projects/html/index.html:
  2722. * projects/portability/index.html:
  2723. * projects/xslt/index.html:
  2724. * quality/lifecycle.html:
  2725. * quality/testwriting.html:
  2726. 2006-11-18 Mitz Pettel <mitz@webkit.org>
  2727. Reviewed by Maciej.
  2728. Gender-neutrality fix.
  2729. * coding/contributing.html:
  2730. 2006-11-14 Matt Lilek <pewtermoose@gmail.com>
  2731. Reviewed by Tim Hatcher.
  2732. Moved the web developer page to the wiki, adding link to the Drosera page.
  2733. * .htaccess: Add permanent redirect to the new page on the wiki.
  2734. * contact.html: Trac numbers are no longer one off.
  2735. * nav.inc:
  2736. * webdevelopers/index.html: Removed.
  2737. * webdevelopers/webkit_version.html: Removed.
  2738. * webdevelopers/webkit_version.js: Removed.
  2739. * webdevelopers/webkit_version_xl.html: Removed.
  2740. * webdevelopers/webkit_version_xl.js: Removed.
  2741. 2006-11-14 Mark Rowe <bdash@webkit.org>
  2742. Reviewed by Tim Hatcher.
  2743. http://bugs.webkit.org/show_bug.cgi?id=9529
  2744. Bug 9529: Navigation HTML duplicated on webkit.org web site
  2745. * blog/wp-content/themes/webkit/sidebar.php: Include navigation from nav.inc rather than duplicating it here.
  2746. * nav.inc: Generate WordPress archive list if included from within WordPress.
  2747. 2006-11-07 Mark Rowe <bdash@webkit.org>
  2748. Reviewed by Dave Hyatt.
  2749. * projects/javascript/index.html: Update link to non-existent JavaScript Bugzilla
  2750. component to the correct JavaScriptCore.
  2751. 2006-11-06 Timothy Hatcher <timothy@apple.com>
  2752. Reviewed by Anders.
  2753. Update the site with new wiki and Trac links.
  2754. * blog/wp-content/themes/webkit/sidebar.php:
  2755. * building/build.html:
  2756. * index.html:
  2757. * nav.inc:
  2758. * projects/svg/index.html:
  2759. 2006-10-31 Mark Rowe <bdash@webkit.org>
  2760. Reviewed by Mitz.
  2761. Update WebKit blog link to prevent pointless redirects.
  2762. * nav.inc:
  2763. 2006-10-25 Mitz Pettel <mitz@webkit.org>
  2764. Reviewed by Adele.
  2765. - http://bugs.webkit.org/show_bug.cgi?id=11412
  2766. Stray list item in coding/coding-style.html
  2767. * coding/coding-style.html:
  2768. 2006-10-25 Mark Rowe <bdash@webkit.org>
  2769. Reviewed by Maciej.
  2770. Fix some HTML bugs in the coding style guidelines.
  2771. * coding/coding-style.html:
  2772. 2006-10-13 Geoffrey Garen <ggaren@apple.com>
  2773. Reviewed by Beth.
  2774. Split build, run, and debug steps into separate pages. Darin recommended
  2775. this a while back.
  2776. * building/build.html:
  2777. * building/checkout.html:
  2778. * building/debug.html: Added.
  2779. * building/run.html: Added.
  2780. * nav.inc:
  2781. 2006-10-05 Eric Seidel <eric@webkit.org>
  2782. Reviewed by Tim H.
  2783. * coding/coding-style.html: use css styles, add example for whitespace, add example for c++ constructors
  2784. 2006-09-26 Eric Seidel <eric@webkit.org>
  2785. Reviewed by anders.
  2786. * projects/svg/status.xml: update status to reflect current state of SVG development
  2787. 2006-09-21 Matt Lilek <pewtermoose@gmail.com>
  2788. Reviewed by Eric.
  2789. http://bugs.webkit.org/show_bug.cgi?id=10975
  2790. Update the blog template to valid HTML 4.01 Strict.
  2791. * blog/wp-content/themes/webkit/comments-popup.php:
  2792. * blog/wp-content/themes/webkit/comments.php:
  2793. * blog/wp-content/themes/webkit/footer.php:
  2794. * blog/wp-content/themes/webkit/header.php:
  2795. * blog/wp-content/themes/webkit/style.css: Add missing semi-colon that the validator complained about.
  2796. 2006-09-21 Mark Rowe <opendarwin.org@bdash.net.nz>
  2797. Reviewed by Eric.
  2798. http://bugs.webkit.org/show_bug.cgi?id=10966
  2799. Bug 10966: Updates to website
  2800. Resolves a few remaining validation issues, makes Bugzilla links consistent, and removes unneeded references to OpenDarwin.
  2801. * coding/coding-style.html:
  2802. * coding/lgpl-license.html:
  2803. * contact.html:
  2804. * index.html:
  2805. * projects/css/index.html:
  2806. * projects/editing/index.html:
  2807. * projects/forms/index.html:
  2808. * projects/html/index.html:
  2809. * projects/index.html:
  2810. * projects/javascript/index.html:
  2811. * projects/svg/index.html:
  2812. * projects/xslt/index.html:
  2813. * webdevelopers/webkit_version.html:
  2814. * webdevelopers/webkit_version_xl.html:
  2815. 2006-09-21 Mark Rowe <opendarwin.org@bdash.net.nz>
  2816. Reviewed by TimH.
  2817. Updates to make static pages validate as HTML 4.01 Strict.
  2818. * building/build.html:
  2819. * coding/coding-style.html:
  2820. * header.inc:
  2821. * index.html: Move <style> tag into the document head.
  2822. * projects/cleanup/index.html:
  2823. * projects/compat/index.html:
  2824. * projects/css/index.html:
  2825. * projects/documentation/index.html:
  2826. * projects/editing/index.html:
  2827. * projects/forms/index.html: Remove note about <label> not being implemented correctly.
  2828. * projects/html/index.html:
  2829. * projects/javascript/index.html:
  2830. * projects/performance/index.html:
  2831. * projects/portability/index.html: Change mention of Windows port to note that it is in progress rather than non-existant.
  2832. * projects/printing/index.html:
  2833. * projects/svg/index.html:
  2834. * projects/xslt/index.html:
  2835. * quality/bugwriting.html: Update WebKit version numbers to be accurate. Move JS away from using innerHTML as W3C validator doesn't like it.
  2836. * quality/reduction.html:
  2837. * quality/reporting.html: Rename element IDs that start with numbers. Update WebKit and Mac OS X version numbers to be accurate.
  2838. * quality/testing.html:
  2839. 2006-09-19 Brady Eidson <beidson@apple.com>
  2840. http://bugs.webkit.org/show_bug.cgi?id=8220
  2841. Add the favicon.ico to the site.
  2842. Notice, users of shipping Safari won't see the updated favicon
  2843. unless they clear their icon cache - ToT users can manually reload
  2844. the site and force the refresh ;)
  2845. * favicon.ico: Added.
  2846. 2006-09-08 Kevin McCullough <KMcCullough@apple.com>
  2847. Reviewed by Adel.
  2848. - this patch brought to you by the letter 'c'
  2849. * coding/coding-style.html:
  2850. 2006-08-24 Mitz Pettel <opendarwin.org@mitzpettel.com>
  2851. Reviewed by Darin Adler.
  2852. - http://bugs.webkit.org/show_bug.cgi?id=10444
  2853. Navigation links overlap the Spam Karma 2 footer
  2854. * blog/wp-content/themes/webkit/style.css: Hide the footer altogether.
  2855. 2006-08-21 Timothy Hatcher <timothy@apple.com>
  2856. Reviewed by Darin Adler.
  2857. Bug 9302: WebKit nightly download image says ~2.5 MB when
  2858. universal binaries make it ~5.0 MB
  2859. http://bugs.webkit.org/show_bug.cgi?id=9302
  2860. * images/download.png:
  2861. 2006-08-21 Timothy Hatcher <timothy@apple.com>
  2862. Stamped by Maciej.
  2863. Changes many opendarwin.org links to the proper webkit.org version.
  2864. * blog/wp-content/themes/webkit/sidebar.php:
  2865. * blog/wp-content/themes/webkit/style.css:
  2866. * building/build.html:
  2867. * coding/contributing.html:
  2868. * contact.html:
  2869. * index.html:
  2870. * nav.inc:
  2871. * projects/compat/hitlist.html:
  2872. * projects/css/index.html:
  2873. * projects/editing/index.html:
  2874. * projects/forms/index.html:
  2875. * projects/html/index.html:
  2876. * projects/javascript/index.html:
  2877. * projects/svg/index.html:
  2878. * projects/svg/svg-status.xsl:
  2879. * projects/xslt/index.html:
  2880. * quality/bugpriorities.html:
  2881. * quality/bugzilla.html:
  2882. * quality/leakhunting.html:
  2883. * quality/lifecycle.html:
  2884. * quality/reporting.html:
  2885. 2006-08-15 Eric Seidel <eric@webkit.org>
  2886. Reviewed by TimH.
  2887. * projects/svg/status.xml: updated to reflect current SVG status
  2888. 2006-08-02 Geoffrey Garen <ggaren@apple.com>
  2889. Reviewed by TimO.
  2890. Tweaked the build instructions a bit.
  2891. * building/build.html:
  2892. * building/debug.png: Added.
  2893. 2006-08-02 Darin Adler <darin@apple.com>
  2894. * building/checkout.html: Fix a typo: "OpenSource" instead of "Open Source".
  2895. 2006-08-01 Geoffrey Garen <ggaren@apple.com>
  2896. Reviewed by Beth.
  2897. - Added instructions for debugging in Xcode
  2898. * building/build-window.png: Added.
  2899. * building/build.html:
  2900. * building/custom-executable.png: Added.
  2901. * building/info-tab.png: Added.
  2902. 2006-07-30 Geoffrey Garen <ggaren@apple.com>
  2903. Reviewed by Beth.
  2904. - Tweaked the checkout and build instructions to make them simpler and
  2905. clearer.
  2906. * building/build.html:
  2907. * building/checkout.html:
  2908. 2006-06-22 Alexey Proskuryakov <ap@nypop.com>
  2909. Reviewed by Darin Adler.
  2910. - see http://bugs.webkit.org/show_bug.cgi?id=9539
  2911. Another case error preventing build
  2912. * building/build.html: Building WebKit now requires Xcode 2.3.
  2913. 2006-06-21 Joost de Valk <jdevalk@opendarwin.org>
  2914. Reviewed and landed by Anders.
  2915. * blog/wp-content/themes/webkit/sidebar.php:
  2916. Add link to Wiki in the navigation menu here too.
  2917. 2006-06-21 Joost de Valk <jdevalk@opendarwin.org>
  2918. Reviewed and landed by Anders.
  2919. * nav.inc: Add link to Wiki in the navigation menu.
  2920. 2006-06-15 Joost de Valk <jdevalk@opendarwin.org>
  2921. Patch by David Kilzer, reviewed by Geoffrey Garen, landed by Joost de Valk.
  2922. Fix http://bugs.webkit.org/show_bug.cgi?id=9407
  2923. Improve wording of first paragraph of webkit site.
  2924. * index.html:
  2925. 2006-06-08 Timothy Hatcher <timothy@apple.com>
  2926. Reviewed by Darin Adler.
  2927. Include our own copies of the BSD and LGPL licenses.
  2928. * coding/bsd-license.html: Added.
  2929. * coding/lgpl-license.html: Added.
  2930. * nav.inc: link to our copies of the licenses
  2931. 2006-06-04 David Kilzer <ddkilzer@kilzer.net>
  2932. Reviewed by ggaren.
  2933. http://bugs.webkit.org/show_bug.cgi?id=9303
  2934. JavaScript error when loading WebKit blog page
  2935. * blog/wp-content/themes/webkit/sidebar.php: Removed unused JavaScript. Synced with nav.inc.
  2936. * nav.inc: Removed evil tabs--whitespace change only.
  2937. 2006-05-24 Bradley Morrison <bradley.morrison@nokia.com>
  2938. Reviewed by John Sullivan.
  2939. * quality/lifecycle.html: mentions case of PlatformOnly bugs
  2940. and 'other' bug databases.
  2941. 2006-05-25 Joost de Valk <jdevalk@opendarwin.org>
  2942. Reviewed by Timothy Hatcher.
  2943. Adding Google Analytics tracking code, to create stats of our webpages.
  2944. * blog/wp-content/themes/webkit/footer.php:
  2945. * footer.inc:
  2946. 2006-05-23 Bradley Morrison <bradley.morrison@nokia.com>
  2947. Reviewed by Timothy.
  2948. * index.html: Link to Nokia's S60 WebKit.
  2949. 2006-05-08 Joost de Valk <jdevalk@opendarwin.org>
  2950. Reviewed by Anders.
  2951. * building/checkout.html: changed link to point to universal binary. Thanks to Duncan Wilcox for hinting this one.
  2952. 2006-04-28 Eric Seidel <eseidel@apple.com>
  2953. Reviewed by andersca.
  2954. * projects/svg/status.xml: Update to reflect current status.
  2955. 2006-04-18 Joost de Valk <jdevalk@opendarwin.org>
  2956. Reviewed by Eric Seidel .
  2957. Added WebKit detection scripts and a small howto + a new section to our
  2958. website: Web Developers.
  2959. * nav.inc:
  2960. * webdevelopers: Added.
  2961. * webdevelopers/index.html: Added.
  2962. * webdevelopers/webkit_version.html: Added.
  2963. * webdevelopers/webkit_version.js: Added.
  2964. * webdevelopers/webkit_version_xl.html: Added.
  2965. * webdevelopers/webkit_version_xl.js: Added.
  2966. 2006-04-17 Joost de Valk <jdevalk@opendarwin.org>
  2967. Reviewed by ggaren.
  2968. * blog/wp-config.php: passwords and users don't belong in SVN.
  2969. 2006-04-16 Joost de Valk <jdevalk@opendarwin.org>
  2970. Reviewed by Maciej.
  2971. * quality/lifecycle.html: small textual change to my contact info;
  2972. * quality/reporting.html: added non-ADC bug report URL.
  2973. 2006-04-16 Joost de Valk <jdevalk@opendarwin.org>
  2974. Reviewed by Maciej.
  2975. * contact.html: added URL's for trac, CIA, webkit-unassigned and build bot. These probably need to be on other places to but we will do that later on.
  2976. 2006-04-13 Geoffrey Garen <ggaren@apple.com>
  2977. Reviewed by Maciej.
  2978. * projects/compat/hitlist.html: Added Google Calendar to the list
  2979. in place of www.hangseng.com/ebanking
  2980. 2006-04-11 Eric Seidel <eseidel@apple.com>
  2981. Reviewed by andersca.
  2982. * quality/testing.html: fix run-mozilla-tests to run-javascriptcore-tests
  2983. 2006-04-10 Geoffrey Garen <ggaren@apple.com>
  2984. Reviewed by Beth.
  2985. * projects/compat/hitlist.html: updated dates
  2986. 2006-03-23 David Kilzer <ddkilzer@kilzer.ent>
  2987. Reviewed by Darin Adler.
  2988. - Fix http://bugs.webkit.org/show_bug.cgi?id=7918
  2989. Coding style doc uses illegal entity
  2990. * coding/coding-style.html: Changed &emdash; to &mdash;.
  2991. 2006-03-15 Geoffrey Garen <ggaren@apple.com>
  2992. Reviewed by TimH.
  2993. * projects/compat/hitlist.html: Moved delta.com to the alumni list,
  2994. added description of alumni list.
  2995. 2006-03-08 Geoffrey Garen <ggaren@apple.com>
  2996. Reviewed by Beth.
  2997. Clarified that sites on the list aren't necessarily "broken."
  2998. * projects/compat/hitlist.html:
  2999. 2006-03-08 Geoffrey Garen <ggaren@apple.com>
  3000. Reviewed by Beth.
  3001. Updated links to gap and bananarepublic bugs.
  3002. * projects/compat/hitlist.html:
  3003. 2006-03-06 Mitz Pettel <opendarwin.org@mitzpettel.com>
  3004. Reviewed by Darin Adler.
  3005. Change "Mail.app" to "Mail".
  3006. * index.html:
  3007. * projects/editing/index.html:
  3008. 2006-03-06 Geoffrey Garen <ggaren@apple.com>
  3009. Oops, accidentally deleted the archives links.
  3010. * blog/wp-content/themes/webkit/sidebar.php: Bring them back.
  3011. 2006-03-06 Geoffrey Garen <ggaren@apple.com>
  3012. Reviewed by Beth.
  3013. Some site cleanup.
  3014. * blog/wp-content/themes/webkit/sidebar.php: sync with the sidebar
  3015. for the rest of the site.
  3016. * quality/lifecycle.html: add Joost's homepage to his contact info.
  3017. 2006-03-06 Geoffrey Garen <ggaren@apple.com>
  3018. Doing penance after being set straight by Joost.
  3019. * projects/compat/hitlist.html: Remove slur against QA. My humblest
  3020. apologies.
  3021. 2006-03-06 Geoffrey Garen <ggaren@apple.com>
  3022. Reviewed by Maciej, Darin.
  3023. Added Safari Compatibility Hit List.
  3024. * nav.inc: Link to the hit list.
  3025. * projects/compat/hitlist.html: Added.
  3026. * projects/compat/index.html: Link to the hit list.
  3027. 2006-03-02 Eric Seidel <eseidel@apple.com>
  3028. Reviewed by mjs.
  3029. * quality/reporting.html: display a nicer message to those using 10.2
  3030. 2006-02-26 David Kilzer <ddkilzer@kilzer.net>
  3031. Reviewed by Maciej, landed by Geoff.
  3032. Change "Deployment" to "Release" and "Development" to "Debug".
  3033. Update latest Xcode version from 2.2 to 2.2.1.
  3034. * building/build.html
  3035. 2006-02-21 Geoffrey Garen <ggaren@apple.com>
  3036. Accidentally wrote "Release" instead of "Debug" in my last patch.
  3037. * quality/leakhunting.html:
  3038. 2006-02-20 Geoffrey Garen <ggaren@apple.com>
  3039. Some quick proof-reading of the patch I just landed -- no review
  3040. necessary.
  3041. * quality/leakhunting.html:
  3042. 2006-02-21 Joost de Valk <jdevalk@opendarwin.org>
  3043. Reviewed by Darin, Geoff.
  3044. Added a page about leakhunting, based on the info Sullivan gave in two blogposts about it. (posts 20 and 24)
  3045. Added this page to the menu, adding in an extra section header
  3046. "Testing" as well.
  3047. * nav.inc:
  3048. * quality/leakhunting.html: Added.
  3049. 2006-02-19 Joost de Valk <jdevalk@opendarwin.org>
  3050. Reviewed by Darin Adler.
  3051. Fixed Bugzilla URL's
  3052. * projects/forms/index.html:
  3053. * projects/html/index.html:
  3054. * projects/xslt/index.html:
  3055. 2006-02-19 Joost de Valk <jdevalk@opendarwin.org>
  3056. Reviewed by Darin Adler.
  3057. Made line-height global instead of just for p
  3058. Editing:
  3059. fixed bugzilla link, added starting <p> to first paragraph
  3060. removed paragraph about tab-stops
  3061. * css/main.css:
  3062. * projects/editing/index.html:
  3063. 2006-02-17 Darin Adler <darin@apple.com>
  3064. * coding/coding-style.html: Mention other non-function brace cases.
  3065. 2006-02-17 Joost de Valk <jdevalk@opendarwin.org>
  3066. Reviewed by Tim H.
  3067. Added left position and margin-bottom to blog footer.
  3068. * css/main.css:
  3069. 2006-02-16 Timothy Hatcher <timothy@apple.com>
  3070. Reviewed by Maciej.
  3071. Fixes PNGs with 8bit alpha on IE.
  3072. * css/ie.css: attach the pngbehavior.htc to img tags
  3073. * images/blank.png: Added.
  3074. * index.html: add the width and height to the download img
  3075. * pngbehavior.htc: Added.
  3076. 2006-02-16 Justin Garcia <justin.garcia@apple.com>
  3077. Changed by Darin on my machine.
  3078. * coding/coding-style.html: Re-merged in changes Darin made to the guidelines
  3079. a few days back.
  3080. 2006-02-16 Joost de Valk <jdevalk@opendarwin.org>
  3081. Reviewed and landed by Maciej.
  3082. Made the author name bold on the frontpage.
  3083. Moved the "Posted by" line up under the title and made the author name
  3084. bold in single view.
  3085. * blog/wp-content/themes/webkit/index.php:
  3086. * blog/wp-content/themes/webkit/single.php:
  3087. 2006-02-15 Joost de Valk <jdevalk@opendarwin.org>
  3088. Reviewed by Tim H.
  3089. Updated the site to use the new layout.
  3090. * .htaccess: Added.
  3091. * ChangeLog:
  3092. * blog/wp-content/themes/classic: Removed.
  3093. * blog/wp-content/themes/classic/comments-popup.php: Removed.
  3094. * blog/wp-content/themes/classic/comments.php: Removed.
  3095. * blog/wp-content/themes/classic/footer.php: Removed.
  3096. * blog/wp-content/themes/classic/header.php: Removed.
  3097. * blog/wp-content/themes/classic/index.php: Removed.
  3098. * blog/wp-content/themes/classic/sidebar.php: Removed.
  3099. * blog/wp-content/themes/classic/style.css: Removed.
  3100. * blog/wp-content/themes/default: Removed.
  3101. * blog/wp-content/themes/default/404.php: Removed.
  3102. * blog/wp-content/themes/default/archive.php: Removed.
  3103. * blog/wp-content/themes/default/archives.php: Removed.
  3104. * blog/wp-content/themes/default/comments-popup.php: Removed.
  3105. * blog/wp-content/themes/default/comments.php: Removed.
  3106. * blog/wp-content/themes/default/footer.php: Removed.
  3107. * blog/wp-content/themes/default/header.php: Removed.
  3108. * blog/wp-content/themes/default/images: Removed.
  3109. * blog/wp-content/themes/default/images/kubrickbg.jpg: Removed.
  3110. * blog/wp-content/themes/default/images/kubrickbgcolor.jpg: Removed.
  3111. * blog/wp-content/themes/default/images/kubrickbgwide.jpg: Removed.
  3112. * blog/wp-content/themes/default/images/kubrickfooter.jpg: Removed.
  3113. * blog/wp-content/themes/default/images/kubrickheader.jpg: Removed.
  3114. * blog/wp-content/themes/default/index.php: Removed.
  3115. * blog/wp-content/themes/default/links.php: Removed.
  3116. * blog/wp-content/themes/default/page.php: Removed.
  3117. * blog/wp-content/themes/default/search.php: Removed.
  3118. * blog/wp-content/themes/default/searchform.php: Removed.
  3119. * blog/wp-content/themes/default/sidebar.php: Removed.
  3120. * blog/wp-content/themes/default/single.php: Removed.
  3121. * blog/wp-content/themes/default/style.css: Removed.
  3122. * blog/wp-content/themes/webkit/404.php:
  3123. * blog/wp-content/themes/webkit/archive.php:
  3124. * blog/wp-content/themes/webkit/archives.php:
  3125. * blog/wp-content/themes/webkit/footer.php:
  3126. * blog/wp-content/themes/webkit/header.php:
  3127. * blog/wp-content/themes/webkit/images: Removed.
  3128. * blog/wp-content/themes/webkit/images/bluebanner.png: Removed.
  3129. * blog/wp-content/themes/webkit/images/kubrickbg.jpg: Removed.
  3130. * blog/wp-content/themes/webkit/images/kubrickbgcolor.jpg: Removed.
  3131. * blog/wp-content/themes/webkit/images/kubrickbgwide.jpg: Removed.
  3132. * blog/wp-content/themes/webkit/images/kubrickfooter.jpg: Removed.
  3133. * blog/wp-content/themes/webkit/images/kubrickheader.jpg: Removed.
  3134. * blog/wp-content/themes/webkit/images/separator.png: Removed.
  3135. * blog/wp-content/themes/webkit/images/webkit-background.png: Removed.
  3136. * blog/wp-content/themes/webkit/index.php:
  3137. * blog/wp-content/themes/webkit/page.php:
  3138. * blog/wp-content/themes/webkit/search.php:
  3139. * blog/wp-content/themes/webkit/sidebar.php:
  3140. * blog/wp-content/themes/webkit/single.php:
  3141. * blog/wp-content/themes/webkit/style.css:
  3142. * building/build.html:
  3143. * building/checkout.html:
  3144. * coding/coding-style.html:
  3145. * coding/contributing.html:
  3146. * contact.html:
  3147. * css: Added.
  3148. * css/blue.css: Added.
  3149. * css/gray.css: Added.
  3150. * css/green.css: Added.
  3151. * css/ie.css: Added.
  3152. * css/main.css: Added.
  3153. * css/pink.css: Added.
  3154. * css/purple.css: Added.
  3155. * css/yellow.css: Added.
  3156. * footer.inc: Added.
  3157. * header.inc: Added.
  3158. * images/blue-background.png: Added.
  3159. * images/blue-bullet.png: Added.
  3160. * images/bluebanner.png: Removed.
  3161. * images/download.png: Added.
  3162. * images/end.png: Added.
  3163. * images/gray-background.png: Added.
  3164. * images/green-background.png: Added.
  3165. * images/green-bullet.png: Added.
  3166. * images/icon-gold.png: Added.
  3167. * images/icon.png: Added.
  3168. * images/ie-nav.png: Added.
  3169. * images/middle.png: Added.
  3170. * images/nav.png: Added.
  3171. * images/pink-background.png: Added.
  3172. * images/pink-bullet.png: Added.
  3173. * images/purple-background.png: Added.
  3174. * images/purple-bullet.png: Added.
  3175. * images/separator.png: Removed.
  3176. * images/webkit-background.png: Removed.
  3177. * images/welcomeopen.gif: Removed.
  3178. * images/yellow-background.png: Added.
  3179. * images/yellow-bullet.png: Added.
  3180. * index.html:
  3181. * nav.inc: Added.
  3182. * projects/accessibility/index.html:
  3183. * projects/cleanup/index.html:
  3184. * projects/compat/index.html:
  3185. * projects/css/index.html:
  3186. * projects/documentation/index.html:
  3187. * projects/dom/index.html:
  3188. * projects/editing/index.html:
  3189. * projects/forms/index.html:
  3190. * projects/html/index.html:
  3191. * projects/index.html:
  3192. * projects/javascript/index.html:
  3193. * projects/layout/index.html:
  3194. * projects/mathml/index.html:
  3195. * projects/performance/index.html:
  3196. * projects/plugins/index.html:
  3197. * projects/portability/index.html:
  3198. * projects/printing/index.html:
  3199. * projects/svg/index.html:
  3200. * projects/webkit/index.html:
  3201. * projects/xml/index.html:
  3202. * projects/xslt/index.html:
  3203. * quality/bugpriorities.html:
  3204. * quality/bugwriting.html:
  3205. * quality/bugzilla.html:
  3206. * quality/lifecycle.html:
  3207. * quality/reduction.html:
  3208. * quality/reporting.html:
  3209. * quality/testing.html:
  3210. * quality/testwriting.html:
  3211. * sidebar.css: Removed.
  3212. * sidebar.html: Removed.
  3213. * webkitdev.css: Removed.
  3214. 2006-02-15 Joost de Valk <jdevalk@opendarwin.org>
  3215. Reviewed by Tim H.
  3216. Updated page to show 10.4.4 or 10.4.5
  3217. Added support for recognizing Shiira.
  3218. * quality/reporting.html:
  3219. 2006-02-12 Joost de Valk <jdevalk@opendarwin.org>
  3220. Reviewed by eseidel.
  3221. Added a little piece of text to the page about reductions, pointing to the bugzilla page.
  3222. Changed "Sign up for a" into "Create a" bugzilla account.
  3223. * quality/reduction.html:
  3224. * quality/reporting.html:
  3225. 2006-02-12 Joost de Valk <jdevalk@opendarwin.org>
  3226. Reviewed by Darin Adler.
  3227. Added a Bugzilla page, which contains information about creating a Bugzilla account, what editbugs and canconfirm
  3228. bits are and how to get them.
  3229. Changed link in reporting page to link to Bugzilla page.
  3230. * quality/bugzilla.html: Added.
  3231. * quality/reporting.html:
  3232. 2006-02-12 Joost de Valk <jdevalk@opendarwin.org>
  3233. Reviewed by eseidel.
  3234. - Changed 10.2 paragraph to say Mac OS X instead of just OS X
  3235. - Detabified the file.
  3236. * quality/reporting.html:
  3237. 2006-02-10 Darin Adler <darin@apple.com>
  3238. * index.html: Fixed a typo in a link.
  3239. 2006-02-10 Darin Adler <darin@apple.com>
  3240. * building/checkout.html: Fixed a spelling mistake.
  3241. 2006-02-10 Joost de Valk <jdevalk@opendarwin.org>
  3242. Reviewed and landed by Anders.
  3243. http://bugs.webkit.org/show_bug.cgi?id=7164
  3244. Code cleanup
  3245. Changed <div id="banner" to <h1 id="banner"
  3246. global cleanup of CSS and code
  3247. * building/build.html:
  3248. * building/checkout.html:
  3249. * coding/coding-style.html:
  3250. * coding/contributing.html:
  3251. * contact.html:
  3252. * index.html:
  3253. * projects/accessibility/index.html:
  3254. * projects/cleanup/index.html:
  3255. * projects/compat/index.html:
  3256. * projects/css/index.html:
  3257. * projects/documentation/index.html:
  3258. * projects/dom/index.html:
  3259. * projects/editing/index.html:
  3260. * projects/forms/index.html:
  3261. * projects/html/index.html:
  3262. * projects/index.html:
  3263. * projects/javascript/index.html:
  3264. * projects/layout/index.html:
  3265. * projects/mathml/index.html:
  3266. * projects/performance/index.html:
  3267. * projects/plugins/index.html:
  3268. * projects/portability/index.html:
  3269. * projects/printing/index.html:
  3270. * projects/svg/index.html:
  3271. * projects/webkit/index.html:
  3272. * projects/xml/index.html:
  3273. * projects/xslt/index.html:
  3274. * quality/bugpriorities.html:
  3275. * quality/bugwriting.html:
  3276. * quality/lifecycle.html:
  3277. * quality/reduction.html:
  3278. * quality/reporting.html:
  3279. * quality/testing.html:
  3280. * quality/testwriting.html:
  3281. * webkitdev.css:
  3282. 2006-02-09 Joost de Valk <jdevalk@opendarwin.org>
  3283. Reviewed by Darin Adler. Landed by ap.
  3284. - fixes from http://bugs.webkit.org/show_bug.cgi?id=4871
  3285. "Reporting Bugs" Page Should Prompt User To Test In Newest Version of WebKit
  3286. * quality/reporting.html:
  3287. * webkitdev.css: Added margin-bottom for li.
  3288. 2006-02-07 Joost de Valk <jdevalk@opendarwin.org>
  3289. Reviewed by Darin Adler. Landed by Maciej.
  3290. - Several fixes to the site
  3291. http://bugs.webkit.org/show_bug.cgi?id=7105
  3292. * blog/wp-content/themes/webkit/style.css:
  3293. * index.html:
  3294. * quality/bugwriting.html:
  3295. * quality/reduction.html:
  3296. * webkitdev.css:
  3297. 2006-02-05 Eric Seidel <eseidel@apple.com>
  3298. Reviewed by darin.
  3299. General update to SVG project page, also link to status page.
  3300. * projects/svg/index.html:
  3301. 2006-02-05 Eric Seidel <eseidel@apple.com>
  3302. Rubber stamped by darin.
  3303. * projects/svg/status.xml: Added.
  3304. * projects/svg/svg-status.css: Added.
  3305. * projects/svg/svg-status.xsl: Added.
  3306. 2006-02-05 Eric Seidel <eseidel@apple.com>
  3307. Adding ChangeLog :)
  3308. * ChangeLog: Added.