This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
added unicode_literals import at start of each file
version-14
Anand Doshi
13 years ago
parent
bfc56dcd09
commit
bab9f3c7ef
100 changed files
with
100 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
conf/conf.py
+1
-0
py/__init__.py
+1
-0
py/build/__init__.py
+1
-0
py/build/__main__.py
+1
-0
py/build/bundle.py
+1
-0
py/build/minify.py
+1
-0
py/build/project.py
+1
-0
py/core/__init__.py
+1
-0
py/core/doctype/__init__.py
+1
-0
py/core/doctype/comment/__init__.py
+1
-0
py/core/doctype/control_panel/__init__.py
+1
-0
py/core/doctype/control_panel/control_panel.py
+1
-0
py/core/doctype/custom_field/__init__.py
+1
-0
py/core/doctype/custom_field/custom_field.py
+1
-0
py/core/doctype/custom_script/__init__.py
+1
-0
py/core/doctype/custom_script/custom_script.py
+1
-0
py/core/doctype/customize_form/__init__.py
+1
-0
py/core/doctype/customize_form/customize_form.py
+1
-0
py/core/doctype/customize_form_field/__init__.py
+1
-0
py/core/doctype/default_home_page/__init__.py
+1
-0
py/core/doctype/defaultvalue/__init__.py
+1
-0
py/core/doctype/docfield/__init__.py
+1
-0
py/core/doctype/docperm/__init__.py
+1
-0
py/core/doctype/doctype/__init__.py
+1
-0
py/core/doctype/doctype/doctype.py
+1
-0
py/core/doctype/doctype_mapper/__init__.py
+1
-0
py/core/doctype/doctype_mapper/doctype_mapper.py
+1
-0
py/core/doctype/event/__init__.py
+1
-0
py/core/doctype/event_role/__init__.py
+1
-0
py/core/doctype/event_user/__init__.py
+1
-0
py/core/doctype/field_mapper_detail/__init__.py
+1
-0
py/core/doctype/file_data/__init__.py
+1
-0
py/core/doctype/file_data/file_data.py
+1
-0
py/core/doctype/letter_head/__init__.py
+1
-0
py/core/doctype/letter_head/letter_head.py
+1
-0
py/core/doctype/module_def/__init__.py
+1
-0
py/core/doctype/page/__init__.py
+1
-0
py/core/doctype/page/page.py
+1
-0
py/core/doctype/page_role/__init__.py
+1
-0
py/core/doctype/print_format/__init__.py
+1
-0
py/core/doctype/print_format/print_format.py
+1
-0
py/core/doctype/profile/__init__.py
+1
-0
py/core/doctype/profile/profile.py
+1
-0
py/core/doctype/property_setter/__init__.py
+1
-0
py/core/doctype/property_setter/property_setter.py
+1
-0
py/core/doctype/report/__init__.py
+1
-0
py/core/doctype/report/report.py
+1
-0
py/core/doctype/role/__init__.py
+1
-0
py/core/doctype/sandbox/__init__.py
+1
-0
py/core/doctype/search_criteria/__init__.py
+1
-0
py/core/doctype/search_criteria/search_criteria.py
+1
-0
py/core/doctype/system_console/__init__.py
+1
-0
py/core/doctype/system_console/system_console.py
+1
-0
py/core/doctype/table_mapper_detail/__init__.py
+1
-0
py/core/doctype/tag/__init__.py
+1
-0
py/core/doctype/todo/__init__.py
+1
-0
py/core/doctype/userrole/__init__.py
+1
-0
py/core/page/__init__.py
+1
-0
py/core/page/data_import_tool/__init__.py
+1
-0
py/core/page/data_import_tool/data_import_tool.py
+1
-0
py/core/page/login_page/__init__.py
+1
-0
py/webnotes/__init__.py
+1
-0
py/webnotes/auth.py
+1
-0
py/webnotes/boot.py
+1
-0
py/webnotes/cms/__init__.py
+1
-0
py/webnotes/cms/feed.py
+1
-0
py/webnotes/cms/make.py
+1
-0
py/webnotes/cms/sitemap.py
+1
-0
py/webnotes/db.py
+1
-0
py/webnotes/handler.py
+1
-0
py/webnotes/install_lib/__init__.py
+1
-0
py/webnotes/install_lib/install.py
+1
-0
py/webnotes/model/__init__.py
+1
-0
py/webnotes/model/code.py
+1
-0
py/webnotes/model/db_schema.py
+1
-0
py/webnotes/model/doc.py
+1
-0
py/webnotes/model/docfield.py
+1
-0
py/webnotes/model/doclist.py
+1
-0
py/webnotes/model/doctype.py
+1
-0
py/webnotes/model/import_docs.py
+1
-0
py/webnotes/model/meta.py
+1
-0
py/webnotes/model/rename_doc.py
+1
-0
py/webnotes/model/sync.py
+1
-0
py/webnotes/model/utils.py
+1
-0
py/webnotes/modules/__init__.py
+1
-0
py/webnotes/modules/diff.py
+1
-0
py/webnotes/modules/export_module.py
+1
-0
py/webnotes/modules/patch_handler.py
+1
-0
py/webnotes/modules/utils.py
+1
-0
py/webnotes/profile.py
+1
-0
py/webnotes/session_cache.py
+1
-0
py/webnotes/tests/__init__.py
+1
-0
py/webnotes/tests/modules.py
+1
-0
py/webnotes/tests/test_docfield.py
+1
-0
py/webnotes/tests/test_patch.py
+1
-0
py/webnotes/utils/__init__.py
+1
-0
py/webnotes/utils/archive.py
+1
-0
py/webnotes/utils/backups.py
+1
-0
py/webnotes/utils/cache.py
+1
-0
py/webnotes/utils/editdoctype.py
+ 1
- 0
conf/conf.py
View File
@@ -1,6 +1,7 @@
# app configuration
# database config
from __future__ import unicode_literals
db_name = 'yourdbname'
db_password = 'yourdbpassword'
+ 1
- 0
py/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/build/__init__.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
verbose = True
force_rebuild = False
no_minify = False
+ 1
- 0
py/build/__main__.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
if __name__=='__main__':
import sys, os
sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), '..'))
+ 1
- 0
py/build/bundle.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
from minify import JavascriptMinify
class Bundle:
+ 1
- 0
py/build/minify.py
View File
@@ -22,6 +22,7 @@
from __future__ import unicode_literals
import os, os.path, shutil
# This code is original from jsmin by Douglas Crockford, it was translated to
+ 1
- 0
py/build/project.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
verbose = False
import os
+ 1
- 0
py/core/__init__.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
install_docs = [
{'doctype':'Module Def', 'name': 'Core', 'module_name':'Core'},
+ 1
- 0
py/core/doctype/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/comment/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/control_panel/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/control_panel/control_panel.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes.utils import cint, flt
+ 1
- 0
py/core/doctype/custom_field/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/custom_field/custom_field.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes.utils import cint, cstr, flt, formatdate, now
+ 1
- 0
py/core/doctype/custom_script/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/custom_script/custom_script.py
View File
@@ -19,6 +19,7 @@
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
class DocType:
+ 1
- 0
py/core/doctype/customize_form/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/customize_form/customize_form.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Customize Form is a Single DocType used to mask the Property Setter
Thus providing a better UI from user perspective
+ 1
- 0
py/core/doctype/customize_form_field/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/default_home_page/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/defaultvalue/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/docfield/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/docperm/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/doctype/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/doctype/doctype.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes.utils import now, cint
+ 1
- 0
py/core/doctype/doctype_mapper/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/doctype_mapper/doctype_mapper.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes.utils import cint, cstr, default_fields, flt, formatdate, get_defaults, getdate, now, nowdate, replace_newlines, set_default
+ 1
- 0
py/core/doctype/event/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/event_role/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/event_user/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/field_mapper_detail/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/file_data/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/file_data/file_data.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
record of files
+ 1
- 0
py/core/doctype/letter_head/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/letter_head/letter_head.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes import msgprint
+ 1
- 0
py/core/doctype/module_def/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/page/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/page/page.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
class DocType:
+ 1
- 0
py/core/doctype/page_role/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/print_format/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/print_format/print_format.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
class DocType:
+ 1
- 0
py/core/doctype/profile/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/profile/profile.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes, json
from webnotes.utils import cint
+ 1
- 0
py/core/doctype/property_setter/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/property_setter/property_setter.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
class DocType:
+ 1
- 0
py/core/doctype/report/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/report/report.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
class DocType:
def __init__(self, doc, doclist):
self.doc, self.doclist = doc, doclist
+ 1
- 0
py/core/doctype/role/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/sandbox/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/search_criteria/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/search_criteria/search_criteria.py
View File
@@ -21,6 +21,7 @@
#
# Please edit this list and import only required elements
from __future__ import unicode_literals
import webnotes
from webnotes.utils import cint
+ 1
- 0
py/core/doctype/system_console/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/system_console/system_console.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
from webnotes.utils import cint, flt
+ 1
- 0
py/core/doctype/table_mapper_detail/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/tag/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/todo/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/doctype/userrole/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/page/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/page/data_import_tool/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/core/page/data_import_tool/data_import_tool.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import webnotes
@webnotes.whitelist()
+ 1
- 0
py/core/page/login_page/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/webnotes/__init__.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
globals attached to webnotes module
+ some utility functions that should probably be moved
+ 1
- 0
py/webnotes/auth.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
import webnotes.db
import webnotes.utils
+ 1
- 0
py/webnotes/boot.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
bootstrap client session
"""
+ 1
- 0
py/webnotes/cms/__init__.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
def get_home_page(user=None):
"""get home page for user"""
if not user:
+ 1
- 0
py/webnotes/cms/feed.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Generate RSS feed for blog
"""
+ 1
- 0
py/webnotes/cms/make.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
"""
make index, wn.js, wn.css pages
- rebuild all pages on change of website settings (toolbar)
+ 1
- 0
py/webnotes/cms/sitemap.py
View File
@@ -22,6 +22,7 @@
# to generate sitemaps
from __future__ import unicode_literals
frame_xml = """<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">%s
</urlset>"""
+ 1
- 0
py/webnotes/db.py
View File
@@ -23,6 +23,7 @@
# Database Module
# --------------------
from __future__ import unicode_literals
import MySQLdb
import webnotes
import conf
+ 1
- 0
py/webnotes/handler.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import sys, os
import webnotes
import webnotes.utils
+ 1
- 0
py/webnotes/install_lib/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/webnotes/install_lib/install.py
View File
@@ -23,6 +23,7 @@
# called from wnf.py
# lib/wnf.py --install [rootpassword] [dbname] [source]
from __future__ import unicode_literals
import os,sys
class Installer:
+ 1
- 0
py/webnotes/model/__init__.py
View File
@@ -21,6 +21,7 @@
#
# model __init__.py
from __future__ import unicode_literals
import webnotes
no_value_fields = ['Section Break', 'Column Break', 'HTML', 'Table', 'FlexTable', 'Button', 'Image', 'Graph']
+ 1
- 0
py/webnotes/model/code.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
This is where all the plug-in code is executed. The standard method for DocTypes is declaration of a
standardized `DocType` class that has the methods of any DocType. When an object is instantiated using the
+ 1
- 0
py/webnotes/model/db_schema.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Syncs a database table to the `DocType` (metadata)
+ 1
- 0
py/webnotes/model/doc.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Contains the Document class representing an object / record
"""
+ 1
- 0
py/webnotes/model/docfield.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""docfield utililtes"""
import webnotes
+ 1
- 0
py/webnotes/model/doclist.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Transactions are defined as collection of classes, a DocList represents collection of Document
objects for a transaction with main and children.
+ 1
- 0
py/webnotes/model/doctype.py
View File
@@ -24,6 +24,7 @@
# Patch: Remove DocFormat
# imports
from __future__ import unicode_literals
import webnotes
import webnotes.model
import webnotes.model.doc
+ 1
- 0
py/webnotes/model/import_docs.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
def import_docs(docs = []):
+ 1
- 0
py/webnotes/model/meta.py
View File
@@ -22,6 +22,7 @@
# metadata
from __future__ import unicode_literals
import webnotes
#=================================================================================
+ 1
- 0
py/webnotes/model/rename_doc.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import webnotes
def rename_doc(doctype, old, new, is_doctype=0, debug=0):
+ 1
- 0
py/webnotes/model/sync.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
"""
Sync's doctype and docfields from txt files to database
perms will get synced only if none exist
+ 1
- 0
py/webnotes/model/utils.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Model utilities, unclassified functions
"""
+ 1
- 0
py/webnotes/modules/__init__.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Utilities for using modules
"""
+ 1
- 0
py/webnotes/modules/diff.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""get diff bettween txt files and database records"""
import webnotes
+ 1
- 0
py/webnotes/modules/export_module.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Export files to modules
"""
+ 1
- 0
py/webnotes/modules/patch_handler.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Execute Patch Files
+ 1
- 0
py/webnotes/modules/utils.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
def listfolders(path, only_name=0):
"""
Returns the list of folders (with paths) in the given path,
+ 1
- 0
py/webnotes/profile.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
class Profile:
+ 1
- 0
py/webnotes/session_cache.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Boot session from cache or build
+ 1
- 0
py/webnotes/tests/__init__.py
View File
@@ -0,0 +1 @@
from __future__ import unicode_literals
+ 1
- 0
py/webnotes/tests/modules.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Tests for modules:
+ 1
- 0
py/webnotes/tests/test_docfield.py
View File
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import unittest, sys
sys.path.append('lib/py')
+ 1
- 0
py/webnotes/tests/test_patch.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
test with erpnext
"""
+ 1
- 0
py/webnotes/utils/__init__.py
View File
@@ -22,6 +22,7 @@
# util __init__.py
from __future__ import unicode_literals
import webnotes
user_time_zone = None
+ 1
- 0
py/webnotes/utils/archive.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
import webnotes
sql = webnotes.conn.sql
+ 1
- 0
py/webnotes/utils/backups.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
This module handles the On Demand Backup utility
+ 1
- 0
py/webnotes/utils/cache.py
View File
@@ -20,6 +20,7 @@
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
from __future__ import unicode_literals
"""
Simple Caching:
+ 1
- 0
py/webnotes/utils/editdoctype.py
View File
@@ -1,5 +1,6 @@
#!/usr/bin/python
from __future__ import unicode_literals
"""
Utilty to review DocType fields:
Some files were not shown because too many files changed in this diff
Write
Preview
Loading…
Cancel
Save