www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - V 0.133 HTML Documentation

reply "Bob W" <nospam aol.com> writes:
I have prepared a full set of 0.133 HTML doc files where
a couple of things are corrected:

- style sheet "style.css" works now with all Phobos doc files
- obsolete/duplicate color scheme removed from some files
- some bgcolor parameters replaced with corresponding
   class parameter to correspond to "style.css" definitions
- unused parts of stylesheet marked for deletion
- two ancient and unused files detected, suggest deletion
- style.css for general D doc and Phobos doc is identical
- trailing (and optionally leading) whitespace removed

Contents of course have remained untouched - and
most of the extra HTML flaws as well     ;-)

If there is any use for these files, please let me know.
Sep 25 2005
next sibling parent J C Calvarese <technocrat7 gmail.com> writes:
In article <dh7fnm$1vt$1 digitaldaemon.com>, Bob W says...
I have prepared a full set of 0.133 HTML doc files where
a couple of things are corrected:

- style sheet "style.css" works now with all Phobos doc files
- obsolete/duplicate color scheme removed from some files
- some bgcolor parameters replaced with corresponding
   class parameter to correspond to "style.css" definitions
- unused parts of stylesheet marked for deletion
- two ancient and unused files detected, suggest deletion
- style.css for general D doc and Phobos doc is identical
- trailing (and optionally leading) whitespace removed

Contents of course have remained untouched - and
most of the extra HTML flaws as well     ;-)

If there is any use for these files, please let me know.
Sounds interesting. If you upload it somewhere, I'll bet someone would look at it. ;) jcc7
Sep 25 2005
prev sibling next sibling parent reply Dejan Lekic <leka entropy.tmok.com> writes:
I share Calvarese's opinion. :)

-- 
...........
Dejan Lekic
  http://dejan.lekic.org
  
Sep 26 2005
parent "Bob W" <nospam aol.com> writes:
 I share Calvarese's opinion. :)
Done - new thread: "V 0.133 HTML Docs Upload"
Sep 27 2005
prev sibling next sibling parent reply "Bob W" <nospam aol.com> writes:
Ok, it is (almost) on its way.


1) In the meanwhile I've found another flaw
which will be fixed:
<table> and <pre> tags are wrongly interleaved
on some pages.


2) The w3 Validator keeps complaining about the
D web pages. I'll have a look at the index page
(49 validation errors) and might supply it as well
in proper XHTML format. (But don't expect me to
do all the other pages, it is hopeless!)


3) Before I do that I need a round of golf   :-)
If I shoot a 63 I'll join the PGA Tour, otherwise
you'll get that HTML stuff uploaded.
Sep 26 2005
parent reply "Walter Bright" <newshound digitalmars.com> writes:
"Bob W" <nospam aol.com> wrote in message
news:dh8med$12jd$1 digitaldaemon.com...
 Ok, it is (almost) on its way.


 1) In the meanwhile I've found another flaw
 which will be fixed:
 <table> and <pre> tags are wrongly interleaved
 on some pages.


 2) The w3 Validator keeps complaining about the
 D web pages. I'll have a look at the index page
 (49 validation errors) and might supply it as well
 in proper XHTML format. (But don't expect me to
 do all the other pages, it is hopeless!)
At the moment, I'm converting the Phobos documentation to using Ddoc. So it'd be a waste of time working on those pages. But I am also interested in correcting any validation problems in Ddoc output, so if you could look at std_math.html, which is Ddoc generated, and let me know if there are any problems, I can get at least those fixed once and for all by fixing Ddoc.
Sep 27 2005
parent reply "Bob W" <nospam aol.com> writes:
 At the moment, I'm converting the Phobos documentation to using Ddoc. So
 it'd be a waste of time working on those pages.
Time is already wasted, so my page conversions might still be of moderate value for future doc-page-design-reference.
 But I am also interested in
 correcting any validation problems in Ddoc output, so if you could look at
 std_math.html, which is Ddoc generated, and let me know if there are any
 problems, I can get at least those fixed once and for all by fixing Ddoc.
Of course there are problems: Failed validation: 39 errors (Markup Validation Service 0.7.0) Address: http://www.digitalmars.com/d/phobos/std_math.html But the good news is that I have fixed them all: I have attached a valid HTML Transitional version of "std_math.html". Please make sure to use the slightly modified stylesheet "style.css" too. It is required for the new version of "std_math.html" to display like the original V0.133 version and it will not affect your other pages. Please read my remarks below. You might further wish to check upon the changes made in the HTML source. They are marked with HTML comments containing " ", so one can easily search for them. "std_math.html" Remarks: - This is one of the files which is using a mix of CR/LF and LF line termination. I suggest using CR/LF because Unix people are mostly comfortable with that as opposed to Windows users which are frequently using Notepad as their default text viewing application. If I remember correctly at least one of the www-related RFCs seems to favour using CR/LF over LF. - You should change <body 'bgcolor="#FFFFFF">' to '<body>' otherwise you are overriding your own stylesheet definitions. - Using <font face="Arial, Helvetica,sans-serif"> is not a good idea to use at the beginnig of a complex document. It will almost never work as intended. Your stylesheet "style.css" takes care about this feature anyway, so this <font..> item is obsolete. - '<font color=red>....</font>' is widely used in your files. The color parameter is deprecated. You might want to use '<span style="color:red">....</span>' instead. - Since you are using stylesheets you might want to avoid the 'bgcolor' parameter in your HTML files. If you feel the urge to make your docs prettier, you just change about 4 characters in the stylesheet. Otherwise it is more like a search/replace action on ALL pages involved and quite a waste of time. Example: there was an attempt in your style sheets to define the background color of the menu (toc) on the left side of the pages. This obviously never worked. But you can easily get it working - just change the respective <td..> tag: from <td valign="top" bgcolor="#eeeeee" nowrap> to <td valign="top" class="toc" nowrap> The required stylesheet definition would be something like: td.toc { background-color:#eeeeee; } I have actually taken care of this already - just use the new "style.css" supplied together with the validated version of "std_math.html". - Ddoc seems to generate quite a lot of blank characters and extra lines without necessarily improving the readability of the document's source. You probably do not want to get doc pages overly obese and thus slow the loading of documentation web pages of a potentially fast compiler, do you? - The following <p> </p> tags are not allowed here: <dl> <!-- Generated by DMD from std\math.d --> <p> </p> <dl> w3.org expects you to use something like a <dd> tag here. The same thing applies for the second <dl> tag. - Another <p>..</p> problem arises when it is attempted to put these tags around tables. Upon encountering a <table> tag the opening <p> tag is closed and the closing </p> tag after the table is regarded a stray item. Not that this would create a browser hickup, but w3.org does not regard it as valid HTML coding scheme. They also do not want you to put <br> and <pre> tags inside a <p>..</p> section for a similar reason. In some cases the use of <br> instead of the <p> tag would simplify a few things anyway, because you don't need any closing tags. In some cases it can also be considered omitting the </p> closing tag (which is optional), because <p> closes automatically upon encounter of several tags including the next <p> tag anyway. - Another annoyance is that <sup> tags inside <pre> sections are not allowed, even though browsers will most likely perform the intended actions. A workaround in order to get valid HTML is to use <span style="vertical-align:super;font-size:smaller"> instead of the <sup> tag. Sometimes it is hard to understand why w3.org wants our keyboards to wear down quickly.... begin 666 StdMath.zip MCI/NY!>;%OF1_$A*RZOI! `><(.6*9 >*P<9*K,%9A$J9A]1P*RV)F.9VD&C M&X=BMHA:7TK< 2M-HP3I`"^1A]U,"[!8F0V]RQQ,YHQ"CZ1SM9Q.PI,9L8.? MLVMP3+O$H94Y;?XUG2PX[4?M742 " JI$V_J%&[NCP*%N2?)X ZK(*V9$%(7 M0W&$=O('IN JIA3:%F,Z*6^C>8]//F%*%CH%3J!Q0RL5R(UE7AKZ10&B55+C M7CU3AC]^;XS':&84IY/ZG2*Q](3"3P/H2:PLRDX4,6K;&L^,)?04WM1/0%1( M`7,>U_V 3F^"T\O'RG<XM,)Z*I-3L?3_(;6>ATD6RE\F<+Z[4W]U)&1Z7S M=++7RS$\HY:"IN!&X#G=HZ>CNORB+ J!9W';ZIQ[P^$GP/**% S*'X)P.4R> MB&NL:O:&A=P$NR6RD-O?,!^)2S+CO:GZ_!66[09 B CJ5<T6VV+(C!*'BCRI MGN4YF%+,^:86[/\/J. -FPL:=X]1=Z0$!N5Y"*"7LV,(,=(1_W\K:V\N9VTZ M65Y!DB3A+'MV^FV1IB<I$4O>P+]T)-RN5G%G>XAYL3B,"/!$*H+)X7#T4,Q- MI>']ET\?H + R2"B.116ZPF9XZ:BB2TZD^&+6>F,AJWT)7Q*8?;YG]E98WE^ M1^L^_.SU^J'5CQ"%1=070+[^]7 >Y>XNX%Q"(9R0C A%* 0R.T&9I5W&S 9S M$YX^1]-)(" WBK )%4Z(5J*+EQ3>6$O?U%9"NF!77$/6>/(DW$^J6$YT/=$T M]RF]?T0?(A!LF&J"$?&M<3[\_7,ZH1L+Z8$ <FM6H'O=[74T]2JJ$>*V9+I M```(`/Q^.S/M6-&+TQL``.^4```-````<W1D7VUA=& N:'1M;.Q=>W/;.)+_ MVU.5[X!HJS+)C"593K)W$UN:<6PG<57LY&QGLU=[6RZ(A"1L*((!2<N:RWWW MGB3DL?>$]'[YY9?V[L[.<S*<DR,^Y D-R"F5,=0\" )RCC5C<LYB)J^9#Z4? MDMYVL/+[ -&8$6_"O$\$\*8L!'9F/)F0WW[[C<0D$63,$L+#D<#Z="C2!."Q M"0W'+-XFLPGW)F3&)".2?4ZY9+YME: VBIDXH6,&) VSP.Z$41\E>'I\>4!0 MWFUL?=UO>2($`23M9!ZQ%C'?^JV$W21J"/:0MHQ9TD^34?L_6P11$IX$;.!* MF+3))?!Y1-Y+,99T.N7AF+P%IE/ !![&B=^9TF2RW]5M`23 X2?H1-!OQ<D\ M8/&$L:1%D ]#WHOC%IE(-C(U.EB +;NF-_!Q*/SY0 \'BG $_),1]0#B0'(: M;),W++AF"??H= RCT8:1YZ.6DLL^->".^I4&O O\4 G"[;>N$A&U!OLGIZ_) MQ?EAO]7I=/UI(,:B,P9 \O+=^='Q>7^'?#PYNGS3W_V/'?+F^.3UF\O^\Z?D MX.UEOU4!#WA=JOO1C!<47352B<\W8LHT]A?2!)OZUS3TF!\S*KU)!P<^(W>A M4(^A_ 46#X[VNT/5J(LML%:-)"(I9OP35UX'/SSSU3\=;\Q_/1+>H;'2[ON) M )&AD#Z3_1[Q6!!$U/=!N/UGZEL<40^_[9 12!T8OA;<;Y$XG8(FS,'LT'EH M%/ P$I($=(X^2(3!7)E>H GYRMF-0VB"W?<"&L?XV6N14,PDC;"6!]UDJCX MG1;RD:+D+]\2K7LM8/:5\-*X_R,?/<8>=50=TN\3M]J3_\V?]5NMO?_[,2>G MP 6+8%F\N8B8QT? ]%')6 -;O I5B[:,>IZ&"9\R\I8/)5A):Z!=P2HP8!$& M<*Q+%*KV-J[/<5 =`?P%(K8C!, H0I]*GTR%GT*P; W >0[X*!S&T5Z&`\^N MAI#J_/59D</CT!,^Z_H,_R&Z!KH9R P48$<7U>.*&R:+L"_%33<-X8%2X-A M8;U:)!P>'I3!3D+-$&B.DX =$5N;\&D4,'3A1KN0F'VX EYX7:1U""5,QD * ML9=)-T;Q*J>EI&L$;8BH^K5DQM["L"52!$HQQE0.T90A_PC QH34J&.O%A'& MI.A8-)2N5P^5)L-T-"I[AH,X9E/,C1 01T: '1 J)9VC? WGB64W`Z E$RT, M[[YAVS2H!84Y+20_1<QS54;"=#H$W1VST)BQ1M4MZD&9%Y3X9%X*IGO- CG1 M:8J62#R M)U;R/A>JS&#H" TP8"P8+0GU0I6I))R280#UP&=MHU,+P<^ >6A2+B4-4T\O MN9:&-N\BC4M5ML"QKEJ+EDI>E<\I:S0YW8>0J\G>.=.3#G("LY($T X(Q.3Q M2NK1`CY<C(O&HY N.6*>\QV"!880`PU-<VSSM\4N)>17,YA$B5F<!PR=C9/8 M3' PN_EHZBATTZ Q 8"'Z4US>%6],;BWZ!,.RQG(\GSF+\IM5$$8IV,`RNYE M%5,+0CVT?20'[T\LZ+J"]$JB/(3Y(WQW(:N%ER_J=!.U9%M:;!G8%=T>T:5F M(/M=^$NOE/I^M 7,N9C; 9!`M(%\"%ZV5MY$KLV#H0) OD)H SY&+Y!V(H3 MB/%^G X'NR!J^*>WLPF=!OR7Z&S4G>94>CN:S.X&9'H[:W3'$EJ_/V=-NA.2 M?!/9G%[M-L+?O07^Q7^=7S:F(:G/O;U-2"&9)N.L*:P]S C?:Z1(I LCR)5Z M*\GD!#Q MJ'TER:* >K "!].:;D02.K:[Z2O4$-3H%FKXO2GA4OVS8G DD%>QZK>FSJVM M%-"?[EACK=B7JVVNK[0B>)=UM8"'VC!.]GJH/HW5(%>!!:P V6OWK-K=#JM) MZ^8U%^C<B>YN%M(K=/>[U-Q:7^LH;67$7^YA2SYO:5G9ZZVMYP5?=PL=7U"^ M.]*^S>)XA?95AO3O70&+.E 9Z1OKX#IJ6 J^WX4:[5;IT7;^??YU]$K!D.Z_ MHY+EW2N4HW =G=MVQ;E16JDJTW . PX":MJV0"IOW;C]&E4;F1&X:K*3^6JG M5J/6*W+B1AA!)0>H8$V:M[/O*YIG':WG'=5Z(0AMUG"!8L$/K1)3L79)S]QN MKB+;+DP^5LJWQ&4ESXKLLP;-JVD_M>W-P-V%;X5T?7+[$#V91TP.1<"KYSCW MS!\:]726&R>5<^S5P7>IZNJ"4-SI6(+ O^Y8?A<C65BWJQ[(9H.Y= 4C*VRR MBE%9>,>*`"']ZRI"]8K:?=:%3 1K+)RY8[Y5I0=K*T&OT.H/UX! 0"14W9>A MGXA `QVP:ZB.B*5(0U]??Z.:A,Z!TQ #K[HUETJ)ZJ%J8N%4^' MCIR,U'-S MRMJT*R 1X3B9&$L\+"FA,N1N2*(SI3?;JJUD<8I'=+$:WFR :E,>XFEI+<!5 M&VR'Q)%(>&<B>75\=?GN[/C _/CB\M[)910(FAB?^5DF2B:FK" 44$A?I&C- MQ<JV<*&V$XQLW?6$?6B..<>?4XIW+\U5B_OI=9S08WO;</;>+L25=FV4 40[ M]SZKIS<6IKQJ]'/!0_V\$)_N9C%=G?5=7RORR,3VXS0:Y"WQD$QT3[7"=M;I M9X,A*2I*L8J9%=W12%4NNC0?JMW[.U2%,=K]K =IVKO=*"'-+ #A%P B*9Y2 MU+G+0HM25UP?"M*9"CRH[4&2`?P"F J&4-NMUW;)N6JEQND.%2O_3SVI]E;M MWM*\LUQ0K8K6Q]=K8Q9>>G>GD".YZ.&5=JF1QL/VD/3H8E5QI:9>L(A*=5$' M$Q1,HB*1063(^I90S,>ANGD7^ 3_``410F):5L5,4?#S$'!,BO=B'R^T=[$4 M_R ?F:$H0+T0C+3U:&.9VQ<2I]X$%11?;%'BL&];_>3X1=-.JP7"0;O.<Q7S M^^2+;?%%K[;!,.JSRUL9`Q,:DYA.F>HZH7%)+)W20!,UTD/4%%,,\B$OS\D, MFH:0:K%0I.,)Z70Z>KR_C2GE0BM:DS29>"'0.F)<:E76$JK*EIM8V<K<,KS< MI8D1:"I5Z YAB-L;54ICRF9^4II0*0VG^I*%;5.:3*EORJ H3JSVDV3 T3AY MU<G;=Z]?[MB"90>!JJ<9ME5I<M- ?:O9 HNX!^GTWEH"_S%T!:JL+9F2+-S MW!R!_$26!04GK<FCU8A)%D(GB %+Q=[5LW^G1V*\ 9'F(;$Z6[RWTW7BSLUL MWXNFH9[[_)KC:Q/F9.=7TFRYL&(:`/91TMV*B7UA1ZJ1,1BD0I\JK'%IJK , MX [M2(SU/9);Z1W.2=J]G>]1[TSO7<W[4^_N1N]NN?BTU.'UR,_5RM=HZIMS MYNK$C$/=(2O.?]7L%R0&31X7B3[)J-Z/5*2H\HO=LU4VU?J*W=9JW<KS\UYV M1J)D.+: D>U8F.:VDX/EZ W-9X'%;VQ!MUP2S#SW[C+'_0(:E6YTY _O U/? MF0^(*D10$ E\C^DUS$I!P#QA1;NH\N[Y=R-&(B0?\Q"XC9FZ[_\"1R.2.!1; M/;.R!+ YLIF O'I[>75^<'3R=S41:1<%[,C6K%4IG<O:J!'71$ILA6QF6<-W M>65<F=BT'F..5D,\Q;>-!FUU.?\%\,3DGGH/);ZS\(6*M$RVZCNB+&%I3]QN MT W.!4N&[YR$`=6G>]4!!U,#AL AULTI.$ZA?E'YTMUM<0:W33BH> Z(;R!& M+\'MHI1YZ1/NT?"IXM1NU^M#O1ZFA9 N> )?2)>H%SJE0^7I\#T2V!4G0U6, M;M793QY-5;%[U#D M_(2QGK"! S >C;C'(7J!37FYLW"Z5EB_"W7P*FUVZSVE(EM >J&/+_[!XT1R M%(B9VE(2U^8++MCGICFB\00]$,WR:.X1G4/CF[?-FZ:$S&^TWB.+58]5SY?N M7N5+MZH+UMX9V&I8CU0[L9)B;545NIG07>C1B XWN6IL3RA^R5M\^99ZLRIC M6"$NSZ +M%[D^JBZBP<FG>%_!,%R=\^N9\[SHB=9*(OP!TG(F=!KH$E9^DOR MN^W*>G.GGO%>ZNQ%'6C;S1I1(.J'/6C GB^Y/_%V>7Z<F^%*X=7X\QK")?M5 M!:YG*E9M<IQ^23_\BL6I1G"K0\9*"G?A6B )O$4P4(M;N+F?O?EQZ0Z93DWY MH.W&E]KN>DY_ZPBNU_M 3*=3ND'_G5 0A.3+H]>(L^?VYLLZ?"1? 0\<" 63 M_OO!X25A-QY3D70M`<G[(QM[<\ <1-7*8TZV03X"[ $-UR5BY5P``)")`)OI MT]R(NS\<.*(<#D M`]MNPK4>Q%5>H+HKCC+ VR91U$ [HK*\DP7#S&Z 0C G.YWG]KQC47UR4F:X MV34+74IKC. W$D9Y3^ZK" 9 Z8S.]2KZ[TR*!C)QXJ\$I[6Q2'28L H<"5F5 M^?A21)'5:;?;NGI9/I?FEQ1I$ OR*<1EQYBTO G^QIBUA+6ZF.V9-)X)%RX+ M0O//J6C2MGB%H,GB;?'8V"*WKDJ<'Y^ZM,A(!(&8H5Q/C _)7W>>/_^E+$IL MHHAV70 C]MPS*K7:KUZ]&43>P7,Y \BA;495$F5 ]TD-^^\ES'35R_K1[2KJ M+<WU`8Z!F0:A;;EJ238GXS?>WW+.7=5.N2W"ACM=9M/H5]MB]8Y7=>\:DB.K MZ#WL- M+M34A'UM1C3J>ISHDS>*DV6WWJMKN]?>_=75;]_-+%$I'A9JWM7L+%*YMZ,E M._D)+G7M#PJF`N)H?A<P(5/X"QBE9,B3]>0'QKQ!MTPN6ZFP)3^Q#CO8)>C! MN"(G\-:QY5CCZMV.`NZ/<=:]M?BW'A)_Y> ?_]0TZ+C171[)U/H8)9]3#M- MO)>D^-*Y7?X3E_D!'(O\CW\2!KKO^^J((5F797:3T%&R1L;=($4V1XUPF0GB M_7C>\=6[OQV?OWK[[F.^)A)G7)CK] O^7H<ULRFEYG1VU36G;5;[6&<)W0]G M1YKP Q_J21?PLZFO<XPUV\JS_ 'BXHI3)H;&.CSR^?0KJ*\[3\Y6='T^,K?D M"NY<="F(/89K4?0FV!V>I1E-Z<U75 KE/4KOJ:C8"V^NM]/JMVK? D5S7OEK M2P`/18E?A/S=Y.FB*30Q#TM$$*]R! \!4X-?92=(U>>1V\"L0UI,(,EVUQ"C MP?F;P'5EN%)1'<;[7#A^!4X7]GIE&(%E*2=L1E>5VZX0*^P=X"RI &!';C=1 ME?5]060U:]$T`,T\9R"W]5H.>^M E,=N)]CM(EX+U-H^T 62V\1\J_S\OWFD MWY"TO14IK);R<6Z9+&R,6VQ\F#T'0=%A(.:6YVP'`_HP(X/]T S'JIXPU=PT M7W9A$1TT-MUNU; >G_84V2 #D85=`9: M.NMO.%Z#HF+,6TQ`WTM;OU$;Q%7 M#E\])C-M#EFAB4PS_8NW)"-RJ9TNBM28BAH&XN,PN=)QP6>R%S('EC7 A3!S MY#O4C;GAB>WHP;:F,OOU---R\BD(((*<6=FH3&,S\L*$).N0\YO8CPF]8P], M/-60_+=OZ/X^=;#EG%ESTX=-4F1&M'!UVSL<#X['1T-C,AX-1^/^4/M8K9]Z M5N+RZD>#XUJ9:R-W,S(Q:F7"JPIX>,O'B3%G<1VXZ;+ETO;)3*N4P2C,5Q$O MV0O?QD "^0%[YB5KZ<<%> CTDF/'Z+,6.V=[#RK/^ F1,N=BQG05,5M0JG2( M^O0%4N92;-F#U.PCHZ\!7HRH_0F/R>>;ZZ]DI!M]<A.QI; `S->DOM\&UAI[ M````````<W1Y;&4N8W-S4$L!`A0+% ```` `_'X[,^U8T8O3&P``[Y0```T` M`````````0` ````? ,``'-T9%]M871H+FAT;6Q02P4&``````(`` !R```` &?!\````` ` end
Sep 27 2005
parent "Walter Bright" <newshound digitalmars.com> writes:
This is all good stuff. Thanks!
Sep 27 2005
prev sibling parent reply "Bob W" <nospam aol.com> writes:
The package was on its way, but the "news.digitalmars.com"
server did not like its size (~ 0.5MB).

Any ideas?




begin 666 Error.gif
M1TE&.#EA10)%`/<```0"!(2"!(2"A(0"! 3^!,3"Q/P"! ```(X``2,`````
M``````!X```%T!4`_0``?Q8:!0``$ ``D ``? " E +FYP`2$ ````"0! $"
M```"`````!SD$.;H`!(2`````'D8^ CN^X*0_7Q\?P`X$ `'Z &1$ !\`%;_

M`! "!>X``) ``'P``'#H``4&Z)$5$GP``/\``/\`_/\5_?\`?VU " 6_`)$6
M`'P``!74^ KF^X(2_7P`?P#H10#I`!42`````$ 8!0/I`0`2`````* ``)L`
M`!D`````````&%L`Z!4`$ ``````'P``F `` P``?'XA$ ``Z "*$L !``!X
M!0`%`````````/_K`/\&`/^1`/]\`/\`1?\``/\``/\```"M``"<``" ``!\
M````!0``````!0```0`&+ ``Z!4`$ ```'KZ17 !`````````%0";>8`.!(`
M3 ```"]X``X%`((``'P``-L:!P4``((``'P``* P`#K(`% 5``````!5`%L`

M`/<J`!*"``!\`! `&.X``) `H7P``' ```4``)$``'P``/\``/\``/\``/\`
M`&T`#P4

MZ( `$GP``'R4>^?HX!(23 ````#WK
M)P`"Z0!/$ ```/ `[XD!_Q4`_P``?P"0& #GZ0`2$ ```"D``+8!`-0``'<`
M`)$6ON$_/CV" G=\?,8!``(```D``````"P`>N<`>!(```!\``!%' ``````



M)044$)!4(8&O!!R&C3CV(-BS5<L25%NU+<.S; O&!3 7XEBX=1/.90L6(=^O
M:P'+-1 6;]^]`O/BI9IWY=6;2;<&,*!WK=?$$A6[M4R88N/,FSWRK8QQ--W!
M#Q
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
HLWB+N)B+NKB+O-B+OOB+P!B,PCB,Q%B,QGB,R)B,RKB,S!A>`0$`.P``
`
end
Sep 26 2005
parent reply "Walter Bright" <newshound digitalmars.com> writes:
"Bob W" <nospam aol.com> wrote in message
news:dhafpa$2k17$1 digitaldaemon.com...
 The package was on its way, but the "news.digitalmars.com"
 server did not like its size (~ 0.5MB).

 Any ideas?
The newsgroups aren't the right place to put large attachments (they make navigating the newsgroups a real pain for dialup users). You can email them to me, and to J C and Dejan.
Sep 27 2005
parent reply "Bob W" <nospam aol.com> writes:
 The newsgroups aren't the right place to put large attachments (they make
 navigating the newsgroups a real pain for dialup users). You can email 
 them
 to me, and to J C and Dejan.
Got it. Just wondering who of you 3 guys has deleted 'strip' and 'stripr' from the std_string docs. Was still there in V0.132 but is missing in V0.133. I suggest we just blame Ddoc for that, right?
Sep 27 2005
next sibling parent reply J C Calvarese <technocrat7 gmail.com> writes:
In article <dhbkgv$2i4m$1 digitaldaemon.com>, Bob W says...
 The newsgroups aren't the right place to put large attachments (they make
 navigating the newsgroups a real pain for dialup users). You can email 
 them
 to me, and to J C and Dejan.
Got it. Just wondering who of you 3 guys has deleted 'strip' and 'stripr' from the std_string docs. Was still there in V0.132 but is missing in V0.133.
It's not my fault. Walter (now with the help of his pal Ddoc) is the one who creates and maintains the official documentation. I'm just curious what your corrections look like.
I suggest we just blame Ddoc for that, right?
Sounds like a plan to me. ;) jcc7
Sep 27 2005
parent "Bob W" <nospam aol.com> writes:
 I'm just curious what your corrections look like.
Just refer to my new thread "V 0.133 HTML Docs Upload"
Sep 27 2005
prev sibling parent reply "Walter Bright" <newshound digitalmars.com> writes:
"Bob W" <nospam aol.com> wrote in message
news:dhbkgv$2i4m$1 digitaldaemon.com...
 Just wondering who of you 3 guys has deleted
 'strip' and 'stripr' from the std_string docs.
 Was still there in V0.132 but is missing in V0.133.

 I suggest we just blame Ddoc for that, right?
Yes <g>. I just fixed it.
Sep 27 2005
parent "Bob W" <nospam aol.com> writes:
 Just wondering who of you 3 guys has deleted
 'strip' and 'stripr' from the std_string docs.
 Was still there in V0.132 but is missing in V0.133.

 I suggest we just blame Ddoc for that, right?
Yes <g>. I just fixed it.
Speedy recovery I'd have to say. After a short look I had the impression that you are even getting the Ddoc related 'blank character inflation" under control. Good job!
Sep 27 2005