Remove unneeded references to the \date command

Release_1.3_Bugfix
Bradlee Speice 2012-07-23 14:27:06 -04:00
parent d7206bcd32
commit 3ffa96a5d1
6 changed files with 1 additions and 11 deletions

View File

@ -240,14 +240,12 @@ void checkXTEEnabled ( Display *display )
/** \file cva-input.c
* \brief The cva-input program to demonstrate Libcvautomation's XTest functionality
* \author Bradlee Speice <bspeice@uncc.edu>
* \date 7/18/2012
*/
/* The biggest purpose of documenting this code is to trick doxygen into making a man page for it. */
/** \page cva-input
*
* \author Bradlee Speice <bspeice@uncc.edu>
* \date 7/18/2012
* \section usage Usage:
* This program works kind of like a mini-language. All options are parsed left-to-right, and executed right there. Thus, specifying "--display" at different places in the options will cause this program to use the most recent given display.
* The return code is 1 if there are no commands given, or if all commands fail. It is 0 otherwise.

View File

@ -267,14 +267,12 @@ If you have any questions, comments, concerns, email <%s>\n", LIBCVAUTOMATION_VE
/** \file cva-match.c
* \brief The cva-input program to demonstrate Libcvautomation's XTest functionality
* \author Bradlee Speice <bspeice@uncc.edu>
* \date 7/18/2012
*/
/* The biggest purpose of documenting this code is to trick doxygen into making a man page for it. */
/** \page cva-match
*
* \author Bradlee Speice <bspeice@uncc.edu>
* \date 7/18/2012
* \section usage Usage:
* This program uses OpenCV in order to recognize an image within an image. The return code is 0 for at least one successful match, and 1 otherwise.
*

View File

@ -59,7 +59,6 @@ void matchSubImage_a_location_center ( const char *rootImageFileName, cvautomati
* \brief The source code to access libcv from inside libcvautomation.
* \details This source file builds in the necessary functionality to use libcv functions inside libcvautomation.
* \author Bradlee Speice
* \date 7/18/2012
*/
/** \page libcvautomation_search_methods Libcv Search Methods

View File

@ -45,7 +45,6 @@ cvaPoint matchSubImage_X11_location_center( Display *displayLocation, const char
* \brief The source code to access Xlib from inside libcvautomation
* \details This source file builds in the necessary functionality to use xlib functions inside libcvautomation.
* \author Bradlee Speice
* \date 7/18/2012
*/
/** \fn Display* cvaOpenDisplay ( char *displayName );

View File

@ -119,7 +119,6 @@ cvaPoint xte_commandString ( Display *displayLocation, char *commandString, int
* \brief The source code to access the XTest extension inside libcvautomation
* \details This source file builds in the necessary functionality to drive the X11 server in libcvautomation
* \author Bradlee Speice
* \date 7/18/2012
*/
/** \page xtest_key_strings XTest Key Strings

View File

@ -65,12 +65,10 @@ typedef struct {
* \brief The top-level include for all projects involving libcvautomation
* \details This source file includes all other files needed for libcvautomation projects, and also defines the cvautomationList and cvaPoint structs to be used among libcvautomation functions.
* \author Bradlee Speice
* \date 7/18/2012
*/
/** \mainpage Libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/18/2012
* \section intro Introduction
* Welcome to Libcvautomation!
* Libcvautomation is a GUI automation and testing tool based on image recognition and response. This program was designed as a direct replacement for <a href="http://sikuli.org">Sikuli</a> and <a href="https://wiki.ubuntu.com/Xpresser">Xpresser</a>. I was having incredible difficulty getting either of these solutions to work - Sikuli would crash whenever I tried to take a screenshot, and Xpresser was both too new for our Prominent North American Enterprise Linux systems, but also didn't work or \c import correctly. I really liked the way each of these programs approached GUI automation, but they simply didn't work. Additionally, I wanted to create a simple solution - it does what you want it to, and that's it.
@ -86,7 +84,6 @@ typedef struct {
/** \page libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/18/2012
* \section intro Introduction
* Welcome to Libcvautomation!
* Libcvautomation is a GUI automation and testing tool based on image recognition and response. This program was designed as a direct replacement for <a href="http://sikuli.org">Sikuli</a> and <a href="https://wiki.ubuntu.com/Xpresser">Xpresser</a>. I was having incredible difficulty getting either of these solutions to work - Sikuli would crash whenever I tried to take a screenshot, and Xpresser was both too new for our Prominent North American Enterprise Linux systems, but also didn't work or \c import correctly. I really liked the way each of these programs approached GUI automation, but they simply didn't work. Additionally, I wanted to create a simple solution - it does what you want it to, and that's it.
@ -102,7 +99,7 @@ typedef struct {
/** \page writing_app_tests Writing Application Tests
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/18/2012
* \date 7/23/2012
* \section audience Audience
* <ul>
* <li>This document was written for people with some intermediate knowledge of BASH.