Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Unified Diff: third_party/Python-Markdown/README.chromium

Issue 1356203004: Check in a simple pure-python based Markdown previewer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add
Patch Set: fix license file Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/Python-Markdown/OWNERS ('k') | third_party/Python-Markdown/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/Python-Markdown/README.chromium
diff --git a/third_party/Python-Markdown/README.chromium b/third_party/Python-Markdown/README.chromium
new file mode 100644
index 0000000000000000000000000000000000000000..d3b165342aab130badf2ba10dcbd2fb974630180
--- /dev/null
+++ b/third_party/Python-Markdown/README.chromium
@@ -0,0 +1,34 @@
+Name: Python-Markdown
+URL: https://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.2.tar.gz#md5=256d19afcc564dc4ce4c229bb762f7ae
+Version: 2.6.2
+Revision: None
+Security Critical: no
+License: BSD
+License File: NOT_SHIPPED
+
+Description:
+
+Python-Markdown is a pure Python parser for Markdown.
+
+//tools/md_browser uses it to provide a local previewer for our
+Markdown-based documentation.
+
+This code is not considered security critical since it is only used by
+developer utilities. This should never be linked into chrome or any production
+code.
+
+To update this, do something roughly along the lines of:
+
+ cd ..
+ wget $URL # A newer version of the above URL
+ tar xvzf Markdown-$VERSION.tar.gz
+ cd Markdown-$VERSION
+ rm -fr bin docs INSTALL.md makefile MANIFEST PKG-INFO \
+ run-tests.py setup.py tests tox.ini
+ cp ../Python-Markdown/README.chromium .
+
+ # update the version numbers in README.chromium
+
+ cd ..
+ rm -fr Python-Markdown
+ mv Markdown-$VERSION Python-Markdown
« no previous file with comments | « third_party/Python-Markdown/OWNERS ('k') | third_party/Python-Markdown/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698