Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/bin/env python 

2# encoding: utf-8 

3""" 

4*Pass a dictionary of the default url fields and their default values to be added to locals() of the calling module* 

5 

6:Author: 

7 David Young 

8""" 

9import sys 

10import os 

11 

12def default_fields(): 

13 """ 

14 *default feilds* 

15 

16 **Return** 

17 

18 - ``fieldDict`` -- a dictionary of { fieldName, defaultValue } 

19  

20 """ 

21 fieldDict = { 

22 "sortBy": False, 

23 "sortDesc": False, 

24 "pageName": False, 

25 "pageId": False, 

26 "tagName": False, 

27 "settingsFile": 1 

28 } 

29 return fieldDict