source: OpenWorkouts-current/.boring @ 57dcceb

currentfeature/docs
Last change on this file since 57dcceb was d1c4782, checked in by borja <borja@…>, 5 years ago

Show a capture of the workout map, as an image, in the dashboard:

  • Added a view to render the tracking map of a workout full screen
  • Added a small shell script that uses chrome to grabs a screenshot of the full screen map view of a workout, then uses imagemagick convert to crop/resize it and finally saves it in a given location
  • Added a static/maps directory to store maps captures
  • Added static/maps to the boring/ignore file
  • Added a tool in utilities.py to call the shell script that captures the screenshot of the map
  • Added a method to the Workout model, that returns the static path to the workout map capture (valid to use with request.static_url()). If there is no capture yet, call the tool to make one
  • Added code to dashboard.pt to show the capture of the map
  • Added a new parameter to te ow maps js code, allowing us to hide/show the zoom controls of the map when building a new one
  • Property mode set to 100644
File size: 2.7 KB
Line 
1# This file contains a list of extended regular expressions, one per
2# line. A file path matching any of these expressions will be filtered
3# out during `darcs add', or when the `--look-for-adds' flag is passed
4# to `darcs whatsnew' and `record'. The entries in ~/.darcs/boring (if
5# it exists) supplement those in this file.
6#
7# Blank lines, and lines beginning with an octothorpe (#) are ignored.
8# See regex(7) for a description of extended regular expressions.
9
10### compiler and interpreter intermediate files
11# haskell (ghc) interfaces
12\.hi$
13\.hi-boot$
14\.o-boot$
15# object files
16\.o$
17\.o\.cmd$
18# profiling haskell
19\.p_hi$
20\.p_o$
21# haskell program coverage resp. profiling info
22\.tix$
23\.prof$
24# fortran module files
25\.mod$
26# linux kernel
27\.ko\.cmd$
28\.mod\.c$
29(^|/)\.tmp_versions($|/)
30# *.ko files aren't boring by default because they might
31# be Korean translations rather than kernel modules
32# \.ko$
33# python, emacs, java byte code
34\.py[co]$
35\.elc$
36\.class$
37# objects and libraries; lo and la are libtool things
38\.(obj|a|exe|so|lo|la)$
39# compiled zsh configuration files
40\.zwc$
41# Common LISP output files for CLISP and CMUCL
42\.(fas|fasl|sparcf|x86f)$
43
44### build and packaging systems
45# cabal intermediates
46\.installed-pkg-config
47\.setup-config
48# standard cabal build dir, might not be boring for everybody
49# ^dist(/|$)
50# autotools
51(^|/)autom4te\.cache($|/)
52(^|/)config\.(log|status)$
53# microsoft web expression, visual studio metadata directories
54\_vti_cnf$
55\_vti_pvt$
56# gentoo tools
57\.revdep-rebuild.*
58# generated dependencies
59^\.depend$
60
61### version control systems
62# cvs
63(^|/)CVS($|/)
64\.cvsignore$
65# cvs, emacs locks
66^\.#
67# rcs
68(^|/)RCS($|/)
69,v$
70# subversion
71(^|/)\.svn($|/)
72# mercurial
73(^|/)\.hg($|/)
74# git
75(^|/)\.git($|/)
76# bzr
77\.bzr$
78# sccs
79(^|/)SCCS($|/)
80# darcs
81(^|/)_darcs($|/)
82(^|/)\.darcsrepo($|/)
83^\.darcs-temp-mail$
84-darcs-backup[[:digit:]]+$
85# gnu arch
86(^|/)(\+|,)
87(^|/)vssver\.scc$
88\.swp$
89(^|/)MT($|/)
90(^|/)\{arch\}($|/)
91(^|/).arch-ids($|/)
92# bitkeeper
93(^|/)BitKeeper($|/)
94(^|/)ChangeSet($|/)
95
96### miscellaneous
97# backup files
98~$
99\.bak$
100\.BAK$
101# patch originals and rejects
102\.orig$
103\.rej$
104# X server
105\..serverauth.*
106# image spam
107\#
108(^|/)Thumbs\.db$
109# vi, emacs tags
110(^|/)(tags|TAGS)$
111#(^|/)\.[^/]
112# core dumps
113(^|/|\.)core$
114# partial broken files (KIO copy operations)
115\.part$
116# waf files, see http://code.google.com/p/waf/
117(^|/)\.waf-[[:digit:].]+-[[:digit:]]+($|/)
118(^|/)\.lock-wscript$
119# mac os finder
120(^|/)\.DS_Store$
121# emacs saved sessions (desktops)
122(^|.*/)\.emacs\.desktop(\.lock)?$
123
124# Python cache
125(^|/)__pycache__$
126
127# pytest cache
128.pytest_cache
129
130# coverage cache
131.coverage
132
133# OpenWorkouts files
134var/db/Data.*
135var/db/blobs/*
136var/zeo/Data.*
137var/db/blobs/*
138ow.egg-info/*
139ow/static/components
140ow/static/maps
Note: See TracBrowser for help on using the repository browser.