Update the documentation dates

This commit is contained in:
Bradlee Speice 2012-07-18 13:54:26 -04:00
parent c84ab79aa2
commit c5484ed61d
10 changed files with 18 additions and 18 deletions

View File

@ -218,14 +218,14 @@ 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/11/2012
* \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/11/2012
* \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.
* \section example Example Usage:

View File

@ -265,14 +265,14 @@ 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/11/2012
* \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/11/2012
* \date 7/18/2012
* \section usage Usage:
* This program uses OpenCV in order to recognize an image within an image. The return code is how many matches were found - return 0 for no matches, 1 for one match, etc.
*

View File

@ -59,7 +59,7 @@ 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 6/21/2012
* \date 7/18/2012
*/
/** \page libcv_search_methods Libcv Search Methods

View File

@ -45,7 +45,7 @@ CvPoint 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 6/21/2012
* \date 7/18/2012
*/
/** \fn Display* cvaOpenDisplay ( char *displayName );

View File

@ -113,7 +113,7 @@ 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 6/26/2012
* \date 7/18/2012
*/
/** \page XTest_key_strings XTest Key Strings

View File

@ -64,12 +64,12 @@ 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. Please note that while the opencv2 version is being documented, there is no actual difference in usage for opencv version 1.
* \author Bradlee Speice
* \date 6/21/2012
* \date 7/18/2012
*/
/** \mainpage Libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/11/2012
* \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.
@ -85,7 +85,7 @@ typedef struct {
/** \page libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/11/2012
* \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.
@ -101,7 +101,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/11/2012
* \date 7/18/2012
* \section audience Audience
* <ul>
* <li>This document was written for people with some intermediate knowledge of BASH.

View File

@ -59,7 +59,7 @@ 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 6/21/2012
* \date 7/18/2012
*/
/** \page libcv_search_methods Libcv Search Methods

View File

@ -45,7 +45,7 @@ CvPoint 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 6/21/2012
* \date 7/18/2012
*/
/** \fn Display* cvaOpenDisplay ( char *displayName );

View File

@ -113,7 +113,7 @@ 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 6/26/2012
* \date 7/18/2012
*/
/** \page XTest_key_strings XTest Key Strings

View File

@ -66,12 +66,12 @@ 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. Please note that while the opencv2 version is being documented, there is no actual difference in usage for opencv version 1.
* \author Bradlee Speice
* \date 6/21/2012
* \date 7/18/2012
*/
/** \mainpage Libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/11/2012
* \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.
@ -87,7 +87,7 @@ typedef struct {
/** \page libcvautomation
* \author Bradlee Speice <<a href="mailto:bspeice@uncc.edu">bspeice@uncc.edu</a>>
* \date 7/11/2012
* \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.
@ -103,7 +103,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/11/2012
* \date 7/18/2012
* \section audience Audience
* <ul>
* <li>This document was written for people with some intermediate knowledge of BASH.