home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / oss / cvs-2004 / bahasa / web / admin.php,v next >
Text File  |  2003-10-20  |  17KB  |  963 lines

  1. head    1.14;
  2. access;
  3. symbols
  4.     Initial:1.1.1.1 bule:1.1.1;
  5. locks; strict;
  6. comment    @# @;
  7.  
  8.  
  9. 1.14
  10. date    2003.10.20.00.21.44;    author bule;    state Exp;
  11. branches;
  12. next    1.13;
  13.  
  14. 1.13
  15. date    2003.10.18.00.33.41;    author bule;    state Exp;
  16. branches;
  17. next    1.12;
  18.  
  19. 1.12
  20. date    2003.10.06.00.39.26;    author bule;    state Exp;
  21. branches;
  22. next    1.11;
  23.  
  24. 1.11
  25. date    2003.10.01.06.51.28;    author bule;    state Exp;
  26. branches;
  27. next    1.10;
  28.  
  29. 1.10
  30. date    2003.09.11.05.28.22;    author bule;    state Exp;
  31. branches;
  32. next    1.9;
  33.  
  34. 1.9
  35. date    2003.09.05.06.42.30;    author bule;    state Exp;
  36. branches;
  37. next    1.8;
  38.  
  39. 1.8
  40. date    2003.09.04.07.26.59;    author bule;    state Exp;
  41. branches;
  42. next    1.7;
  43.  
  44. 1.7
  45. date    2003.09.03.07.11.10;    author bule;    state Exp;
  46. branches;
  47. next    1.6;
  48.  
  49. 1.6
  50. date    2003.09.02.07.07.24;    author bule;    state Exp;
  51. branches;
  52. next    1.5;
  53.  
  54. 1.5
  55. date    2003.08.31.18.48.47;    author bule;    state Exp;
  56. branches;
  57. next    1.4;
  58.  
  59. 1.4
  60. date    2003.08.30.00.33.38;    author bule;    state Exp;
  61. branches;
  62. next    1.3;
  63.  
  64. 1.3
  65. date    2003.08.28.20.04.48;    author bule;    state Exp;
  66. branches;
  67. next    1.2;
  68.  
  69. 1.2
  70. date    2003.08.19.06.42.07;    author bule;    state Exp;
  71. branches;
  72. next    1.1;
  73.  
  74. 1.1
  75. date    2003.08.12.19.18.23;    author bule;    state Exp;
  76. branches
  77.     1.1.1.1;
  78. next    ;
  79.  
  80. 1.1.1.1
  81. date    2003.08.12.19.18.23;    author bule;    state Exp;
  82. branches;
  83. next    ;
  84.  
  85.  
  86. desc
  87. @@
  88.  
  89.  
  90. 1.14
  91. log
  92. @*** empty log message ***
  93. @
  94. text
  95. @<?
  96. session_start();
  97. require_once("../php/Indonesia.php");
  98. require_once("../php/Web.php");
  99. //////////////////////////////////////////////////////////////////////////////
  100. //////////////////////////////////////////////////////////////////////////////
  101. // Project Name: Bahasa Indonesia Dictionary
  102. // Directory:    bahasa/web
  103. // File Name:    admin.php
  104. // Author(s):    John L. Whiteman
  105. // Created:      June 23, 2003  
  106. // Modified:     October 19, 2003
  107. // Description:  The purpose of this restricted access PHP web client 
  108. //               page is to provide an interface to various
  109. //               administrative features for this project.
  110. // 
  111. // Copyright (c) 2003 John L. Whiteman
  112. //
  113. // Permission is herby granted, free of charge, to any person obtaining a 
  114. // copy of this software, data, and associated documentation files 
  115. // (the "Software"), to deal in the Software without restriction, 
  116. // including without limitation the rights to use, copy, modify, merge, 
  117. // publish, distribute, sublicense, and/or sell copies of Software, and to
  118. // permit persons to whom the Software is furnished to do so, subject to 
  119. // the following conditions:
  120. //
  121. // The above copyright notice and this permission notice shall be 
  122. // included in all copies or substantial portions of the Software.
  123. //
  124. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  125. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
  126. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  127. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR 
  128. // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHERE IN AN ACTION OF CONTRACT,
  129. // TORT OR OTHERWISE, ARISING IN THE SOFTWARE.  
  130. //////////////////////////////////////////////////////////////////////////////
  131. //////////////////////////////////////////////////////////////////////////////
  132. $web = new Web();
  133.  
  134. if ((!$_SESSION['ADMIN']) && (!$_SESSION['DB_ADMIN'])) {
  135.  
  136.     $web->redirect("login.php");
  137.  
  138.     exit;
  139. }
  140.  
  141. foreach($_SESSION as $name => $value) {
  142.  
  143.     if (preg_match("/NODUP/", $name)) {
  144.  
  145.         unset($_SESSION[$name]);
  146.     }
  147. }
  148.  
  149. $indonesia = new Indonesia();
  150.  
  151. $status = $indonesia->get_dictionary_status();
  152.  
  153. ?>
  154. <html>
  155. <head>
  156. <title>Bahasa Indonesia Dictionary: Administration</title>
  157.  
  158. <link href="bahasa.css" rel="stylesheet" type="text/css">
  159.  
  160. </head>
  161. <body>
  162. <?
  163. $web->show_logo("Administration");
  164. ?>
  165. <a href="search.php">Search Dictionary</a>
  166. <?
  167.  
  168.     print <<<EOFSA
  169. <h4>Dictionary Status:</h4>
  170. <table cellpadding="1" cellspacing="1" border="0">
  171. <tr>
  172. <td>Code:</td>
  173. <td>$status[status]</td>
  174. </tr><tr>
  175. <td>Description:</td>
  176. <td>$status[description]</td>
  177. </tr><tr>
  178. <td>Error:</td>
  179. <td>$status[error]</td>
  180. </tr></table>
  181. EOFSA;
  182.  
  183. if (($_SESSION['DB_ADMIN']) && ($status["status"] == 1)) {
  184.  
  185.     print <<<EOFSB
  186. <h4>Oophs!</h4>
  187. <pre>
  188. Cannot connect to the database server!
  189.  
  190. Here's a few suggestions:
  191. <ul>
  192. <li>Make sure the MYSQL server is running. 
  193.  
  194. <li>Make sure you created a database for the dictionary.
  195.  
  196. <li>Make sure you granted correct permissions:
  197. </ul>
  198.  
  199. Here is a MYSQL examples for setting permissions:
  200.  
  201. GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP ON 
  202. <i>database name</i>.* TO <i>database user</i>@@<i>database hostname</i>
  203. IDENTIFIED BY '<i>database user password</i>';
  204.  
  205. Make sure the <i>install directory</i>/php/Dictionary.pm class file 
  206. contains the correct database hostname, database name, database user, and 
  207. database user password.  These values can be found in the 
  208. class constructor, function Dictionary(), near the top 
  209. of the page as:
  210.  
  211. \$this->configuration["DB_HOST"] = 
  212. "Enter database server name or ip";
  213.  
  214. \$this->configuration["DB_NAME"] = 
  215. "Enter database name";
  216.  
  217. \$this->configuration["DB_PASSWORD"] = 
  218. "Enter database user's password";
  219.  
  220. \$this->configuration["DB_USER"] = 
  221. "Enter database user name";
  222.  
  223. \$this->configuration["INSTALLATION_DIRECTORY"] = 
  224. "Enter project's installation directory";
  225.  
  226. </pre>
  227.  
  228. EOFSB;
  229.  
  230. } else if (($_SESSION['DB_ADMIN']) || ($status["status"] == 2)) {
  231.  
  232.     print <<<EOFSC
  233.  
  234. <table cellpadding="3" cellspacing="3" border="0">
  235. <tr>
  236. <td>
  237. <form action="logout.php" method="post">
  238. <input type="submit" value="Logout!"> 
  239. </form>
  240. </td>
  241. </tr>
  242. </table>
  243.  
  244. <h4>Administration</h4>
  245. <table cellpadding="1" cellspacing="1" border="0">
  246. <tr>
  247.  
  248. <td>
  249. <form action="dictionary.php" method="post">
  250. <input type="submit" value="Create Dictionary">
  251. <input type="hidden" name="create" value="1">
  252. </form>
  253. </td>
  254.  
  255. </tr>
  256. </table>
  257. EOFSC;
  258.  
  259. } else {
  260.  
  261.     print <<<EOFSD
  262. <br>
  263. <form action="logout.php" method="post">
  264. <input type="submit" value="Logout!"> 
  265. </form>
  266.  
  267. <hr>
  268. <h4>Dictionary Data Operations</h4>
  269. <table cellpadding="1" cellspacing="1" border="0">
  270. <tr>
  271.  
  272. <td>
  273. <form action="editor.php" method="post">
  274. <input type="submit" value="Search"> 
  275. </form>
  276. </td>
  277.  
  278. <td>
  279. <form action="insert.php" method="post">
  280. <input type="submit" value="Insert">
  281. </form>
  282. </td>
  283.  
  284. <td>
  285. <form action="update.php" method="post">
  286. <input type="submit" value="Update">
  287. </form>
  288. </td>
  289.  
  290. <td>
  291. <form action="delete.php" method="post">
  292. <input type="submit" value="Delete"> 
  293. </form>
  294. </td>
  295.  
  296. <td>
  297. <form action="misses.php" method="post">
  298. <input type="submit" value="Missed Searches">
  299. </form>
  300. </td>
  301.  
  302. <td>
  303. <form action="requests.php" method="post">
  304. <input type="submit" value="Requested Entries">
  305. </form>
  306. </td>
  307.  
  308. </tr>
  309. </table>
  310.  
  311. <hr>
  312.  
  313. <h4>Other Data Operations</h4>
  314. <table cellpadding="1" cellspacing="1" border="0">
  315. <tr>
  316.  
  317. <td>
  318. <form action="pos.php" method="post">
  319. <input type="submit" value="Parts of Speech">
  320. </form>
  321. </td>
  322.  
  323. <td>
  324. <form action="pronunciations.php" method="post">
  325. <input type="submit" value="Pronunciations">
  326. </form>
  327. </td>
  328.  
  329. <td>
  330. <form action="backup.php" method="post">
  331. <input type="submit" value="Backup Tables"> 
  332. </form>
  333. </td>
  334.  
  335. </tr>
  336. </table>
  337. <hr>
  338.  
  339. <h4>Statistics:</h4>
  340. <table cellpadding="1" cellspacing="1" border="0">
  341. <tr>
  342.  
  343. <td>
  344. <form action="statistics.php" method="post">
  345. <input type="submit" value="Database"> 
  346. <input type="hidden" name="database" value="1">
  347. </form>
  348. </td>
  349.  
  350. <td>
  351. <form action="statistics.php" method="post">
  352. <input type="submit" value="Dictionary"> 
  353. <input type="hidden" name="dictionary" value="1">
  354. </form>
  355. </td>
  356.  
  357. <td>
  358. <form action="statistics.php" method="post">
  359. <input type="submit" value="PHP"> 
  360. <input type="hidden" name="php" value="1">
  361. </form>
  362. </td>
  363.  
  364. <td>
  365. <form action="statistics.php" method="post">
  366. <input type="submit" value="Searches"> 
  367. <input type="hidden" name="searches" value="1">
  368. </form>
  369. </td>
  370.  
  371. <td>
  372. <form action="statistics.php" method="post">
  373. <input type="submit" value="Visitors"> 
  374. <input type="hidden" name="visitors" value="1">
  375. </form>
  376. </td>
  377.  
  378. </tr>
  379. </table>
  380. <hr>
  381.  
  382. <h4>Database Table Operations</h4>
  383. <table cellpadding="1" cellspacing="1" border="0">
  384. <tr>
  385.  
  386. <td>
  387. <form action="dictionary.php" method="post">
  388. <input type="submit" value="Destroy"> 
  389. <input type="hidden" name="destroy" value="1">
  390. </form>
  391. </td>
  392.  
  393. <td>
  394. <form action="dictionary.php" method="post">
  395. <input type="submit" value="Recreate">
  396. <input type="hidden" name="recreate" value="1">
  397. </form>
  398. </td>
  399.  
  400. </tr>
  401. </table>
  402. <hr>
  403.  
  404. <h4>SQL File Operations</h4>
  405. <table cellpadding="1" cellspacing="1" border="0">
  406. <tr>
  407.  
  408. <td>
  409. <form action="download.php" method="post">
  410. <input type="submit" value="Download"> 
  411. </form>
  412. </td>
  413.  
  414. <td>
  415. <form action="upload.php" method="post">
  416. <input type="submit" value="Upload"> 
  417. </form>
  418. </td>
  419.  
  420. </tr>
  421. </table>
  422. <hr>
  423.  
  424. <h4>Administration</h4>
  425. <table cellpadding="1" cellspacing="1" border="0">
  426. <tr>
  427.  
  428. <td>
  429. <form action="admins.php" method="post">
  430. <input type="submit" value="Administrators"> 
  431. </form>
  432. </td>
  433.  
  434. <td>
  435. <form action="cpwd.php" method="post">
  436. <input type="submit" value="Change Password"> 
  437. </form>
  438. </td>
  439.  
  440. <td>
  441. <form action="online.php" method="post">
  442. <input type="submit" value="Online/Offline"> 
  443. </form>
  444. </td>
  445.  
  446. <td>
  447. <form action="sql.php" method="post">
  448. <input type="submit" value="SQL"> 
  449. </form>
  450. </td>
  451.  
  452. <td>
  453. <form action="tasks.php" method="post">
  454. <input type="submit" value="Tasks"> 
  455. </form>
  456. </td>
  457.  
  458. </tr>
  459. </table>
  460. <hr>
  461.  
  462. EOFSD;
  463. }
  464. ?>
  465. </body>
  466. </html>
  467. @
  468.  
  469.  
  470. 1.13
  471. log
  472. @*** empty log message ***
  473. @
  474. text
  475. @d12 1
  476. a12 1
  477. // Modified:     October 17, 2003
  478. d63 3
  479. @
  480.  
  481.  
  482. 1.12
  483. log
  484. @*** empty log message ***
  485. @
  486. text
  487. @d12 1
  488. a12 1
  489. // Modified:     October 05, 2003
  490. d62 1
  491. a62 3
  492. <title>
  493. Bahasa Indonesia Dictionary: Administration 
  494. </title>
  495. @
  496.  
  497.  
  498. 1.11
  499. log
  500. @*** empty log message ***
  501. @
  502. text
  503. @d12 1
  504. a12 1
  505. // Modified:     September 30, 2003
  506. d67 3
  507. a69 1
  508. <h2>Bahasa Indonesia Dictionary: Administration</h2>
  509. @
  510.  
  511.  
  512. 1.10
  513. log
  514. @*** empty log message ***
  515. @
  516. text
  517. @d12 1
  518. a12 1
  519. // Modified:     September 05, 2003
  520. d40 1
  521. a40 3
  522. if (
  523. (!session_is_registered("ADMIN")) &&
  524. (!session_is_registered("DB_ADMIN"))) {
  525. d51 1
  526. a51 1
  527.         session_unregister("$name");
  528. d86 1
  529. a86 3
  530. if ( 
  531. (session_is_registered("DB_ADMIN")) && 
  532. ($status["status"] == 1)) {
  533. d133 1
  534. a133 3
  535. } else if (
  536. (session_is_registered("DB_ADMIN")) || 
  537. ($status["status"] == 2)) {
  538. @
  539.  
  540.  
  541. 1.9
  542. log
  543. @*** empty log message ***
  544. @
  545. text
  546. @d12 1
  547. a12 1
  548. // Modified:     September 04, 2003
  549. d70 1
  550. a70 1
  551. <a href="search.php">Search</a>
  552. d234 1
  553. a234 1
  554. <input type="submit" value="Pronunciation">
  555. @
  556.  
  557.  
  558. 1.8
  559. log
  560. @*** empty log message ***
  561. @
  562. text
  563. @d12 1
  564. a12 1
  565. // Modified:     September 03, 2003
  566. d229 6
  567. @
  568.  
  569.  
  570. 1.7
  571. log
  572. @*** empty log message ***
  573. @
  574. text
  575. @d12 1
  576. a12 1
  577. // Modified:     September 02, 2003
  578. d49 1
  579. a49 1
  580. //WE CAN PUT THIS IN A LOOP AND LOOK FOR NODUP_
  581. d51 1
  582. a51 1
  583. if (session_is_registered("NODUP_ADMINS")) {
  584. d53 2
  585. a54 76
  586.     session_unregister("NODUP_ADMINS");
  587. }
  588.  
  589. if (session_is_registered("NODUP_DELETES")) {
  590.  
  591.     session_unregister("NODUP_DELETES");
  592. }
  593.  
  594. if (session_is_registered("NODUP_DELETE_MISS")) {
  595.  
  596.     session_unregister("NODUP_DELETE_MISS");
  597. }
  598.  
  599. if (session_is_registered("NODUP_MISSES")) {
  600.  
  601.     session_unregister("NODUP_MISSES");
  602. }
  603.  
  604. if (session_is_registered("NODUP_INSERT_ENTRY")) {
  605.  
  606.     session_unregister("NODUP_INSERT_ENTRY");
  607. }
  608.  
  609. if (session_is_registered("NODUP_OFFLINE_STATUS")) {
  610.  
  611.     session_unregister("NODUP_OFFLINE_STATUS");
  612. }
  613.  
  614. if (session_is_registered("NODUP_POS_ENTRY")) {
  615.  
  616.     session_unregister("NODUP_POS_ENTRY");
  617. }
  618.  
  619. if (session_is_registered("NODUP_PURGE_DATA")) {
  620.  
  621.     session_unregister("NODUP_PURGE_DATA");
  622. }
  623.  
  624. if (session_is_registered("NODUP_REQUEST_ENTRY")) {
  625.  
  626.     session_unregister("NODUP_REQUEST_ENTRY");
  627. }
  628.  
  629. if (session_is_registered("NODUP_DELETE_REQUEST")) {
  630.  
  631.     session_unregister("NODUP_DELETE_REQUEST");
  632. }
  633.  
  634. if (session_is_registered("NODUP_UPDATES")) {
  635.  
  636.     session_unregister("NODUP_UPDATES");
  637. }
  638.  
  639. if (session_is_registered("NODUP_BACKUP_TABLE")) {
  640.  
  641.     session_unregister("NODUP_BACKUP_TABLE");
  642. }
  643.  
  644. if (session_is_registered("NODUP_DICTIONARY")) {
  645.  
  646.     session_unregister("NODUP_DICTIONARY");
  647. }
  648.  
  649. if (session_is_registered("NODUP_CHANGE_PASSWORD")) {
  650.  
  651.     session_unregister("NODUP_CHANGE_PASSWORD");
  652. }
  653.  
  654. if (session_is_registered("NODUP_SEND_EMAIL")) {
  655.  
  656.     session_unregister("NODUP_SEND_EMAIL");
  657. }
  658.  
  659. if (session_is_registered("NODUP_UPLOAD")) {
  660.  
  661.     session_unregister("NODUP_UPLOAD");
  662. d234 1
  663. a234 1
  664. <input type="submit" value="Backup Database"> 
  665. a241 39
  666. <h4>Administration</h4>
  667. <table cellpadding="1" cellspacing="1" border="0">
  668. <tr>
  669.  
  670. <td>
  671. <form action="admins.php" method="post">
  672. <input type="submit" value="Administrators"> 
  673. </form>
  674. </td>
  675.  
  676. <td>
  677. <form action="cpwd.php" method="post">
  678. <input type="submit" value="Change Password"> 
  679. </form>
  680. </td>
  681.  
  682. <td>
  683. <form action="online.php" method="post">
  684. <input type="submit" value="Online/Offline"> 
  685. </form>
  686. </td>
  687.  
  688. <td>
  689. <form action="sql.php" method="post">
  690. <input type="submit" value="SQL"> 
  691. </form>
  692. </td>
  693.  
  694. <td>
  695. <form action="tasks.php" method="post">
  696. <input type="submit" value="Tasks"> 
  697. </form>
  698. </td>
  699.  
  700. </tr>
  701. </table>
  702.  
  703. <hr>
  704.  
  705. d326 39
  706. @
  707.  
  708.  
  709. 1.6
  710. log
  711. @*** empty log message ***
  712. @
  713. text
  714. @d12 1
  715. a12 1
  716. // Modified:     September 01, 2003
  717. d49 2
  718. d101 1
  719. a101 1
  720. if (session_is_registered("NODUP_UPDATE_ENTRY")) {
  721. d103 1
  722. a103 1
  723.     session_unregister("NODUP_UPDATE_ENTRY");
  724. d192 5
  725. a196 1
  726. \$this->configuration["DB_HOST"] = "database hostname";
  727. d198 2
  728. a199 1
  729. \$this->configuration["DB_NAME"] = "database name";
  730. d201 2
  731. a202 1
  732. \$this->configuration["DB_USER"] = "database user";
  733. d204 2
  734. a205 1
  735. \$this->configuration["DB_PASSWORD"] = "database user's password";
  736. d250 2
  737. a251 1
  738. <h4>Administration</h4>
  739. d256 8
  740. a263 2
  741. <form action="admins.php" method="post">
  742. <input type="submit" value="Administrators"> 
  743. d268 2
  744. a269 2
  745. <form action="cpwd.php" method="post">
  746. <input type="submit" value="Change Password"> 
  747. d274 2
  748. a275 2
  749. <form action="online.php" method="post">
  750. <input type="submit" value="Online/Offline"> 
  751. d280 2
  752. a281 2
  753. <form action="sql.php" method="post">
  754. <input type="submit" value="SQL"> 
  755. d286 2
  756. a287 2
  757. <form action="tasks.php" method="post">
  758. <input type="submit" value="Tasks"> 
  759. d296 1
  760. a296 1
  761. <h4>Statistics:</h4>
  762. d301 2
  763. a302 3
  764. <form action="statistics.php" method="post">
  765. <input type="submit" value="Database"> 
  766. <input type="hidden" name="database" value="1">
  767. d307 2
  768. a308 3
  769. <form action="statistics.php" method="post">
  770. <input type="submit" value="Dictionary"> 
  771. <input type="hidden" name="dictionary" value="1">
  772. d312 8
  773. d321 2
  774. a322 3
  775. <form action="statistics.php" method="post">
  776. <input type="submit" value="PHP"> 
  777. <input type="hidden" name="php" value="1">
  778. d327 2
  779. a328 3
  780. <form action="statistics.php" method="post">
  781. <input type="submit" value="Searches"> 
  782. <input type="hidden" name="searches" value="1">
  783. d333 2
  784. a334 3
  785. <form action="statistics.php" method="post">
  786. <input type="submit" value="Visitors"> 
  787. <input type="hidden" name="visitors" value="1">
  788. a337 8
  789. </tr>
  790. </table>
  791.  
  792. <hr>
  793. <h4>Dictionary Data Operations</h4>
  794. <table cellpadding="1" cellspacing="1" border="0">
  795. <tr>
  796.  
  797. d339 2
  798. a340 2
  799. <form action="editor.php" method="post">
  800. <input type="submit" value="Dictionary Editor"> 
  801. d345 2
  802. a346 2
  803. <form action="insert.php" method="post">
  804. <input type="submit" value="Insert">
  805. d350 9
  806. d360 3
  807. a362 2
  808. <form action="update.php" method="post">
  809. <input type="submit" value="Update">
  810. d367 3
  811. a369 2
  812. <form action="delete.php" method="post">
  813. <input type="submit" value="Delete"> 
  814. d374 3
  815. a376 2
  816. <form action="misses.php" method="post">
  817. <input type="submit" value="Missed Searches">
  818. d381 3
  819. a383 2
  820. <form action="requests.php" method="post">
  821. <input type="submit" value="Requested Entries">
  822. a386 8
  823. </tr>
  824. </table>
  825. <hr>
  826.  
  827. <h4>Other Data Operations</h4>
  828. <table cellpadding="1" cellspacing="1" border="0">
  829. <tr>
  830.  
  831. d388 3
  832. a390 2
  833. <form action="pos.php" method="post">
  834. <input type="submit" value="Parts of Speech">
  835. a393 1
  836.  
  837. a397 1
  838.  
  839. a400 6
  840.  
  841. <td>
  842. <form action="backup.php" method="post">
  843. <input type="submit" value="Backup"> 
  844. </form>
  845. </td>
  846. @
  847.  
  848.  
  849. 1.5
  850. log
  851. @*** empty log message ***
  852. @
  853. text
  854. @d12 1
  855. a12 1
  856. // Modified:     August 31, 2003
  857. d54 1
  858. a54 1
  859. if (session_is_registered("NODUP_DELETE_ENTRY")) {
  860. d56 1
  861. a56 1
  862.     session_unregister("NODUP_DELETE_ENTRY");
  863. d326 1
  864. d328 2
  865. a329 2
  866. <form action="delete.php" method="post">
  867. <input type="submit" value="Delete"> 
  868. d340 8
  869. a347 2
  870. <form action="misses.php" method="post">
  871. <input type="submit" value="Missed Searches">
  872. d352 2
  873. a353 2
  874. <form action="requests.php" method="post">
  875. <input type="submit" value="Client Requests">
  876. d358 2
  877. a359 2
  878. <form action="update.php" method="post">
  879. <input type="submit" value="Update">
  880. @
  881.  
  882.  
  883. 1.4
  884. log
  885. @*** empty log message ***
  886. @
  887. text
  888. @d12 1
  889. a12 1
  890. // Modified:     August 29, 2003
  891. d323 1
  892. a323 1
  893. <h4>Data Operations</h4>
  894. d340 1
  895. a340 1
  896. <input type="submit" value="Missed Search Entries">
  897. d345 2
  898. a346 2
  899. <form action="pos.php" method="post">
  900. <input type="submit" value="Parts of Speech">
  901. d351 2
  902. a352 2
  903. <form action="requests.php" method="post">
  904. <input type="submit" value="Requests">
  905. d356 8
  906. d365 2
  907. a366 2
  908. <form action="update.php" method="post">
  909. <input type="submit" value="Update">
  910. d370 1
  911. d374 1
  912. @
  913.  
  914.  
  915. 1.3
  916. log
  917. @*** empty log message ***
  918. @
  919. text
  920. @d12 1
  921. a12 1
  922. // Modified:     August 28, 2003
  923. d208 1
  924. a208 1
  925. <table cellpadding="3" cellspacing="3" border="1">
  926. @
  927.  
  928.  
  929. 1.2
  930. log
  931. @*** empty log message ***
  932. @
  933. text
  934. @d12 1
  935. a12 1
  936. // Modified:     August 18, 2003
  937. d64 5
  938. d340 1
  939. a340 1
  940. <input type="submit" value="Misses">
  941. @
  942.  
  943.  
  944. 1.1
  945. log
  946. @Initial revision
  947. @
  948. text
  949. @d5 33
  950. a37 1
  951.  
  952. a412 1
  953.  
  954. @
  955.  
  956.  
  957. 1.1.1.1
  958. log
  959. @Bahasa Indonesia Dictionary
  960. @
  961. text
  962. @@
  963.