From: Simon F. <sim...@us...> - 2005-03-17 02:47:47
|
Update of /cvsroot/jcrypt/JCrypt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32046 Modified Files: helpIndex.htm Added Files: helpMain.html helpInform.html helpTransform.html helpMach.html helpDev.html Log Message: Added help --- NEW FILE: helpInform.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <center><h1>JCrypt Help: Informational Plugins</h1></center> <p>Informational plugins exist to display information about the input. There are three official informational plugins: Frequency Count, N-Gram Finder, and Dot Product.</p> <p><strong>Frequency Count</strong>: This plugin counts the frequencies of the letters in your input</p> <p><strong>N-Gram Finder</strong>: Finds all the N-Grams and their positions</p> <p><strong>Dot Product</strong>: Tells you how much this Caesar shift cipher was shifted.</p> </body> </html> --- NEW FILE: helpTransform.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <h1 align="center">JCrypt Help: The Transformational Plugins</h1> <p align="left">The transformational plugins directly change the text in the input pane. There are three standard plugins: Whitespace Eliminator, Text Splitter, and Simple Base Number Encipherer.</p> <p align="left"><strong>Whitespace Eliminator</strong>: This plugin just removes all spaces and newlines from your input.</p> <p align="left"><strong>Text Splitter</strong>: This plugin splits the input into the number of pieces you choose.</p> <p align="left"><strong>Simple Base Number Encipherer</strong>: This plugin turns your text into a number in the base you provide, or turns a number in a specified base back into text. </p> </body> </html> --- NEW FILE: helpMain.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <div align="center"> <h1>JCrypt Help: The Main Screen</h1> <p align="left">The Main screen is divided into two areas. The areas are seperated by a bar that can be dragged to adjust the sizes of the areas. The top area can be typed into, and is called the <em>input pane</em>. The bottom area cannot be edited, and is called the <em>output pane</em>.</p> <p align="left">The Main screen also has a menu bar. The File menu allows you to load and save text files into the input pane. The Tools menu lets you do things to the text in the input pane, and the Help menu gets you here. </p> </div> </body> </html> --- NEW FILE: helpDev.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> To contact the developer, email me at sws...@gm.... </body> </html> Index: helpIndex.htm =================================================================== RCS file: /cvsroot/jcrypt/JCrypt/helpIndex.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** helpIndex.htm 14 Mar 2005 23:22:33 -0000 1.1 --- helpIndex.htm 17 Mar 2005 02:47:31 -0000 1.2 *************** *** 1,8 **** <HTML> <HEAD> ! <!-- <BASE HREF="file:///C:/eclipse/workspace/JCrypt/"> --> ! </HEAD <BODY> ! <H1><A HREF="helpIndex2.htm">HELLO</a></H1> </BODY> </HTML> \ No newline at end of file --- 1,16 ---- <HTML> <HEAD> ! <title>JCrypt Help</title> ! </HEAD> <BODY> ! ! <h1 align="center">Welcome to the JCrypt Help System</h1> ! <ul> ! <li><a href="helpMain.html">Need Help on the Main Interface?</a></li> ! <li><a href="helpTransform.html">The Transformational plugins?</a></li> ! <li><a href="helpInform.html">The Informational plugins?</a></li> ! <li><a href="helpMach.html">The Machine plugins?</a></li> ! <li><a href="helpDev.html">Or contacting the developer?</a></li> ! </ul> </BODY> </HTML> \ No newline at end of file --- NEW FILE: helpMach.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <h1 align="center">JCrypt Help: Machine Plugins</h1> <p align="left">Machine plugins simulate cipher machines. They output to the output pane. There are three standard machines: Enigma, Caesar, and Playfair</p> <p align="left"><strong>Enigma</strong>: Simulates the paper enigma</p> <p align="left"><strong>Caesar</strong>: Simulates Caesar's shifting cipher. Also helpful in breaking Vigenere.</p> <p align="left"><strong>Playfair</strong>: Simulates the playfair transposition cipher so you don't have to. </p> </body> </html> |