Compare commits
3 Commits
0.2-11.el8
...
0_2-13
Author | SHA1 | Date | |
---|---|---|---|
df3bc51b98 | |||
26f3c7605d | |||
6f06e0fe64 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
*.rpm
|
*.rpm
|
||||||
*.log
|
*.log
|
||||||
*spec-20*
|
*spec-20*
|
||||||
*.tar.gz
|
*.tar.xz
|
||||||
|
@@ -6,7 +6,14 @@ SMEServer Koozali developed git repo for smeserver-loginscript smecontribs
|
|||||||
<br />https://wiki.koozali.org/Loginscript
|
<br />https://wiki.koozali.org/Loginscript
|
||||||
|
|
||||||
## Bugzilla
|
## Bugzilla
|
||||||
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-loginscript&product=SME%20Contribs&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
|
Show list of outstanding bugs:
|
||||||
|
[All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[Confirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=CONFIRMED&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[Unconfirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[Need Info](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=NEEDINFO&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[In Progress](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=IN_PROGRESS&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[Verified](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=VERIFIED&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
[Resolved](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=RESOLVED&classification=Contribs&component=smeserver-loginscript&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
|
@@ -118,7 +118,7 @@ sub showInitial ($$$)
|
|||||||
$conf{'WinNTLogonDrive'} = 'h';
|
$conf{'WinNTLogonDrive'} = 'h';
|
||||||
}
|
}
|
||||||
|
|
||||||
print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
|
print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||||
|
|
||||||
print $q->p ('Below you can modify the login script template.');
|
print $q->p ('Below you can modify the login script template.');
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ sub showInitial ($$$)
|
|||||||
($q, $q->b ($q->submit (-name => 'action', -value => 'Save')))));
|
($q, $q->b ($q->submit (-name => 'action', -value => 'Save')))));
|
||||||
|
|
||||||
print $q->hidden (-name => 'state', -override => 1, -default => 'perform');
|
print $q->hidden (-name => 'state', -override => 1, -default => 'perform');
|
||||||
print $q->endform;
|
print $q->end_form;
|
||||||
esmith::cgi::genFooter ($q);
|
esmith::cgi::genFooter ($q);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@ Summary: smeserver module to provide dynamic windows login scripts
|
|||||||
%define name smeserver-loginscript
|
%define name smeserver-loginscript
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
%define version 0.2
|
%define version 0.2
|
||||||
%define release 11
|
%define release 13
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: %{release}
|
Release: %{release}
|
||||||
License: Freely distributable
|
License: Freely distributable
|
||||||
@@ -17,6 +17,10 @@ Requires: smeserver-lib >= 1.15.1-16
|
|||||||
AutoReqProv: no
|
AutoReqProv: no
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 09 2025 Brian Read <brianr@koozali.org> 0.2-13.sme
|
||||||
|
- Apply change from startform to start_form and endform to end_form to CGI panels [SME: 1278]
|
||||||
|
- Change .gitignore to .xz and delete tarball from repo [SME: 12781]
|
||||||
|
|
||||||
* Sun Sep 08 2024 fix-e-smith-pkg.sh by Trevor Batley <trevor@batley.id.au> 0.2-11.sme
|
* Sun Sep 08 2024 fix-e-smith-pkg.sh by Trevor Batley <trevor@batley.id.au> 0.2-11.sme
|
||||||
- Fix e-smith references in smeserver-loginscript [SME: 12732]
|
- Fix e-smith references in smeserver-loginscript [SME: 12732]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user