Tag 'spacewalk-java-1.1.17-1' created by Tomas Lestach <tlestach(a)redhat.com> at 2010-07-01 12:39 +0000
Tagging package [spacewalk-java] version [1.1.17-1] in directory [java/].
Changes since spacewalk-backend-1.1.25-1:
Jan Pazdziora (1):
We need to force port into integer.
Justin Sherrill (1):
adding new virtualization strings for RHEL 6
Partha Aji (3):
Fixed some checkstyle errors
Added an automatic db test cleanup script as a part of tests
Added a sat scrubber test that wipes out old test artifactsw
Shannon Hughes (81):
renaming to contentsource since we are moving channel out to a new mapping table named rhnChannelContentSource
initial table for mapping channel ids to content sources (yum repos)
hibernate changes for existing content source objects
initial hibernate changes to support many2many relationships of channel to repos
minor updates to Channel object to add repos
upgrade script for migrating channels from repo table to the new mapping table, rhnChannelContentSource
adding extra column to the rhnTaskQueue to allow tracking of many2many objects IDs
fixing breakage after adding many2many objects for yum repo sync
more compiliation fixes to support many2many
minor changes to tests
modified repo schema to handle org_id for content source objects. migrate script updated too.
adding nav menu for external repo management
new jsp for the repo list
fixing accidental branch creation, removing cobbler stubs
Revert "fixing accidental branch creation, removing cobbler stubs"
adding repo list jsp page
initial classes for Repolisting
fixing compile errors on RepoLister
setting up ContentSource queries
adding ContentSource DTO object for repo listtags
datasource queries for repolist listtag page
adding repolist page to struts
minor tweaks to struts url path and hibernate fix
fixing toolbar syntax for repo
adding dynaform for content source creation
struts entries for repo create and edit pages
adding nav entries for repo create and edit
repo validation xsd schema
support classes for adding a Repo object
repo struts action fnd jsp or creating repo objects.
pushing minor changes before master merge
adding repo domain creation logic to manager/action layer
fixed incorrect url syntax for repocreate
pushing changes to prepare for master merge
adding url field to repo details form/jsp
ise fixes for repo create
adding org id mapping to content source objects
fix incorrect reference to sync column of content source
migrate sync date from repo content source to the channel table
update channel to handle sync date; remove from content source
quick fix to remove sync query from content source obj
fix link for repo edit
more repo content obj clean up
refactoring repo commands to use base class
adding repo edit commands
commit before master merge
starting checking content objects off id and org for security; also fix query for taskomatic
fix hibernate content obj named queries for Edit Repo
RepoEdit page cleanup, jsp fixes
bug fixes for EditRepo, strut path fixes
initial files to support Repo delete
minor syntax issue with i18n repo delete strings
logic to delete content sources from db
modify verbage for repo list summary
channel nav support for repository mapping
strut support for channel repository mapping
intial strut action for channel repository mapping
change from rhnset to sessionset for repo maps
initial jsp support for channel to repo mapping
preselect set channel repo logic
db mapping logic for channel repos
remove debug messages, add extra i18n update string
adding new sync nav, moving add/remove to new tab
struts support for repo sync action
new page: list of repos to sync (session sets)
general repo cleanup, bugfixing
add channel count access for repo objects
lots of checkstyle fixes
making links between repo objects and taskomatic
remove old repo fields from channel edit page, clean up i18n strings
add last log repo sync to edit channel
remove call to repo task from the channel edit/update cmds
hook to call create repo sync task in taskomatic
checkstyle fix, extra java import
junit modification for repo sync
modified reposync script to handle 1:many channel content source objects
bug fixing for reposync
fix bug Validation i18n key
missing semicolon on sql declare block
modify last_synced column for repo sync
syntax error on rhnContentSource table sql
Tomas Lestach (2):
replacing ExceptionTranslator for SqlExceptionTranslator and its convert() method for sqlException()
Automatic commit of package [spacewalk-java] release [1.1.17-1].
---
Initial | 3
backend/satellite_tools/reposync.py | 30 -
backend/server/handlers/xmlrpc/registration.py | 5
backend/server/rhnSQL/__init__.py | 2
java/build.xml | 21 +
java/code/src/com/redhat/rhn/common/db/NamedPreparedStatement.java | 14
java/code/src/com/redhat/rhn/common/db/datasource/CachedStatement.java | 10
java/code/src/com/redhat/rhn/common/db/datasource/xml/Channel_queries.xml | 11
java/code/src/com/redhat/rhn/common/db/datasource/xml/test_queries.xml | 16
java/code/src/com/redhat/rhn/common/hibernate/HibernateHelper.java | 7
java/code/src/com/redhat/rhn/common/translation/ExceptionTranslator.java | 109 ------
java/code/src/com/redhat/rhn/common/translation/SqlExceptionTranslator.java | 87 +++++
java/code/src/com/redhat/rhn/common/translation/test/ExceptionsWrapperTest.java | 10
java/code/src/com/redhat/rhn/domain/channel/Channel.hbm.xml | 20 -
java/code/src/com/redhat/rhn/domain/channel/Channel.java | 112 +++---
java/code/src/com/redhat/rhn/domain/channel/ChannelFactory.java | 58 +++
java/code/src/com/redhat/rhn/domain/channel/ContentSource.hbm.xml | 49 ++-
java/code/src/com/redhat/rhn/domain/channel/ContentSource.java | 59 +--
java/code/src/com/redhat/rhn/domain/channel/test/ChannelTest.java | 9
java/code/src/com/redhat/rhn/domain/task/Task.java | 2
java/code/src/com/redhat/rhn/domain/user/UserFactory.java | 12
java/code/src/com/redhat/rhn/frontend/action/channel/manage/ConfirmErrataAction.java | 3
java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java | 60 +--
java/code/src/com/redhat/rhn/frontend/action/channel/manage/RepositoriesAction.java | 115 +++++++
java/code/src/com/redhat/rhn/frontend/action/channel/manage/SyncRepositoriesAction.java | 96 +++++
java/code/src/com/redhat/rhn/frontend/action/channel/manage/repo/RepoDeleteAction.java | 68 ++++
java/code/src/com/redhat/rhn/frontend/action/channel/manage/repo/RepoDetailsAction.java | 161 ++++++++++
java/code/src/com/redhat/rhn/frontend/action/channel/manage/repo/RepoListSetupAction.java | 60 +++
java/code/src/com/redhat/rhn/frontend/action/channel/manage/repo/validation/repoForm.xsd | 18 +
java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java | 60 +--
java/code/src/com/redhat/rhn/frontend/dto/ContentSourceDto.java | 73 ++++
java/code/src/com/redhat/rhn/frontend/strings/java/StringResource_en_US.xml | 16
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml | 96 +++++
java/code/src/com/redhat/rhn/frontend/strings/nav/StringResource_en_US.xml | 16
java/code/src/com/redhat/rhn/frontend/xmlrpc/serializer/ChannelSerializer.java | 20 -
java/code/src/com/redhat/rhn/frontend/xmlrpc/system/SystemHandler.java | 8
java/code/src/com/redhat/rhn/frontend/xmlrpc/test/SatScrubberTest.java | 74 ++--
java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java | 48 +-
java/code/src/com/redhat/rhn/manager/channel/CreateChannelCommand.java | 5
java/code/src/com/redhat/rhn/manager/channel/RepoLister.java | 78 ++++
java/code/src/com/redhat/rhn/manager/channel/UpdateChannelCommand.java | 8
java/code/src/com/redhat/rhn/manager/channel/repo/BaseRepoCommand.java | 129 ++++++++
java/code/src/com/redhat/rhn/manager/channel/repo/CreateRepoCommand.java | 36 ++
java/code/src/com/redhat/rhn/manager/channel/repo/EditRepoCommand.java | 36 ++
java/code/src/com/redhat/rhn/manager/download/DownloadManager.java | 18 -
java/code/src/com/redhat/rhn/manager/user/UserManager.java | 16
java/code/src/com/redhat/rhn/taskomatic/task/RepoSyncTask.java | 47 +-
java/code/webapp/WEB-INF/nav/manage_channel.xml | 9
java/code/webapp/WEB-INF/nav/sitenav-authenticated.xml | 6
java/code/webapp/WEB-INF/pages/channel/manage/channelrepos.jsp | 55 +++
java/code/webapp/WEB-INF/pages/channel/manage/edit.jsp | 49 ---
java/code/webapp/WEB-INF/pages/channel/manage/repo/deleteconfirm.jsp | 52 +++
java/code/webapp/WEB-INF/pages/channel/manage/repo/repodetails.jsp | 81 +++++
java/code/webapp/WEB-INF/pages/channel/manage/repo/repos.jsp | 53 +++
java/code/webapp/WEB-INF/pages/channel/manage/syncrepos.jsp | 53 +++
java/code/webapp/WEB-INF/pages/kickstart/cobbler/snippets.jsp | 20 -
java/code/webapp/WEB-INF/struts-config.xml | 74 ++++
java/spacewalk-java.spec | 93 +++++
rel-eng/packages/spacewalk-java | 2
schema/spacewalk/common/tables/rhnChannel.sql | 1
schema/spacewalk/common/tables/rhnChannelContentSource.sql | 50 +--
schema/spacewalk/common/tables/rhnContentSource.sql | 52 +++
schema/spacewalk/common/tables/rhnTaskQueue.sql | 8
schema/spacewalk/upgrade/spacewalk-schema-1.0-to-spacewalk-schema-1.1/001-repo-sync.sql | 67 ++++
web/html/nav/manage_channel.xml | 3
65 files changed, 2181 insertions(+), 558 deletions(-)
---