swad-core/swad_HTML.c

1011 lines
24 KiB
C
Raw Normal View History

2019-10-23 19:05:05 +02:00
// swad_HTML.c: tables, divs
2017-06-11 20:09:59 +02:00
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2019-01-07 21:52:19 +01:00
Copyright (C) 1999-2019 Antonio Ca<EFBFBD>as Vargas
2017-06-11 20:09:59 +02:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2019-10-04 01:35:40 +02:00
#define _GNU_SOURCE // For vasprintf
#include <stdarg.h> // For va_start, va_end
#include <stdio.h> // For fprintf, vasprintf
2019-10-04 15:19:36 +02:00
#include <stdlib.h> // For free
2017-06-11 20:09:59 +02:00
#include "swad_global.h"
2019-10-23 19:05:05 +02:00
#include "swad_HTML.h"
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
2019-10-13 18:19:26 +02:00
/*****************************************************************************/
/***************************** Private vatiables *****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
static unsigned HTM_TABLE_NestingLevel = 0;
static unsigned HTM_TR_NestingLevel = 0;
static unsigned HTM_TH_NestingLevel = 0;
static unsigned HTM_TD_NestingLevel = 0;
2019-10-23 21:37:01 +02:00
static unsigned HTM_DIV_NestingLevel = 0;
2019-10-26 12:25:27 +02:00
static unsigned HTM_UL_NestingLevel = 0;
2019-10-26 22:49:13 +02:00
static unsigned HTM_LI_NestingLevel = 0;
2019-10-28 13:56:04 +01:00
static unsigned HTM_A_NestingLevel = 0;
2019-11-01 17:35:26 +01:00
static unsigned HTM_SCRIPT_NestingLevel = 0;
2019-11-02 12:59:31 +01:00
static unsigned HTM_LABEL_NestingLevel = 0;
2019-10-31 17:42:05 +01:00
static unsigned HTM_TEXTAREA_NestingLevel = 0;
2019-10-13 18:19:26 +02:00
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
static void HTM_TABLE_BeginWithoutAttr (void);
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TR_BeginWithoutAttr (void);
2019-10-12 19:10:32 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginWithoutAttr (void);
static void HTM_TH_BeginAttr (const char *fmt,...);
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
static void HTM_TD_BeginWithoutAttr (void);
2019-10-10 23:14:13 +02:00
2019-10-23 21:37:01 +02:00
static void HTM_DIV_BeginWithoutAttr (void);
2019-10-26 12:25:27 +02:00
static void HTM_UL_BeginWithoutAttr (void);
2019-10-26 22:49:13 +02:00
static void HTM_LI_BeginWithoutAttr (void);
2019-10-26 12:25:27 +02:00
2019-10-28 13:56:04 +01:00
static void HTM_A_BeginWithoutAttr (void);
2019-11-02 12:59:31 +01:00
static void HTM_LABEL_BeginWithoutAttr (void);
2019-10-31 17:42:05 +01:00
static void HTM_TEXTAREA_BeginWithoutAttr (void);
2017-06-11 20:09:59 +02:00
/*****************************************************************************/
/******************************* Start/end table *****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TABLE_Begin (const char *fmt,...)
2019-10-04 01:35:40 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Class;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Class,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"%s\">",Class);
2019-10-04 01:35:40 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
2019-10-04 01:35:40 +02:00
free ((void *) Class);
}
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2019-10-04 01:35:40 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2019-10-04 01:35:40 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWithoutAttr ();
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TABLE_BeginWithoutAttr (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table>");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginCenterPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_CENTER CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginCenter ();
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginCenter (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_CENTER\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWidePadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWide ();
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWide (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWideMarginPadding (unsigned CellPadding)
2017-06-11 20:09:59 +02:00
{
if (CellPadding)
2019-10-13 22:13:17 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE_MARGIN CELLS_PAD_%u\">",
2019-10-03 22:43:36 +02:00
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2019-10-13 22:13:17 +02:00
}
2019-10-03 22:43:36 +02:00
else
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWideMargin ();
2019-10-03 22:43:36 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_BeginWideMargin (void)
2019-10-03 22:43:36 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<table class=\"FRAME_TBL_WIDE_MARGIN\">");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel++;
2017-06-11 20:09:59 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TABLE_End (void)
2017-06-11 20:09:59 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TABLE_NestingLevel == 0) // No TABLE open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TABLE.");
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</table>");
2019-10-13 22:13:17 +02:00
2019-10-23 19:05:05 +02:00
HTM_TABLE_NestingLevel--;
2017-06-11 20:09:59 +02:00
}
2019-09-23 09:44:10 +02:00
2019-10-05 22:15:52 +02:00
/*****************************************************************************/
/**************************** Start/end table row ****************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TR_Begin (const char *fmt,...)
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
if (fmt[0])
2019-10-05 13:27:58 +02:00
{
2019-10-05 22:15:52 +02:00
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<tr %s>",Attr);
2019-10-05 22:15:52 +02:00
free ((void *) Attr);
2019-10-05 13:27:58 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TR_BeginWithoutAttr ();
2019-10-05 13:27:58 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TR_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_NestingLevel++;
2019-10-05 13:27:58 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TR_BeginWithoutAttr (void)
2019-10-04 01:35:40 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<tr>");
2019-10-04 01:35:40 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TR_End (void)
2019-10-04 01:35:40 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TR_NestingLevel == 0) // No TR open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TR.");
2019-10-13 18:19:26 +02:00
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</tr>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_NestingLevel--;
2019-10-04 01:35:40 +02:00
}
2019-10-11 01:02:51 +02:00
/*****************************************************************************/
/***************************** Table heading cells ***************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TH (unsigned RowSpan,unsigned ColSpan,const char *Class,const char *Txt)
2019-10-12 19:42:10 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TH_Begin (RowSpan,ColSpan,Class);
2019-10-12 19:42:10 +02:00
if (Txt)
if (Txt[0])
fprintf (Gbl.F.Out,"%s",Txt);
2019-10-23 19:05:05 +02:00
HTM_TH_End ();
2019-10-12 19:42:10 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TH_Begin (unsigned RowSpan,unsigned ColSpan,const char *Class)
2019-10-12 19:10:32 +02:00
{
if (RowSpan > 1 && ColSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" colspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
RowSpan,ColSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" colspan=\"%u\"",
2019-10-12 19:10:32 +02:00
RowSpan,ColSpan);
}
else if (RowSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
RowSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("rowspan=\"%u\"",
2019-10-12 19:10:32 +02:00
RowSpan);
}
else if (ColSpan > 1)
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("colspan=\"%u\" class=\"%s\"",
2019-10-12 19:10:32 +02:00
ColSpan,Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("colspan=\"%u\"",
2019-10-12 19:10:32 +02:00
ColSpan);
}
else
{
if (Class)
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr ("class=\"%s\"",
2019-10-12 19:10:32 +02:00
Class);
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-12 19:10:32 +02:00
}
}
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginAttr (const char *fmt,...)
2019-10-11 01:02:51 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<th %s>",Attr);
free ((void *) Attr);
}
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-11 01:02:51 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TH_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TH_NestingLevel++;
2019-10-11 01:02:51 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TH_BeginWithoutAttr (void)
2019-10-11 01:02:51 +02:00
{
fprintf (Gbl.F.Out,"<th>");
}
2019-10-23 19:05:05 +02:00
void HTM_TH_End (void)
2019-10-11 01:02:51 +02:00
{
2019-10-23 19:05:05 +02:00
if (HTM_TH_NestingLevel == 0) // No TH open
2019-10-13 22:13:17 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TR.");
2019-10-13 18:19:26 +02:00
2019-10-11 01:02:51 +02:00
fprintf (Gbl.F.Out,"</th>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TH_NestingLevel--;
2019-10-11 01:02:51 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TH_Empty (unsigned NumColumns)
2019-10-11 01:02:51 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
{
2019-10-23 19:05:05 +02:00
HTM_TH_BeginAttr (NULL);
HTM_TH_End ();
2019-10-11 01:02:51 +02:00
}
}
2019-10-05 22:15:52 +02:00
/*****************************************************************************/
/********************************* Table cells *******************************/
/*****************************************************************************/
2019-10-23 19:05:05 +02:00
void HTM_TD_Begin (const char *fmt,...)
2019-10-07 22:28:16 +02:00
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<td %s>",Attr);
2019-10-07 22:28:16 +02:00
free ((void *) Attr);
}
else
2019-10-23 19:05:05 +02:00
HTM_TD_BeginWithoutAttr ();
2019-10-07 22:28:16 +02:00
}
else
2019-10-23 19:05:05 +02:00
HTM_TD_BeginWithoutAttr ();
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TD_NestingLevel++;
2019-10-07 22:28:16 +02:00
}
2019-10-23 19:05:05 +02:00
static void HTM_TD_BeginWithoutAttr (void)
2019-10-07 22:28:16 +02:00
{
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"<td>");
2019-10-07 22:28:16 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_End (void)
2019-10-06 12:00:55 +02:00
{
2019-10-26 12:25:27 +02:00
if (HTM_TD_NestingLevel == 0) // No TD open
2019-10-17 15:40:21 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TD.");
2019-10-13 18:19:26 +02:00
2019-10-10 21:21:24 +02:00
fprintf (Gbl.F.Out,"</td>");
2019-10-13 18:19:26 +02:00
2019-10-23 19:05:05 +02:00
HTM_TD_NestingLevel--;
2019-10-06 12:00:55 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_Empty (unsigned NumColumns)
2019-10-05 13:27:58 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
2019-10-10 23:14:13 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TD_Begin (NULL);
HTM_TD_End ();
2019-10-10 23:14:13 +02:00
}
2019-10-05 13:27:58 +02:00
}
2019-10-23 19:05:05 +02:00
void HTM_TD_ColouredEmpty (unsigned NumColumns)
2019-09-23 09:44:10 +02:00
{
unsigned NumCol;
for (NumCol = 0;
NumCol < NumColumns;
NumCol++)
2019-10-10 23:14:13 +02:00
{
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"COLOR%u\"",Gbl.RowEvenOdd);
HTM_TD_End ();
2019-10-10 23:14:13 +02:00
}
2019-09-23 09:44:10 +02:00
}
2019-10-23 20:07:56 +02:00
/*****************************************************************************/
/************************************ Divs ***********************************/
/*****************************************************************************/
2019-10-23 21:37:01 +02:00
void HTM_DIV_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<div %s>",Attr);
free ((void *) Attr);
}
else
HTM_DIV_BeginWithoutAttr ();
}
else
HTM_DIV_BeginWithoutAttr ();
HTM_DIV_NestingLevel++;
}
static void HTM_DIV_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<div>");
}
2019-10-23 20:07:56 +02:00
void HTM_DIV_End (void)
{
2019-10-26 12:25:27 +02:00
if (HTM_DIV_NestingLevel == 0) // No DIV open
2019-10-23 21:37:01 +02:00
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened DIV.");
2019-10-23 20:07:56 +02:00
fprintf (Gbl.F.Out,"</div>");
2019-10-23 21:37:01 +02:00
2019-10-26 12:25:27 +02:00
HTM_DIV_NestingLevel--;
2019-10-23 20:07:56 +02:00
}
2019-10-26 01:56:36 +02:00
/*****************************************************************************/
/******************************** Main zone **********************************/
/*****************************************************************************/
void HTM_MAIN_Begin (const char *Class)
{
fprintf (Gbl.F.Out,"<main class=\"%s\">",Class);
}
void HTM_MAIN_End (void)
{
fprintf (Gbl.F.Out,"</main>");
}
/*****************************************************************************/
/********************************* Articles **********************************/
/*****************************************************************************/
void HTM_ARTICLE_Begin (const char *ArticleId)
{
fprintf (Gbl.F.Out,"<article id=\"%s\">",ArticleId);
}
void HTM_ARTICLE_End (void)
{
fprintf (Gbl.F.Out,"</article>");
}
/*****************************************************************************/
/********************************* Sections **********************************/
/*****************************************************************************/
void HTM_SECTION_Begin (const char *SectionId)
{
fprintf (Gbl.F.Out,"<section id=\"%s\">",SectionId);
}
void HTM_SECTION_End (void)
{
fprintf (Gbl.F.Out,"</section>");
}
2019-10-26 02:19:42 +02:00
/*****************************************************************************/
/****************************** Unordered lists ******************************/
/*****************************************************************************/
2019-10-26 12:25:27 +02:00
void HTM_UL_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<ul %s>",Attr);
free ((void *) Attr);
}
else
HTM_UL_BeginWithoutAttr ();
}
else
HTM_UL_BeginWithoutAttr ();
HTM_UL_NestingLevel++;
}
static void HTM_UL_BeginWithoutAttr (void)
2019-10-26 02:19:42 +02:00
{
2019-10-26 12:25:27 +02:00
fprintf (Gbl.F.Out,"<ul>");
2019-10-26 02:19:42 +02:00
}
2019-10-26 12:25:27 +02:00
2019-10-26 02:19:42 +02:00
void HTM_UL_End (void)
{
2019-10-26 12:25:27 +02:00
if (HTM_UL_NestingLevel == 0) // No UL open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened UL.");
2019-10-26 02:19:42 +02:00
fprintf (Gbl.F.Out,"</ul>");
2019-10-26 12:25:27 +02:00
HTM_UL_NestingLevel--;
2019-10-26 02:19:42 +02:00
}
2019-10-26 22:49:13 +02:00
/*****************************************************************************/
/******************************** List items *********************************/
/*****************************************************************************/
void HTM_LI_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<li %s>",Attr);
free ((void *) Attr);
}
else
HTM_LI_BeginWithoutAttr ();
}
else
HTM_LI_BeginWithoutAttr ();
HTM_LI_NestingLevel++;
}
static void HTM_LI_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<li>");
}
void HTM_LI_End (void)
{
if (HTM_LI_NestingLevel == 0) // No LI open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened LI.");
fprintf (Gbl.F.Out,"</li>");
HTM_LI_NestingLevel--;
}
2019-10-28 13:56:04 +01:00
/*****************************************************************************/
/********************************** Anchors **********************************/
/*****************************************************************************/
void HTM_A_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<a %s>",Attr);
free ((void *) Attr);
}
else
HTM_A_BeginWithoutAttr ();
}
else
HTM_A_BeginWithoutAttr ();
HTM_A_NestingLevel++;
}
static void HTM_A_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<a>");
}
void HTM_A_End (void)
{
if (HTM_A_NestingLevel == 0) // No A open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened A.");
fprintf (Gbl.F.Out,"</a>");
HTM_A_NestingLevel--;
}
2019-10-30 00:42:01 +01:00
2019-11-01 17:35:26 +01:00
/*****************************************************************************/
/*********************************** Scripts *********************************/
/*****************************************************************************/
void HTM_SCRIPT_Begin (const char *URL,const char *CharSet)
{
fprintf (Gbl.F.Out,"<script type=\"text/javascript\"");
if (URL)
if (URL[0])
fprintf (Gbl.F.Out," src=\"%s\"",URL);
if (CharSet)
if (CharSet[0])
fprintf (Gbl.F.Out," charset=\"%s\"",CharSet);
fprintf (Gbl.F.Out,">");
HTM_SCRIPT_NestingLevel++;
}
void HTM_SCRIPT_End (void)
{
if (HTM_SCRIPT_NestingLevel == 0) // No SCRIPT open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened SCRIPT.");
fprintf (Gbl.F.Out,"</script>");
HTM_SCRIPT_NestingLevel--;
}
2019-11-02 12:59:31 +01:00
/*****************************************************************************/
/*********************************** Labels **********************************/
/*****************************************************************************/
void HTM_LABEL_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<label %s>",Attr);
free ((void *) Attr);
}
else
HTM_LABEL_BeginWithoutAttr ();
}
else
HTM_LABEL_BeginWithoutAttr ();
HTM_LABEL_NestingLevel++;
}
static void HTM_LABEL_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<label>");
}
void HTM_LABEL_End (void)
{
if (HTM_LABEL_NestingLevel == 0) // No LABEL open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened LABEL.");
fprintf (Gbl.F.Out,"</label>");
HTM_LABEL_NestingLevel--;
}
2019-11-03 18:22:11 +01:00
/*****************************************************************************/
2019-11-04 09:45:57 +01:00
/************************* Input text, email, url ****************************/
2019-11-03 18:22:11 +01:00
/*****************************************************************************/
void HTM_INPUT_TEXT (const char *Name,unsigned MaxLength,const char *Value,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"text\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,MaxLength,Value);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
free ((void *) Attr);
}
}
fprintf (Gbl.F.Out," />");
}
2019-11-04 09:45:57 +01:00
void HTM_INPUT_EMAIL (const char *Name,unsigned MaxLength,const char *Value,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"email\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,MaxLength,Value);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
free ((void *) Attr);
}
}
fprintf (Gbl.F.Out," />");
}
void HTM_INPUT_URL (const char *Name,const char *Value,
const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
fprintf (Gbl.F.Out,"<input type=\"url\" id=\"%s\" name=\"%s\""
" maxlength=\"%u\" value=\"%s\"",
Name,Name,Cns_MAX_CHARS_WWW,Value);
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
free ((void *) Attr);
}
}
fprintf (Gbl.F.Out," />");
}
2019-11-04 10:03:37 +01:00
void HTM_INPUT_FILE (const char *Accept,bool SubmitOnChange)
{
fprintf (Gbl.F.Out,"<input type=\"file\" name=\"%s\" accept=\"%s\"",
Fil_NAME_OF_PARAM_FILENAME_ORG,Accept);
if (SubmitOnChange)
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();\"",
Gbl.Form.Id);
fprintf (Gbl.F.Out," />");
}
2019-10-31 17:42:05 +01:00
/*****************************************************************************/
/********************************* Text areas ********************************/
/*****************************************************************************/
void HTM_TEXTAREA_Begin (const char *fmt,...)
{
va_list ap;
int NumBytesPrinted;
char *Attr;
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print HTML *****/
fprintf (Gbl.F.Out,"<textarea %s>",Attr);
free ((void *) Attr);
}
else
HTM_TEXTAREA_BeginWithoutAttr ();
}
else
HTM_TEXTAREA_BeginWithoutAttr ();
HTM_TEXTAREA_NestingLevel++;
}
static void HTM_TEXTAREA_BeginWithoutAttr (void)
{
fprintf (Gbl.F.Out,"<textarea>");
}
void HTM_TEXTAREA_End (void)
{
if (HTM_TEXTAREA_NestingLevel == 0) // No TEXTAREA open
Ale_ShowAlert (Ale_ERROR,"Trying to close unopened TEXTAREA.");
fprintf (Gbl.F.Out,"</textarea>");
HTM_TEXTAREA_NestingLevel--;
}
2019-10-30 00:42:01 +01:00
/*****************************************************************************/
/********************************** Images ***********************************/
/*****************************************************************************/
2019-10-30 09:12:12 +01:00
void HTM_IMG (const char *URL,const char *Icon,const char *Title,
2019-10-30 22:31:03 +01:00
const char *fmt,...)
2019-10-30 00:42:01 +01:00
{
2019-10-30 22:31:03 +01:00
va_list ap;
int NumBytesPrinted;
char *Attr;
2019-10-30 00:42:01 +01:00
2019-10-31 01:33:26 +01:00
fprintf (Gbl.F.Out,"<img src=\"%s",URL);
if (Icon)
if (Icon[0])
fprintf (Gbl.F.Out,"/%s",Icon);
fprintf (Gbl.F.Out,"\"");
2019-10-30 00:42:01 +01:00
if (Title)
{
if (Title[0])
fprintf (Gbl.F.Out," alt=\"%s\" title=\"%s\"",Title,Title);
else
fprintf (Gbl.F.Out," alt=\"\"");
}
else
fprintf (Gbl.F.Out," alt=\"\"");
2019-10-30 22:31:03 +01:00
if (fmt)
{
if (fmt[0])
{
va_start (ap,fmt);
NumBytesPrinted = vasprintf (&Attr,fmt,ap);
va_end (ap);
if (NumBytesPrinted < 0) // If memory allocation wasn't possible,
// or some other error occurs,
// vasprintf will return -1
Lay_NotEnoughMemoryExit ();
/***** Print attributes *****/
fprintf (Gbl.F.Out," %s",Attr);
2019-10-30 00:42:01 +01:00
2019-10-30 22:31:03 +01:00
free ((void *) Attr);
}
}
2019-10-30 00:42:01 +01:00
fprintf (Gbl.F.Out," />");
}