mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-24 09:19:08 -07:00
Fix validation errors when producing documentation using default build script
The awk script parses out the first instance of the DOCUMENTATION tag that it finds within a file. If a file did not previously have a DOCUMENTATION tag but received one due to it having an AMI event, then the XML fragment associated with the AMI event was erroneously placed in the resulting XML file. Without the python scripts, these XML fragments will not validate. This patch adds DOCUMENTATION tags at the top of those files that did not previously have them to prevent the awk script from pulling AMI event documentation. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369910 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -46,6 +46,9 @@
|
||||
|
||||
#include "sig_analog.h"
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
/*! \note
|
||||
* Define if you want to check the hook state for an FXO (FXS signalled) interface
|
||||
* before dialing on it. Certain FXO interfaces always think they're out of
|
||||
|
||||
@@ -56,6 +56,10 @@
|
||||
#error please update libpri
|
||||
#endif
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
|
||||
/* define this to send PRI user-user information elements */
|
||||
#undef SUPPORT_USERUSER
|
||||
|
||||
|
||||
@@ -154,6 +154,9 @@ int daemon(int, int); /* defined in libresolv of all places */
|
||||
|
||||
#include "../defaults.h"
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
#ifndef AF_LOCAL
|
||||
#define AF_LOCAL AF_UNIX
|
||||
#define PF_LOCAL PF_UNIX
|
||||
|
||||
@@ -55,6 +55,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include "asterisk/stringfields.h"
|
||||
#include "asterisk/data.h"
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
/*! Default AMA flag for billing records (CDR's) */
|
||||
int ast_default_amaflags = AST_CDR_DOCUMENTATION;
|
||||
char ast_default_accountcode[AST_MAX_ACCOUNT_CODE];
|
||||
|
||||
@@ -73,6 +73,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include "asterisk/data.h"
|
||||
#include "asterisk/channel_internal.h"
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
#ifdef HAVE_EPOLL
|
||||
#include <sys/epoll.h>
|
||||
#endif
|
||||
|
||||
@@ -60,6 +60,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include "asterisk/md5.h"
|
||||
#include "asterisk/utils.h"
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
#ifndef RTLD_NOW
|
||||
#define RTLD_NOW 0
|
||||
#endif
|
||||
|
||||
@@ -69,6 +69,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/*** DOCUMENTATION
|
||||
***/
|
||||
|
||||
static char dateformat[256] = "%b %e %T"; /* Original Asterisk Format */
|
||||
|
||||
static char queue_log_name[256] = QUEUELOG;
|
||||
|
||||
Reference in New Issue
Block a user