I notice some link that didn''t work in the documentation. By closer inspection I found that some of the headlines missed id-tags. The following grep sequence find them. grep ''<h3'' *.html | grep ''#'' | grep -v ''id='' Here is the output brush.html:<h3 class="Brush_getcolour">Brush#get_colour</h3> brush.html:<h3 class="Brush_getstipple">Brush#get_stipple</h3> brush.html:<h3 class="Brush_getstyle">Brush#get_style</h3> brush.html:<h3 class="Brush_ishatch">Brush#is_hatch</h3> brush.html:<h3 class="Brush_isok">Brush#is_ok</h3> brush.html:<h3 class="Brush_setcolour">#Brush_set_colour</h3> brush.html:<h3 class="Brush_setstipple">Brush#set_stipple</h3> brush.html:<h3 class="Brush_setstyle">Brush#set_style</h3> dc.html:<h3>DC#get_text_foreground</h3> dc.html:<h3>DC#get_user_scale</h3> dc.html:<h3>DC#gradient_fill_concentric</h3> dc.html:<h3>DC#gradient_fill_linear</h3> dc.html:<h3>DC#logical_to_device_x</h3> dc.html:<h3>DC#logical_to_device_xrel</h3> dc.html:<h3>DC#logical_to_device_y</h3> dc.html:<h3>DC#logical_to_device_yrel</h3> dc.html:<h3>DC#max_x</h3> dc.html:<h3>DC#max_y</h3> dc.html:<h3>DC#min_x</h3> dc.html:<h3>DC#min_y</h3> dc.html:<h3>DC#is_ok</h3> dc.html:<h3>DC#reset_bounding_box</h3> dc.html:<h3>DC#set_axis_orientation</h3> dc.html:<h3>DC#set_background</h3> dc.html:<h3>DC#set_background_mode</h3> dc.html:<h3>DC#set_brush</h3> dc.html:<h3>DC#set_clipping_region</h3> dc.html:<h3>DC#set_device_origin</h3> dc.html:<h3>DC#set_font</h3> dc.html:<h3>DC#set_layout_direction</h3> dc.html:<h3>DC#set_logical_function</h3> dc.html:<h3>DC#set_map_mode</h3> paneltabview.html:<h3>PanelTabView#clear_windows</h3> paneltabview.html:<h3>PanelTabView#get_current_window</h3> paneltabview.html:<h3>PanelTabView#get_tab_window</h3> paneltabview.html:<h3>PanelTabView#show_window_for_tab</h3> pen.html:<h3 class="Pen_getdashes">Pen#get_dashes</h3> pen.html:<h3 class="Pen_getjoin">Pen#get_join</h3> pen.html:<h3 class="Pen_getstipple">Pen#get_stipple</h3> pen.html:<h3 class="Pen_getstyle">Pen#get_style</h3> pen.html:<h3 class="Pen_getwidth">Pen#get_width</h3> pen.html:<h3 class="Pen_isok">Pen#is_ok</h3> pen.html:<h3 class="Pen_setcap">Pen#set_cap</h3> pen.html:<h3 class="Pen_setcolour">Pen#set_colour</h3> pen.html:<h3 class="Pen_setdashes">Pen#set_dashes</h3> pen.html:<h3 class="Pen_setjoin">Pen#set_join</h3> pen.html:<h3 class="Pen_setstipple">Pen#set_stipple</h3> pen.html:<h3 class="Pen_setstyle">Pen#set_style</h3> pen.html:<h3 class="Pen_setwidth">Pen#set_width</h3>
Svend Haugaard S?rensen wrote:> I notice some link that didn''t work in the documentation. > > By closer inspection I found that some of the headlines missed > id-tags. > > The following grep sequence find them. > grep ''<h3'' *.html | grep ''#'' | grep -v ''id='' > > Here is the output > brush.html:<h3 class="Brush_getcolour">Brush#get_colour</h3> > brush.html:<h3 class="Brush_getstipple">Brush#get_stipple</h3>Thanks for reporting this. I''ve fixed this in SVN for our next release (SVN:1776). If you find other mistakes, please do send them in here or on the bugtracker. We''re getting the docs into the best shape possible for 2.0 cheers alex
Svend Haugaard Sørensen
2008-Aug-25 21:02 UTC
[wxruby-users] Missing ids in documentation
On Sun, 24 Aug 2008 19:29:15 +0100 Alex Fenton <alex at pressure.to> wrote:> Svend Haugaard S?rensen wrote: > > I notice some link that didn''t work in the documentation. > > > > By closer inspection I found that some of the headlines missed > > id-tags. > > > > The following grep sequence find them. > > grep ''<h3'' *.html | grep ''#'' | grep -v ''id='' > > > > Here is the output > > brush.html:<h3 class="Brush_getcolour">Brush#get_colour</h3> > > brush.html:<h3 class="Brush_getstipple">Brush#get_stipple</h3> > > Thanks for reporting this. I''ve fixed this in SVN for our next > release (SVN:1776). If you find other mistakes, please do send them > in here or on the bugtracker. We''re getting the docs into the best > shape possible for 2.0Here is a link checker your can use to find missing pages. http://valet.webthing.com/link/ Just write in http://wxruby.rubyforge.org/doc/ and set the recursion depth to 2 and it finds all the missing pages. Now thanks for the help with my program it is working.