summaryrefslogtreecommitdiffstats
path: root/cobbler/field_info.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge IPv6 support patch from Trac #469. Thanks to Jon Sabo.masterJohn Eckersberg2009-11-051-11/+20
|
* Fix checkbox field for virt_auto_bootMichael DeHaan2009-10-011-2/+2
|
* Fix checkbox display of fields (missing comma)Michael DeHaan2009-09-111-1/+1
|
* Some very nice category based expand/collapse DIVs for the webappMichael DeHaan2009-07-301-43/+59
|
* Added a ton of comments about how the field datastructure works and how you ↵Michael DeHaan2009-07-141-2/+17
| | | | add new fields to the CLI/webapp/core just by editing item_(what).py and field_info.py
* Prune out network objects as they will not make the 2.0 release (it is ↵Michael DeHaan2009-07-141-2/+0
| | | | concentrating instead on the new Cobbler Web and making all tasks remotable via XMLRPC, plus lots of code cleanup and easing barriers to entry on contributions, plus small features... network objects could be a later release)
* Various field type corrections, moving more things to select boxes, some CSS ↵Michael DeHaan2009-06-011-1/+6
| | | | class changes
* Fix color coding on the network objects edit pageMichael DeHaan2009-06-011-0/+4
|
* Add alternate option support, to remap things like kernel_options to --koptsJames Cammarata2009-05-311-1/+5
| | | | Fix indentation in add_options_from_fields()
* Some fixes to make subprofile display/editing in the webapp work betterMichael DeHaan2009-05-291-1/+2
|
* More sensical order for network fields since they may expand/collapse. ↵Michael DeHaan2009-05-211-0/+1
| | | | Fixed other field color coding, etc.
* Restore CSS color coding for grouped fields. Move unused css/graphics out ↵Michael DeHaan2009-05-211-10/+35
| | | | of the way. Other web app hacking.
* Interface field loading now works again. Also move some obsoleted templates ↵Michael DeHaan2009-05-211-4/+4
| | | | out of the way.
* Reteaching templates about network interface editing. Added the concept of ↵Michael DeHaan2009-05-211-5/+5
| | | | | | a widget which is a placeholder in fields that inserts a div that javascript can later replace dynamically.
* Populate drop downs for various system features, make images show up as the ↵Michael DeHaan2009-05-201-0/+2
| | | | | | right field type, add remote functions for retrieving network info
* Generalize some common field profiles into field_info.py, which includes CSS ↵Michael DeHaan2009-05-191-0/+69
types for fields of the same name as well as what type of HTML element to use; this prevents the field data in the item*.py files from getting to be too long. We should be able to add interface support without too much complexity, but this is TBD, also some fields are still missing from field_info.py, as well as implementation of rendering non-text-area types.