From nick@afternight.org Thu Dec 1 09:13:54 2011 From: Nick Lanham To: aur-dev@lists.archlinux.org Subject: [aur-dev] Select All in Package Listing Date: Thu, 01 Dec 2011 15:14:00 +0100 Message-ID: <4ED78BA8.10303@afternight.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2166607479453693902==" --===============2166607479453693902== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit There was some talk on the aur-general list about how it would be nice to have a select all option on the package listing page. This patch adds that. Note that I just dropped the javascript into a =20 > + > > > - > + > > =20 >
  > + + title=3D'' > + onClick=3D'clickAll(this,document.getElementById("result_table"))= '=20 > + name=3D'SelAllCheck' value=3D'1' /> > + --===============4979610506857376392==-- From nick@afternight.org Fri Dec 2 05:12:15 2011 From: Nick Lanham To: aur-dev@lists.archlinux.org Subject: Re: [aur-dev] Select All in Package Listing Date: Fri, 02 Dec 2011 11:12:24 +0100 Message-ID: <4ED8A488.2040909@afternight.org> In-Reply-To: <20111202093534.GB18088@blizzard> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7640054828479285706==" --===============7640054828479285706== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Yeah, sorry about the patch format, I should have read the guidelines=20 more carefully. I will get it right when I re-submit. I realized that there was probably a conscious avoidance of javascript=20 (which I'm generally for too), but for modifying dom elements like this,=20 it really does make sense. There would be a more convoluted way to do=20 it, sort of like how search is done, with a new request and a parameter=20 to indicate that all checkboxes should be checked or un-checked, so if=20 there's really a desire to keep js out of the code, let me know, and=20 I'll try to get that working for the re-submit. Regards, Nick On 12/02/2011 10:35 AM, Lukas Fleischer wrote: > On Thu, Dec 01, 2011 at 03:14:00PM +0100, Nick Lanham wrote: >> There was some talk on the aur-general list about how it would be >> nice to have a select all option on the package listing page. This >> patch adds that. > Please send full Git-formatted patches (generated by > git-format-patch(1)) and please send them inline instead of attaching > stuff. > >> Note that I just dropped the javascript into a >> + >> >> >> - >> + >> >> >>
  >> + > + title=3D'' >> + onClick=3D'clickAll(this,document.getElementById("result_table")= )' >> + name=3D'SelAllCheck' value=3D'1' /> >> + --===============7640054828479285706==-- From andrea@archlinux.org Fri Dec 9 04:49:40 2011 From: Andrea Scarpino To: aur-dev@lists.archlinux.org Subject: [aur-dev] [PATCH] Set the title in the Trusted User page Date: Fri, 09 Dec 2011 10:49:34 +0100 Message-ID: <1323424174-5250-1-git-send-email-andrea@archlinux.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2091249825990213357==" --===============2091249825990213357== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable --- web/html/tu.php | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/web/html/tu.php b/web/html/tu.php index 6e202c8..6e04353 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../l= ib'); include_once("aur.inc.php"); set_lang(); check_sid(); -html_header(); + +$title =3D __("Trusted User"); + +html_header($title); =20 # Default votes per page $pp =3D 10; --=20 1.7.8 --===============2091249825990213357==-- From archlinux@cryptocrack.de Sat Dec 17 08:55:26 2011 From: Lukas Fleischer To: aur-dev@lists.archlinux.org Subject: Re: [aur-dev] [PATCH] Set the title in the Trusted User page Date: Sat, 17 Dec 2011 14:55:22 +0100 Message-ID: <20111217135522.GA3573@blizzard> In-Reply-To: <1323424174-5250-1-git-send-email-andrea@archlinux.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1311416224339577081==" --===============1311416224339577081== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Fri, Dec 09, 2011 at 10:49:34AM +0100, Andrea Scarpino wrote: > --- > web/html/tu.php | 5 ++++- > 1 files changed, 4 insertions(+), 1 deletions(-) >=20 Pushed, thanks! > diff --git a/web/html/tu.php b/web/html/tu.php > index 6e202c8..6e04353 100644 > --- a/web/html/tu.php > +++ b/web/html/tu.php > @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '..= /lib'); > include_once("aur.inc.php"); > set_lang(); > check_sid(); > -html_header(); > + > +$title =3D __("Trusted User"); > + > +html_header($title); > =20 > # Default votes per page > $pp =3D 10; > --=20 > 1.7.8 --===============1311416224339577081==-- From archlinux@cryptocrack.de Sat Dec 17 09:01:10 2011 From: Lukas Fleischer To: aur-dev@lists.archlinux.org Subject: Re: [aur-dev] [PATCH 0/5] Package details view layout changes Date: Sat, 17 Dec 2011 15:00:59 +0100 Message-ID: <20111217140059.GB3573@blizzard> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0162590746109867240==" --===============0162590746109867240== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Fri, Nov 04, 2011 at 10:28:33AM -0500, Dan McGee wrote: > On Fri, Nov 4, 2011 at 8:42 AM, Lukas Fleischer > wrote: > > This patch set basically syncs the package details layout with what > > archweb uses and makes the rendered page, as well as the source code, > > look cleaner and more consistent. > > > > I plan to put more efforts in cleaning up our HTML and making the AUR > > integrate well with the rest of www.archlinux.org. We might eventually > > just use "archweb.css" with a few AUR-specific extensions. > I'd be happy to ensure compatibility on this and keeping differences > to a minimum or zero. >=20 > > Any objections from the "Arch Linux/AUR segregation" front..? > > > > Dan, any objections? > Nope. I didn't look in detail at all of the patches but generally > seems fine to me, as long as AUR is prominent somewhere near the top > of the page and in the page title. I rebased all of these patches and refactored several parts of the AUR website, based on the archweb layout. You can find these changes in my "archweb-integration" branch [1]. Note that I might rebase this branch from time to time, so be prepared when setting up a tracking branch. The most important parts are already fixed but there's still a lot of things to do. Comments and suggestions welcome! >=20 > > Lukas Fleischer (5): > > =C2=A0pkg_details.php: Use a table for package details > > =C2=A0pkg_details.php: Add link to category search > > =C2=A0pkg_details.php: Sync metadata layout with archweb > > =C2=A0pkg_details.php: Sync package actions layout with archweb > > =C2=A0pkg_details.php: Use sane format for date strings > I realized I signed off on these date strings, but also noticed the > dates on the front page stats and such are in the ugly format- might > want to touch those up too. >=20 > > > > =C2=A0web/html/css/arch.css =C2=A0 =C2=A0 =C2=A0 =C2=A0| =C2=A0 =C2=A03 - > > =C2=A0web/html/css/containers.css =C2=A0| =C2=A0 81 +++++++++++++++ > > =C2=A0web/template/pkg_details.php | =C2=A0226 +++++++++++++++++++++-----= ---------------- > > =C2=A03 files changed, 196 insertions(+), 114 deletions(-) > > > > -- > > 1.7.7.2 > > > > [1] http://git.cryptocrack.de/aur.git/?h=3Darchweb-integration --===============0162590746109867240==--