Выбрать главу

procedure SaveAnnotation;

var

i: integer;

begin

OutList.Add('<annotation>');

with form1.Annotation do

for i:= 0 to Lines.Count – 1 do

OutList.Add('<p>'+Lines[i]+'</p>');

OutList.Add('</annotation>');

end;

procedure SavePersons(title: string; LB: TListBox);

var

i: integer;

Person: TPerson;

begin

with LB do

if Count > 0 then

for i:= 0 to Count – 1 do

begin

Person:= TPerson(Items.Objects[i]);

OutList.Add(' <'+title+'>');

with Person do

begin

PrintString('first-name',fname);

PrintString('last-name',lname);

PrintString('middle-name',mname);

PrintString('nick',nick);

PrintString('email',email);

end;

OutList.Add(' </'+title+'>');

end;

end;

procedure SaveSequence;

var

s: string;

begin

with Form1 do

begin

if sequence.Text = '' then exit;

S:= '<sequence name=«' +sequence.Text+'» ';

if tome.Text = ''

then S:= S + '/>'

else S:= S + ' number=«'+tome.Text+'» />';

end;

OutList.Add(S);

end;

procedure SaveDescription;

const

max = 5;

mas: array[1..max] of string =

(

'<?xml version=«1.0» encoding=«windows-1251» ?>',

'<FictionBook xmlns=«http://www.gribuser.ru/xml/fictionbook/2.0» ',

' xmlns: l=«http://www.w3.org/1999/xlink» >',

' <description>',

' <title-info>'

);

var

i: byte;

S: string;

begin

// head

for i:= 1 to max do

OutList.Add(Mas[i]);

with form1.GenresBox do

if Items.Count > 0 then

for i:= 0 to Items.Count – 1 do

OutList.Add('<genre>'+GetGaner(Items[i])+'</genre>');

SavePersons('author',Form1.ListBox3);

SavePersons('translator',Form1.ListBox2);

with Form1 do

begin

PrintString('book-title',book_title.text);

if Annotation.Lines.Count > 0

then SaveAnnotation;

//if _date.text <> '' then

//OutList.Add('<date value=«'+_date.text+'-01-01» >'+_date.text+'</date>');

SaveSequence;

OutList.Add(' <lang>'+Lang.Text+'</lang>');

if SLang.ItemIndex > –1 then

begin

S:= Lg[SLang.ItemIndex][1];

if S <> '' then

OutList.Add(' <src-lang>'+S+'</src-lang>');

end;

OutList.Add(' </title-info>');

// **** document-info ****

OutList.Add(' <document-info>');

OutList.Add(' <program-used>my_Make_FB2</program-used>');

PrintString('src-url', url.Text); //??

OutList.Add(' <date value=«'+FormatDateTime('yyyy-mm-dd', Now)+'» >'+ DateToStr(now) +'</date>');

PrintString('id', id.Text); //??

OutList.Add(' <version>1.0</version>');

OutList.Add(' </document-info>');

// **** publish-info ****

OutList.Add(' <publish-info>');

if Book_name.Text = ''

then PrintString('book-name', book_title.Text)

else PrintString('book-name', Book_name.Text);

PrintString('publisher', publisher.Text); //

PrintString('city', city.Text); //

PrintString('year', year.Text); //

PrintString('isbn', isbn.Text); //

//OutList.Add(' <version>1.0</version>');

OutList.Add(' </publish-info>');

end;

OutList.Add(' </description>');

OutList.Add('<body>');

end;

function SubStyle(m,w: TmyStyle):integer;

begin

result:= integer(m) – integer(w);

end;

procedure SaveBodyFB2;

var

i, j: integer;

S, ss: string;

oldStyle,

LastStyle, CurStyle: TmyStyle; // style

procedure StyleStucture;

begin

if CurStyle <> oldStyle then

begin

if SytleStack.Count = 0 then

begin

SytleStack.Add(TObject(CurStyle))

end

else

begin

LastStyle:= TmyStyle(SytleStack.Last);

case SubStyle(CurStyle,LastStyle) of

0: OutList.Add('</section>');

1: SytleStack.Add(TObject(CurStyle));

else

begin

OutList.Add('</section>');

while CurStyle <> LastStyle do

begin

SytleStack.Delete(SytleStack.Count-1);

OutList.Add('</section>');

LastStyle:= TmyStyle(SytleStack.Last);

end;

end;

end;// case

end;

OutList.Add('<section>');

OutList.Add('<title>');

end;

OutList.Add('<p>'+s+'</p>');

end; // StyleStucture;

begin

oldStyle:= ZZ; EndNotes_count:= 1;

// if

OutList.Add('<section>');

with Form1.ListBox1 do

for i:= 0 to Count – 1 do // просматриваем текст

begin

S:= Items[i];

Ss:= GetStyle(S, CurStyle); // получаем чистую строку и стиль

s:= '';

if ss <> '' then

for j:= 1 to length(Ss) do

begin // просматриваем строку

case ss[j] of

'~': begin // если это концевая сноска

S:= S + '<a class="underline" href=«#n_'+IntToStr(EndNotes_count)+'» type=«note» >'

+IntToStr(EndNotes_count)+'</a>';