diff --git a/examples/cva-input.c b/examples/cva-input.c index cc05aa2..44e480a 100644 --- a/examples/cva-input.c +++ b/examples/cva-input.c @@ -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 - * \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 - * \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. diff --git a/examples/cva-match.c b/examples/cva-match.c index 34bce9b..768c769 100644 --- a/examples/cva-match.c +++ b/examples/cva-match.c @@ -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 - * \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 - * \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. * diff --git a/include/libcvautomation/libcvautomation-opencv.h b/include/libcvautomation/libcvautomation-opencv.h index aff3123..96cba32 100644 --- a/include/libcvautomation/libcvautomation-opencv.h +++ b/include/libcvautomation/libcvautomation-opencv.h @@ -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 diff --git a/include/libcvautomation/libcvautomation-xlib.h b/include/libcvautomation/libcvautomation-xlib.h index 51fa7d1..925372a 100644 --- a/include/libcvautomation/libcvautomation-xlib.h +++ b/include/libcvautomation/libcvautomation-xlib.h @@ -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 ); diff --git a/include/libcvautomation/libcvautomation-xtest.h b/include/libcvautomation/libcvautomation-xtest.h index dca6d6f..8357551 100644 --- a/include/libcvautomation/libcvautomation-xtest.h +++ b/include/libcvautomation/libcvautomation-xtest.h @@ -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 diff --git a/include/libcvautomation/libcvautomation.h.in b/include/libcvautomation/libcvautomation.h.in index 59f363f..fff010c 100644 --- a/include/libcvautomation/libcvautomation.h.in +++ b/include/libcvautomation/libcvautomation.h.in @@ -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 <bspeice@uncc.edu> - * \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 Sikuli and Xpresser. 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 <bspeice@uncc.edu> - * \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 Sikuli and Xpresser. 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 <bspeice@uncc.edu> - * \date 7/18/2012 + * \date 7/23/2012 * \section audience Audience *
    *
  • This document was written for people with some intermediate knowledge of BASH.