Wiki - Wikipedia-like online encyclopedia
Hello 👋 and welcome to my Harvard University CS50 Wiki Project. Feel free to roam around and checkout some of the cool features in this repository. In this project, our class was instructed to create a similiar clone website like Wikipedia named Wiki using Python's Django Framework.
For details on the Specification
for this project, Please take a look at the Specification section below.
🚀 Run Wiki Live Demo
This Wiki thing.. is a wikipedia-like
online encyclopedia that consists of numerous interesting encyclopedia entries on various different topic. Wikipedia is open-sourced allowing any volunteer to created and edited its entries. It's the 15 most popular website in the world .... oh yeah.. did I mention, Its also FREE.
In this assignment, our class had the task of creating a similiar website like Wikipedia and implement some of its original functionalities. One of the main feature we were asked to implement was the WikiText
syntax, a markup language used to create entries for Wikipedia. But instead of solely designing and building this website using HTML
, CSS
, and JavaScript
, we had to also create our on WikiText
syntax using Github's Markdown
along with creating Wiki entries for this website.
For full detail description of CS50 Wiki, visit: CS50 Wiki Full Description
Here are some of the tool used in this project.
- Python
- Django
- HTML
- CSS
- Javascript
- Bootstrap 4
-
Clone this Repo (Wiki branch)
git clone https://github.com/cbedroid/CS50-Wiki.git # Change directory into repository folder cd CS50-Wiki
-
Setup up virtual environment
# If virtualenv is already installed on your system, skip this step here
apt-get install virtualenv
# Setup virtual env
virtualenv venv
# Activate virtual environment
source venv/bin/activate
-
Install python requirements from
requirements.txt
pip install -r requirements.txt
-
Start Django server
# First makemigrations and migrate to create database for the Django server python manage.py makemigrations python manage.py migrate # run server python manage.py runserver # Finally open your internet browser to localhost port: 8000 localhost:8000 # copy this into your browser
For full detail description of CS50 Wiki, visit: CS50 Wiki Full Specification
Complete the implementation of your Wiki encyclopedia. You must fulfill the following requirements:
-
Entry Page: Visiting
/wiki/TITLE
, whereTITLE
is the title of an encyclopedia entry, should render a page that displays the contents of that encyclopedia entry.-
The view should get the content of the encyclopedia entry by calling the appropriate
util
function. -
If an entry is requested that does not exist, the user should be presented with an error page indicating that their requested page was not found.
-
If the entry does exist, the user should be presented with a page that displays the content of the entry. The title of the page should include the name of the entry.
-
-
Index Page: Update index.html such that, instead of merely listing the names of all pages in the encyclopedia, user can click on any entry name to be taken directly to that entry page.
-
Search: Allow the user to type a query into the search box in the sidebar to search for an encyclopedia entry.
-
If the query matches the name of an encyclopedia entry, the user should be redirected to that entry’s page.
-
If the query does not match the name of an encyclopedia entry, the user should instead be taken to a search results page that displays a list of all encyclopedia entries that have the query as a substring. For example, if the search query were
Py
, thenPython
should appear in the search results. -
Clicking on any of the entry names on the search results page should take the user to that entry’s page.
-
-
New Page: Clicking
“Create New Page”
in the sidebar should take the user to a page where they can create a new encyclopedia entry. Users should be able to enter a title for the page and, in atextarea
, should be able to enter the Markdown content for the page.- Users should be able to click a button to save their new page.
- When the page is saved, if an encyclopedia entry already exists with the provided title, the user should be presented with an error message.
- Otherwise, the encyclopedia entry should be saved to disk, and the user should be taken to the new entry’s page.
-
Edit Page: On each entry page, the user should be able to click a link to be taken to a page where the user can edit that entry’s Markdown content in a
textarea
.-
The
textarea
should be pre-populated with the existing Markdown content of the page. (i.e., the existing content should be the initialvalue
of thetextarea
). -
The user should be able to click a button to save the changes made to the entry.
-
Once the entry is saved, the user should be redirected back to that entry’s page. Random Page: Clicking “Random Page” in the sidebar should take user to a random encyclopedia entry.
-
-
Markdown to HTML Conversion: On each entry’s page, any Markdown content in the entry file should be converted to HTML before being displayed to the user. You may use the python-markdown2 package to perform this conversion, installable via pip3 install markdown2.
- Challenge for those more comfortable: If you’re feeling more comfortable, try implementing the Markdown to HTML conversion without using any external libraries, supporting headings, boldface text, unordered lists, links, and paragraphs. You may find using regular expressions in Python helpful.