Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meta-and-documentation/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Structuring the schema
Type "mysql -u root" to login to the mysql client
Next type "USE yourschemaname" to switch to your newly made schema, you should see
a message saying "Database changed" in your terminal window
Finally type "\.structure.sql" this will apply the needed structure to your schema
Finally type "\. structure.sql" this will apply the needed structure to your schema
in order for it to hold the printwikipedia database

Alternately, do it via a query in MySQLWorkbench
Expand Down
4 changes: 2 additions & 2 deletions meta-and-documentation/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--MAKE SURE RIGHT HERE TO PUT YOUR DATABASE NAME LIKE SO:
--use MYDBNAME;
-- MAKE SURE RIGHT HERE TO PUT YOUR DATABASE NAME LIKE SO:
-- use MYDBNAME;

--
-- Table structure for table `archive`
Expand Down
4 changes: 2 additions & 2 deletions src/info/bliki/wiki/filter/WikipediaParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.validator.EmailValidator;
import org.apache.commons.validator.routines.EmailValidator;

/**
* A Wikipedia syntax parser for the second pass in the parsing of a Wikipedia
Expand Down Expand Up @@ -1582,4 +1582,4 @@ public boolean isTemplate() {
return fRenderTemplate;
}

}
}