Find a file
Henrik Levkowetz d2c6444ce4 Added some commits ready for merge.
- Legacy-Id: 16127
2019-04-02 15:28:37 +00:00
bin Undid previous merge 2019-03-28 11:05:25 +00:00
bootstrap Update bootstrap to 3.3.7. Commit ready for merge. 2017-03-25 14:52:05 +00:00
buildbot/masters/datatracker Buildbot tweaks. 2017-12-30 09:18:23 +00:00
data Updated docker-related files based on 6.17.0 2016-03-22 21:10:33 +00:00
docker Added creation of a group with the user's GID inside the docker container, if it's missing. 2019-03-24 15:27:15 +00:00
env No code change. Whitespace fix and svn property change. 2017-10-13 10:46:52 +00:00
etc Removed the crontab, because of too many drawbacks. 2016-06-17 13:07:52 +00:00
form_utils Fix "RemovedInDjango19Warning: The django.forms.util module has been renamed. 2016-02-03 13:33:37 +00:00
hooks Added tolerance for space changes after code changes at the end of a file. This is only a partial fix for space changes next to code changes in general. 2015-12-13 16:26:39 +00:00
ietf Merged in [16108] from fenton@bluepopcorn.net: 2019-03-28 14:38:22 +00:00
media Updated some svn:ignore lists. 2017-12-18 17:25:00 +00:00
notes Datatracker development notes. 2014-04-06 14:50:03 +00:00
patch Updated unicode comparison patch for django 1.11.18 2019-01-21 18:04:17 +00:00
static - Legacy-Id: 14646 2018-02-16 13:14:37 +00:00
test Add import of YouTube session videos using YouTube Data API. Fixes #2249. Commit ready for merge. 2017-06-01 18:36:46 +00:00
vzic Updated the zone information files used by the datatracker when generating iCalendar content. Added a README.datatracker file. 2016-08-31 14:09:06 +00:00
.bowerrc Added a .bowerrc pointing to the new bower registry location. 2018-09-30 14:09:44 +00:00
.editorconfig Merged in [10551] and [10553] from lars@netapp.com: 2015-12-15 19:12:46 +00:00
.eslintrc.js Add an ESLint config for use with datatracker javascript and apply it to 2015-12-10 09:02:58 +00:00
.gitignore added htmlcov to svn:ignore for the project root directory 2018-05-02 17:49:51 +00:00
.pylintrc Added a pylint rc-file, and fixed or silenced a number of issues found by pylint using the settings .pylintrc (which enable only error checking). 2016-09-08 14:48:59 +00:00
changelog Changelog entry for 6.94.1 2019-03-19 18:01:08 +00:00
changelog.py Only catch the specific exceptions routinely thrown by the underlying code when iterating through date formats in changelog.py. Don't mask unrelated exceptions. 2016-03-16 14:04:26 +00:00
control Merged from log:branch/2.00@2363: Current release branch head to trunk. 2010-07-21 12:48:05 +00:00
debug.py Enhanced debug.py: made the mark() function indicate file and line number it was called from. Added if debug: conditions around some other function actions. 2018-04-05 13:14:09 +00:00
hold-for-merge Merged in [15595] from rjsparks@nostrum.com: 2018-10-19 12:54:58 +00:00
INSTALL Updated the installation instructions based on feedback from mlarson@amsl.com. 2017-01-26 19:19:24 +00:00
LICENSE Updated the LICENSE file to used the wording from https://opensource.org/licenses/BSD-3-Clause 2018-02-09 16:31:03 +00:00
PLAN Updated plan. 2019-03-04 20:20:45 +00:00
README-CDN.rst Updated the README-CDN file. 2015-08-04 12:49:32 +00:00
README.datatracker Fix typo. Commit ready for merge. 2018-04-05 11:49:56 +00:00
ready-for-merge Added some commits ready for merge. 2019-04-02 15:28:37 +00:00
release-coverage.json.gz Merged in [16095] from peter@akayla.com: 2019-03-28 12:04:54 +00:00
requirements.txt Added 9 new group features, and changed list-like char fields to json fields, to get better support for using the values as lists. Modified code to use the group features instead of explicit lists of group types in many places in the code. 2019-01-22 18:11:46 +00:00
tzparse.py Made tzparse pyflakes-clean. 2014-03-16 08:08:25 +00:00

The "new" datatracker uses Twitter Bootstrap for the UI.

Get familiar with http://getbootstrap.com/getting-started/ and use those
UI elements instead of cooking up your own.

We have some site-wide customization applied to the bootstrap version we keep
in bootstrap/ (from which the minified dist version is built); it modifies
some stuff under less/

We also apply some additional customizations in static/css/ietf.css; we
should eventually move that under bootstrap/less/ if possible. (ietf.css was
what Lars used initially for customization with an unmodified bootstrap.)

Some ground rules:

* Think hard before tweaking the bootstrap CSS, it will make it harder to
  upgrade to future releases.

* No <style> tags in the HTML! Put CSS into the "morecss" block of a
  template instead.

* CSS that is used by multiple templates goes into static/css/ietf.css.

* Javascript that is only used on one template goes into the "js" block of
  that template.

* Javascript that is used by multiple templates goes into static/js/ietf.js.

* Every template includes jquery, so write jquery code and not plain Javascript.
  It's shorter and often faster.

* No CSS, HTML styling or Javascript in the python code!

* Templates that use jquery or bootstrap plugins include the css file in the
  "pagehead" block, and the Javascript in the "js" block.