From c8a17ee264a269a59651936b34a960f4d40a9074 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Sun, 19 Jul 2009 18:32:04 +0530 Subject: JSON RPC Based new architecture and corresponding changes --- silpa/templates/__init__.py | 3 -- silpa/templates/base.py | 124 -------------------------------------------- 2 files changed, 127 deletions(-) delete mode 100644 silpa/templates/__init__.py delete mode 100644 silpa/templates/base.py (limited to 'silpa/templates') diff --git a/silpa/templates/__init__.py b/silpa/templates/__init__.py deleted file mode 100644 index 8a966c5..0000000 --- a/silpa/templates/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- -from base import * diff --git a/silpa/templates/base.py b/silpa/templates/base.py deleted file mode 100644 index 00d6586..0000000 --- a/silpa/templates/base.py +++ /dev/null @@ -1,124 +0,0 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- - -def getBaseHTML(): - content = """\ - - - - - -Silpa- The Indian Language Computing project - - - - - - -
- - - -
- - - -
- - -
-
-

Welcome to Silpa!

-

Silpa stands for Swathanthra Indian Language Processing Applications. Silpa is a single place in the web - where you can use the exising free(dom) software langauge processing applications easily. Silpa is in development and if you - are intersted in contributing just drop a mail to Santhosh

-
- $$SILPA_CONTENT$$ - - - - - - - - -
- -
- - - -""" - - return content - -if __name__ == '__main__': - print getBaseHTML() -- cgit